Commit 1397b2a1 authored by lanbaoming's avatar lanbaoming

2024-04-08

parents
Pipeline #6 failed with stages

Too many changes to show.

To preserve performance only 1000 of 1000+ files are displayed.

*.sql linguist-language=java
######################################################################
# Build Tools
.gradle
/build/
!gradle/wrapper/gradle-wrapper.jar
target/
!.mvn/wrapper/maven-wrapper.jar
######################################################################
# IDE
### STS ###
.apt_generated
.classpath
.factorypath
.project
.settings
.springBeans
### IntelliJ IDEA ###
.idea
*.iws
*.iml
*.ipr
### NetBeans ###
nbproject/private/
build/*
nbbuild/
dist/
nbdist/
.nb-gradle/
######################################################################
# Others
*.log
*.log-*
*.xml.versionsBackup
*.swp
!*/build/*.java
!*/build/*.html
!*/build/*.xml
### JRebel ###
rebel.xml
#!groovy
pipeline {
agent any
parameters {
string(name: 'TAG_NAME', defaultValue: '', description: '')
}
environment {
// DockerHub 凭证 ID(登录您的 DockerHub)
DOCKER_CREDENTIAL_ID = 'dockerhub-id'
// GitHub 凭证 ID (推送 tag 到 GitHub 仓库)
GITHUB_CREDENTIAL_ID = 'github-id'
// kubeconfig 凭证 ID (访问接入正在运行的 Kubernetes 集群)
KUBECONFIG_CREDENTIAL_ID = 'demo-kubeconfig'
// 镜像的推送
REGISTRY = 'docker.io'
// DockerHub 账号名
DOCKERHUB_NAMESPACE = 'docker_username'
// GitHub 账号名
GITHUB_ACCOUNT = 'https://gitee.com/zhijiantianya/ruoyi-vue-pro'
// 应用名称
APP_NAME = 'yudao-admin-server'
// 应用部署路径
APP_DEPLOY_BASE_DIR = '/media/pi/KINGTON/data/work/projects/'
}
stages {
stage('检出') {
steps {
git url: "https://gitee.com/will-we/ruoyi-vue-pro.git",
branch: "devops"
}
}
stage('构建') {
steps {
// TODO 解决多环境链接、密码不同配置临时方案
sh 'if [ ! -d "' + "${env.HOME}" + '/resources" ];then\n' +
' echo "配置文件不存在无需修改"\n' +
'else\n' +
' cp -rf ' + "${env.HOME}" + '/resources/*.yaml ' + "${env.APP_NAME}" + '/src/main/resources\n' +
' echo "配置文件替换"\n' +
'fi'
sh 'mvn clean package -Dmaven.test.skip=true'
}
}
stage('部署') {
steps {
sh 'cp -f ' + ' bin/deploy.sh ' + "${env.APP_DEPLOY_BASE_DIR}" + "${env.APP_NAME}"
sh 'cp -f ' + "${env.APP_NAME}" + '/target/*.jar ' + "${env.APP_DEPLOY_BASE_DIR}" + "${env.APP_NAME}" +'/build/'
archiveArtifacts "${env.APP_NAME}" + '/target/*.jar'
sh 'chmod +x ' + "${env.APP_DEPLOY_BASE_DIR}" + "${env.APP_NAME}" + '/deploy.sh'
sh 'bash ' + "${env.APP_DEPLOY_BASE_DIR}" + "${env.APP_NAME}" + '/deploy.sh'
}
}
}
}
\ No newline at end of file
The MIT License (MIT)
Copyright (c) 2021 ruoyi-vue-pro
Permission is hereby granted, free of charge, to any person obtaining a copy of
this software and associated documentation files (the "Software"), to deal in
the Software without restriction, including without limitation the rights to
use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of
the Software, and to permit persons to whom the Software is furnished to do so,
subject to the following conditions:
The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS
FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR
COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
捷道国际货运管理平台
根目录下直接执行 mvn clean install package '-Dmaven.test.skip=true' 命令,将项目进行初始化的打包,预计需要 1 分钟左右。
首次启动运行YudaoServerApplication
#!/bin/bash
set -e
# 基础
# export JAVA_HOME=/work/programs/jdk/jdk1.8.0_181
# export PATH=PATH=$PATH:$JAVA_HOME/bin
# export CLASSPATH=$JAVA_HOME/jre/lib/rt.jar:$JAVA_HOME/lib/dt.jar:$JAVA_HOME/lib/tools.jar
DATE=$(date +%Y%m%d%H%M)
# 基础路径
BASE_PATH=/media/pi/KINGTON/data/work/projects/yudao-admin-server
# 编译后 jar 的地址。部署时,Jenkins 会上传 jar 包到该目录下
SOURCE_PATH=$BASE_PATH/build
# 服务名称。同时约定部署服务的 jar 包名字也为它。
SERVER_NAME=yudao-admin-server
# 环境
PROFILES_ACTIVE=dev
# 健康检查 URL
HEALTH_CHECK_URL=http://127.0.0.1:48080/actuator/health/
# heapError 存放路径
HEAP_ERROR_PATH=$BASE_PATH/heapError
# JVM 参数
JAVA_OPS="-Xms512m -Xmx512m -XX:+HeapDumpOnOutOfMemoryError -XX:HeapDumpPath=$HEAP_ERROR_PATH"
# SkyWalking Agent 配置
#export SW_AGENT_NAME=$SERVER_NAME
#export SW_AGENT_COLLECTOR_BACKEND_SERVICES=192.168.0.84:11800
#export SW_GRPC_LOG_SERVER_HOST=192.168.0.84
#export SW_AGENT_TRACE_IGNORE_PATH="Redisson/PING,/actuator/**,/admin/**"
#export JAVA_AGENT=-javaagent:/work/skywalking/apache-skywalking-apm-bin/agent/skywalking-agent.jar
# 备份
function backup() {
# 如果不存在,则无需备份
if [ ! -f "$BASE_PATH/$SERVER_NAME.jar" ]; then
echo "[backup] $BASE_PATH/$SERVER_NAME.jar 不存在,跳过备份"
# 如果存在,则备份到 backup 目录下,使用时间作为后缀
else
echo "[backup] 开始备份 $SERVER_NAME ..."
cp $BASE_PATH/$SERVER_NAME.jar $BASE_PATH/backup/$SERVER_NAME-$DATE.jar
echo "[backup] 备份 $SERVER_NAME 完成"
fi
}
# 最新构建代码 移动到项目环境
function transfer() {
echo "[transfer] 开始转移 $SERVER_NAME.jar"
# 删除原 jar 包
if [ ! -f "$BASE_PATH/$SERVER_NAME.jar" ]; then
echo "[transfer] $BASE_PATH/$SERVER_NAME.jar 不存在,跳过删除"
else
echo "[transfer] 移除 $BASE_PATH/$SERVER_NAME.jar 完成"
rm $BASE_PATH/$SERVER_NAME.jar
fi
# 复制新 jar 包
echo "[transfer] 从 $SOURCE_PATH 中获取 $SERVER_NAME.jar 并迁移至 $BASE_PATH ...."
cp $SOURCE_PATH/$SERVER_NAME.jar $BASE_PATH
echo "[transfer] 转移 $SERVER_NAME.jar 完成"
}
# 停止
function stop() {
echo "[stop] 开始停止 $BASE_PATH/$SERVER_NAME"
PID=$(ps -ef | grep $BASE_PATH/$SERVER_NAME | grep -v "grep" | awk '{print $2}')
# 如果 Java 服务启动中,则进行关闭
if [ -n "$PID" ]; then
# 正常关闭
echo "[stop] $BASE_PATH/$SERVER_NAME 运行中,开始 kill [$PID]"
kill -15 $PID
# 等待最大 60 秒,直到关闭完成。
for ((i = 0; i < 60; i++))
do
sleep 1
PID=$(ps -ef | grep $BASE_PATH/$SERVER_NAME | grep -v "grep" | awk '{print $2}')
if [ -n "$PID" ]; then
echo -e ".\c"
else
echo '[stop] 停止 $BASE_PATH/$SERVER_NAME 成功'
break
fi
done
# 如果正常关闭失败,那么进行强制 kill -9 进行关闭
if [ -n "$PID" ]; then
echo "[stop] $BASE_PATH/$SERVER_NAME 失败,强制 kill -9 $PID"
kill -9 $PID
fi
# 如果 Java 服务未启动,则无需关闭
else
echo "[stop] $BASE_PATH/$SERVER_NAME 未启动,无需停止"
fi
}
# 启动
function start() {
# 开启启动前,打印启动参数
echo "[start] 开始启动 $BASE_PATH/$SERVER_NAME"
echo "[start] JAVA_OPS: $JAVA_OPS"
echo "[start] JAVA_AGENT: $JAVA_AGENT"
echo "[start] PROFILES: $PROFILES_ACTIVE"
# 开始启动
BUILD_ID=dontKillMe nohup java -server $JAVA_OPS $JAVA_AGENT -jar $BASE_PATH/$SERVER_NAME.jar --spring.profiles.active=$PROFILES_ACTIVE &
echo "[start] 启动 $BASE_PATH/$SERVER_NAME 完成"
}
# 健康检查
function healthCheck() {
# 如果配置健康检查,则进行健康检查
if [ -n "$HEALTH_CHECK_URL" ]; then
# 健康检查最大 60 秒,直到健康检查通过
echo "[healthCheck] 开始通过 $HEALTH_CHECK_URL 地址,进行健康检查";
for ((i = 0; i < 60; i++))
do
# 请求健康检查地址,只获取状态码。
result=`curl -I -m 10 -o /dev/null -s -w %{http_code} $HEALTH_CHECK_URL || echo "000"`
# 如果状态码为 200,则说明健康检查通过
if [ "$result" == "200" ]; then
echo "[healthCheck] 健康检查通过";
break
# 如果状态码非 200,则说明未通过。sleep 1 秒后,继续重试
else
echo -e ".\c"
sleep 1
fi
done
# 健康检查未通过,则异常退出 shell 脚本,不继续部署。
if [ ! "$result" == "200" ]; then
echo "[healthCheck] 健康检查不通过,可能部署失败。查看日志,自行判断是否启动成功";
tail -n 10 nohup.out
exit 1;
# 健康检查通过,打印最后 10 行日志,可能部署的人想看下日志。
else
tail -n 10 nohup.out
fi
# 如果未配置健康检查,则 slepp 60 秒,人工看日志是否部署成功。
else
echo "[healthCheck] HEALTH_CHECK_URL 未配置,开始 sleep 60 秒";
sleep 60
echo "[healthCheck] sleep 60 秒完成,查看日志,自行判断是否启动成功";
tail -n 50 nohup.out
fi
}
# 部署
function deploy() {
cd $BASE_PATH
# 备份原 jar
backup
# 停止 Java 服务
stop
# 部署新 jar
transfer
# 启动 Java 服务
start
# 健康检查
# healthCheck
}
deploy
version: '3'
services:
api-jiedao-operator-0:
image: harbor.jiedao.com/api-jiedao-operator-0:latest
container_name: api-jiedao-operator-0
ports:
- "9001:9001"
environment:
env: pro
volumes:
- '/etc/localtime:/etc/localtime'
- '/data/docker/apps/jiedao/api/logs/operator:/logs'
- '/data/docker/apps/jiedao/static:/app/static'
- '/data/docker/apps/jiedao/fonts/zh:/usr/share/fonts/zh'
restart: always
ulimits:
nproc: 65535
nofile:
soft: 32000
hard: 40000
deploy:
resources:
limits:
cpus: '4'
memory: 4G
networks:
app-net:
ipv4_address: 10.10.0.50
networks:
app-net:
external: true
version: '3'
services:
api-jiedao-operator-1:
image: harbor.jiedao.com/api-jiedao-operator-1:latest
container_name: api-jiedao-operator-1
ports:
- "9002:9001"
environment:
env: pro
volumes:
- '/etc/localtime:/etc/localtime'
- '/data/docker/apps/jiedao/api/logs/operator:/logs'
- '/data/docker/apps/jiedao/static:/app/static'
- '/data/docker/apps/jiedao/fonts/zh:/usr/share/fonts/zh'
restart: always
ulimits:
nproc: 65535
nofile:
soft: 32000
hard: 40000
deploy:
resources:
limits:
cpus: '4'
memory: 4G
networks:
app-net:
ipv4_address: 10.10.0.51
networks:
app-net:
external: true
version: '3'
services:
sit-api-jiedao:
image: harbor.jiedao.com/sit-api-jiedao:latest
container_name: sit-api-jiedao
ports:
- "8001:9001"
environment:
env: sit
volumes:
- '/etc/localtime:/etc/localtime'
- '/data/docker/apps/jiedao/sit/api/logs/operator:/logs'
- '/data/docker/apps/jiedao/sit/static:/app/static'
- '/data/docker/apps/jiedao/sit/fonts/zh:/usr/share/fonts/zh'
restart: always
ulimits:
nproc: 65535
nofile:
soft: 32000
hard: 40000
deploy:
resources:
limits:
cpus: '4'
memory: 4G
networks:
app-net:
ipv4_address: 10.10.0.60
networks:
app-net:
external: true
version: '3'
services:
api-jiedao-operator:
image: harbor.jiedao.com/api-jiedao-operator:latest
container_name: api-jiedao-operator
ports:
- "9001:9001"
environment:
env: test
volumes:
- '/etc/localtime:/etc/localtime'
- '/data/docker/apps/jiedao/api/logs/operator:/logs'
- '/data/docker/apps/jiedao/static:/app/static'
- '/data/docker/apps/jiedao/fonts/zh:/usr/share/fonts/zh'
restart: always
ulimits:
nproc: 65535
nofile:
soft: 32000
hard: 40000
deploy:
resources:
limits:
cpus: '4'
memory: 4G
networks:
app-net:
ipv4_address: 10.10.0.20
networks:
app-net:
external: true
version: '3'
services:
api-jiedao-test-operator:
image: harbor.jiedao.com/api-jiedao-test-operator:latest
container_name: api-jiedao-test-operator
ports:
- "9091:9001"
environment:
env: uat
volumes:
- '/etc/localtime:/etc/localtime'
- '/data/docker/test/apps/jiedao/api/logs/operator:/logs'
- '/data/docker/test/apps/jiedao/static:/app/static'
- '/data/docker/test/apps/jiedao/fonts/zh:/usr/share/fonts/zh'
restart: always
ulimits:
nproc: 65535
nofile:
soft: 32000
hard: 40000
deploy:
resources:
limits:
cpus: '3'
memory: 3G
networks:
app-net:
ipv4_address: 10.10.0.120
networks:
app-net:
external: true
version: '3'
services:
api-jeepay-operator-0:
image: harbor.jiedao.com/api-jiedao-operator:latest
container_name: api-jiedao-operator-0
ports:
- "9001:9001"
environment:
env: pro
volumes:
- '/etc/localtime:/etc/localtime'
- '/data/docker/apps/jiedao/api/logs/operator:/logs'
- '/data/docker/apps/jiedao/static:/app/static'
- '/data/docker/apps/jiedao/fonts/zh:/usr/share/fonts/zh'
restart: always
ulimits:
nproc: 65535
nofile:
soft: 32000
hard: 40000
deploy:
resources:
limits:
cpus: '4'
memory: 4G
networks:
app-net:
ipv4_address: 10.10.0.50
api-jeepay-operator-1:
image: harbor.jiedao.com/api-jiedao-operator:latest
container_name: api-jiedao-operator-1
ports:
- "9002:9001"
environment:
env: pro
volumes:
- '/etc/localtime:/etc/localtime'
- '/data/docker/apps/jiedao/api/logs/operator:/logs'
- '/data/docker/apps/jiedao/static:/app/static'
- '/data/docker/apps/jiedao/fonts/zh:/usr/share/fonts/zh'
restart: always
ulimits:
nproc: 65535
nofile:
soft: 32000
hard: 40000
deploy:
resources:
limits:
cpus: '4'
memory: 4G
networks:
app-net:
ipv4_address: 10.10.0.51
networks:
app-net:
external: true
{
"local": {
"baseUrl": "http://127.0.0.1:48080/admin-api",
"token": "test1",
"adminTenentId": "1",
"appApi": "http://127.0.0.1:48080/app-api",
"appToken": "test1",
"appTenentId": "1"
}
}
config.stopBubbling = true
lombok.tostring.callsuper=CALL
lombok.equalsandhashcode.callsuper=CALL
lombok.accessors.chain=true
<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>cn.iocoder.boot</groupId>
<artifactId>yudao</artifactId>
<version>${revision}</version>
<packaging>pom</packaging>
<modules>
<module>yudao-dependencies</module>
<module>yudao-framework</module>
<!-- Server 主项目 -->
<module>yudao-server</module>
<!-- 各种 module 拓展 -->
<module>yudao-module-member</module>
<module>yudao-module-bpm</module>
<module>yudao-module-system</module>
<module>yudao-module-infra</module>
<module>yudao-module-pay</module>
<module>yudao-module-ecw</module>
<!-- 客户相关 -->
<module>yudao-module-customer</module>
<!-- 商品产品品牌 -->
<module>yudao-module-product</module>
<!-- 物流出货 -->
<module>yudao-module-delivery</module>
<!-- 仓储仓库 -->
<module>yudao-module-depository</module>
<!-- 订单相关 -->
<module>yudao-module-order</module>
<!-- 销售业绩 -->
<module>yudao-module-sale</module>
<!-- 供应商相关 -->
<module>yudao-module-supplier</module>
<!-- 财务相关 -->
<module>yudao-module-wealth</module>
<!-- 发货管理 -->
<module>yudao-module-shipment</module>
</modules>
<name>${project.artifactId}</name>
<description>捷道项目基础架构</description>
<properties>
<revision>1.6.1-snapshot</revision>
<!-- Maven 相关 -->
<java.version>1.8</java.version>
<maven.compiler.source>${java.version}</maven.compiler.source>
<maven.compiler.target>${java.version}</maven.compiler.target>
<maven-surefire-plugin.version>3.0.0-M5</maven-surefire-plugin.version>
<maven-compiler-plugin.version>3.8.0</maven-compiler-plugin.version>
<!-- 看看咋放到 bom 里 -->
<lombok.version>1.18.20</lombok.version>
<mapstruct.version>1.4.1.Final</mapstruct.version>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
</properties>
<dependencyManagement>
<dependencies>
<dependency>
<groupId>cn.iocoder.boot</groupId>
<artifactId>yudao-dependencies</artifactId>
<version>${revision}</version>
<type>pom</type>
<scope>import</scope>
</dependency>
</dependencies>
</dependencyManagement>
<build>
<pluginManagement>
<plugins>
<!-- maven-surefire-plugin 插件,用于运行单元测试。 -->
<!-- 注意,需要使用 3.0.X+,因为要支持 Junit 5 版本 -->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<version>${maven-surefire-plugin.version}</version>
</plugin>
<!-- maven-compiler-plugin 插件,解决 Lombok + MapStruct 组合 -->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>${maven-compiler-plugin.version}</version>
<configuration>
<annotationProcessorPaths>
<path>
<groupId>org.projectlombok</groupId>
<artifactId>lombok</artifactId>
<version>${lombok.version}</version>
</path>
<path>
<groupId>org.mapstruct</groupId>
<artifactId>mapstruct-processor</artifactId>
<version>${mapstruct.version}</version>
</path>
</annotationProcessorPaths>
</configuration>
</plugin>
</plugins>
</pluginManagement>
</build>
<!-- 使用 aliyun 的 Maven 源,提升下载速度 -->
<repositories>
<repository>
<id>aliyunmaven</id>
<name>aliyun</name>
<url>https://maven.aliyun.com/repository/public</url>
</repository>
<!--<repository>
<id>com.e-iceblue</id>
<name>e-iceblue</name>
<url>https://repo.e-iceblue.cn/repository/maven-public/</url>
</repository>-->
</repositories>
</project>
update ecw_customer set is_new=0 where number='Z0144';
update ecw_customer set is_new=0 where number='Z0235';
update ecw_customer set is_new=0 where number='Z0592';
update ecw_customer set is_new=0 where number='Z0736';
update ecw_customer set is_new=0 where number='K0086';
update ecw_customer set is_new=0 where number='N10079';
update ecw_customer set is_new=0 where number='N10288';
update ecw_customer set is_new=0 where number='N10382';
update ecw_customer set is_new=0 where number='N10567';
update ecw_customer set is_new=0 where number='N10583';
update ecw_customer set is_new=0 where number='N10600';
update ecw_customer set is_new=0 where number='N10629';
update ecw_customer set is_new=0 where number='N10682';
update ecw_customer set is_new=0 where number='N11085';
update ecw_customer set is_new=0 where number='Z12000';
update ecw_customer set is_new=0 where number='Z12049';
update ecw_customer set is_new=0 where number='Z12079';
update ecw_customer set is_new=0 where number='Z12082';
update ecw_customer set is_new=0 where number='N11914';
update ecw_customer set is_new=0 where number='Z12092';
update ecw_customer set is_new=0 where number='N11938';
update ecw_customer set is_new=0 where number='N11940';
update ecw_customer set is_new=0 where number='Z12110';
update ecw_customer set is_new=0 where number='Z12112';
update ecw_customer set is_new=0 where number='Z12123';
update ecw_customer set is_new=0 where number='N11960';
update ecw_customer set is_new=0 where number='Z12175';
update ecw_customer set is_new=0 where number='Z12191';
update ecw_customer set is_new=0 where number='Z12197';
update ecw_customer set is_new=0 where number='Z12201';
update ecw_customer set is_new=0 where number='Z12205';
update ecw_customer set is_new=0 where number='Z12211';
update ecw_customer set is_new=0 where number='Z12214';
update ecw_customer set is_new=0 where number='Z12221';
update ecw_customer set is_new=0 where number='Z12229';
update ecw_customer set is_new=0 where number='Z12231';
update ecw_customer set is_new=0 where number='Z12237';
update ecw_customer set is_new=0 where number='Z12248';
update ecw_customer set is_new=0 where number='Z12251';
update ecw_customer set is_new=0 where number='Z12256';
update ecw_customer set is_new=0 where number='Z12259';
update ecw_customer set is_new=0 where number='Z12262';
update ecw_customer set is_new=0 where number='Z12267';
update ecw_customer set is_new=0 where number='Z12270';
update ecw_customer set is_new=0 where number='N12130';
update ecw_customer set is_new=0 where number='Z12287';
update ecw_customer set is_new=0 where number='Z12290';
update ecw_customer set is_new=0 where number='Z12297';
update ecw_customer set is_new=0 where number='Z12301';
update ecw_customer set is_new=0 where number='Z12308';
update ecw_customer set is_new=0 where number='Z12318';
update ecw_customer set is_new=0 where number='Z12331';
update ecw_customer set is_new=0 where number='Z12335';
update ecw_customer set is_new=0 where number='Z12339';
update ecw_customer set is_new=0 where number='Z12344';
update ecw_customer set is_new=0 where number='Z12359';
update ecw_customer set is_new=0 where number='Z12360';
update ecw_customer set is_new=0 where number='Z12383';
update ecw_customer set is_new=0 where number='Z12387';
update ecw_customer set is_new=0 where number='Z12404';
update ecw_customer set is_new=0 where number='Z12407';
update ecw_customer set is_new=0 where number='Z12416';
update ecw_customer set is_new=0 where number='Z12432';
update ecw_customer set is_new=0 where number='Z12435';
update ecw_customer set is_new=0 where number='Z12450';
update ecw_customer set is_new=0 where number='Z12452';
update ecw_customer set is_new=0 where number='Z12454';
update ecw_customer set is_new=0 where number='Z12458';
update ecw_customer set is_new=0 where number='Z12465';
update ecw_customer set is_new=0 where number='Z12514';
update ecw_customer set is_new=0 where number='Z12519';
update ecw_customer set is_new=0 where number='Z12538';
update ecw_customer set is_new=0 where number='Z12547';
update ecw_customer set is_new=0 where number='Z12559';
update ecw_customer set is_new=0 where number='Z12566';
update ecw_customer set is_new=0 where number='Z12600';
update ecw_customer set is_new=0 where number='Z12630';
update ecw_customer set is_new=0 where number='Z12656';
update ecw_customer set is_new=0 where number='Z12659';
update ecw_customer set is_new=0 where number='N12641';
update ecw_customer set is_new=0 where number='Z12690';
update ecw_customer set is_new=0 where number='Z12702';
update ecw_customer set is_new=0 where number='Z12727';
update ecw_customer set is_new=0 where number='Z12800';
update ecw_customer set is_new=0 where number='Z12845';
update ecw_customer set is_new=0 where number='Z12853';
update ecw_customer set is_new=0 where number='Z12871';
update ecw_customer set is_new=0 where number='Z12889';
update ecw_customer set is_new=0 where number='Z12895';
update ecw_customer set is_new=0 where number='Z13687';
update ecw_customer set is_new=0 where number='Z15271';
update ecw_customer set is_new=0 where number='Z15277';
update ecw_customer set is_new=0 where number='N16801';
update ecw_customer set is_new=0 where number='Z15591';
update ecw_customer set is_new=0 where number='Z15621';
update ecw_customer set is_new=0 where number='Z15628';
update ecw_customer set is_new=0 where number='G02269';
update ecw_customer set is_new=0 where number='N16973';
update ecw_customer set is_new=0 where number='Z15679';
update ecw_customer set is_new=0 where number='Z15680';
update ecw_customer set is_new=0 where number='Z15704';
update ecw_customer set is_new=0 where number='Z16078';
update ecw_customer set is_new=0 where number='Z16111';
update ecw_customer set is_new=0 where number='N19126';
update ecw_customer set is_new=0 where number='Z17212';
update ecw_customer set is_new=0 where number='Z17298';
This diff is collapsed.
INSERT INTO `act_ge_property`(`NAME_`, `VALUE_`, `REV_`) VALUES ('batch.schema.version', '6.7.0.0', 1);
INSERT INTO `act_ge_property`(`NAME_`, `VALUE_`, `REV_`) VALUES ('cfg.execution-related-entities-count', 'true', 1);
INSERT INTO `act_ge_property`(`NAME_`, `VALUE_`, `REV_`) VALUES ('cfg.task-related-entities-count', 'true', 1);
INSERT INTO `act_ge_property`(`NAME_`, `VALUE_`, `REV_`) VALUES ('common.schema.version', '6.7.0.0', 1);
INSERT INTO `act_ge_property`(`NAME_`, `VALUE_`, `REV_`) VALUES ('entitylink.schema.version', '6.7.0.0', 1);
INSERT INTO `act_ge_property`(`NAME_`, `VALUE_`, `REV_`) VALUES ('eventsubscription.schema.version', '6.7.0.0', 1);
INSERT INTO `act_ge_property`(`NAME_`, `VALUE_`, `REV_`) VALUES ('identitylink.schema.version', '6.7.0.0', 1);
INSERT INTO `act_ge_property`(`NAME_`, `VALUE_`, `REV_`) VALUES ('job.schema.version', '6.7.0.0', 1);
INSERT INTO `act_ge_property`(`NAME_`, `VALUE_`, `REV_`) VALUES ('next.dbid', '1', 1);
INSERT INTO `act_ge_property`(`NAME_`, `VALUE_`, `REV_`) VALUES ('schema.history', 'create(6.7.0.0)', 1);
INSERT INTO `act_ge_property`(`NAME_`, `VALUE_`, `REV_`) VALUES ('schema.version', '6.7.0.0', 1);
INSERT INTO `act_ge_property`(`NAME_`, `VALUE_`, `REV_`) VALUES ('task.schema.version', '6.7.0.0', 1);
INSERT INTO `act_ge_property`(`NAME_`, `VALUE_`, `REV_`) VALUES ('variable.schema.version', '6.7.0.0', 1);
This diff is collapsed.
INSERT INTO `act_hi_comment`(`ID_`, `TYPE_`, `TIME_`, `USER_ID_`, `TASK_ID_`, `PROC_INST_ID_`, `ACTION_`, `MESSAGE_`, `FULL_MSG_`) VALUES ('1a8435fe-4ee6-11ed-8dac-02420a0a0033', '不通过', '2022-10-18 21:09:31.267', '115', 'b86d95a7-4ee5-11ed-8dac-02420a0a0033', 'b86cf95f-4ee5-11ed-8dac-02420a0a0033', 'AddComment', '88', 0x3838);
INSERT INTO `act_hi_comment`(`ID_`, `TYPE_`, `TIME_`, `USER_ID_`, `TASK_ID_`, `PROC_INST_ID_`, `ACTION_`, `MESSAGE_`, `FULL_MSG_`) VALUES ('2d399b9b-4fad-11ed-a125-02420a0a0033', '通过', '2022-10-19 20:54:32.504', '115', '2a425498-4fad-11ed-a125-02420a0a0033', '2a414320-4fad-11ed-a125-02420a0a0033', 'AddComment', '1', 0x31);
INSERT INTO `act_hi_comment`(`ID_`, `TYPE_`, `TIME_`, `USER_ID_`, `TASK_ID_`, `PROC_INST_ID_`, `ACTION_`, `MESSAGE_`, `FULL_MSG_`) VALUES ('39299d30-4ee1-11ed-afd8-02420a0a0032', '通过', '2022-10-18 20:34:35.199', '115', 'fdf8ae59-4edf-11ed-8dac-02420a0a0033', 'fded3ca1-4edf-11ed-8dac-02420a0a0033', 'AddComment', '88', 0x3838);
INSERT INTO `act_hi_comment`(`ID_`, `TYPE_`, `TIME_`, `USER_ID_`, `TASK_ID_`, `PROC_INST_ID_`, `ACTION_`, `MESSAGE_`, `FULL_MSG_`) VALUES ('4d6914aa-4ee6-11ed-8dac-02420a0a0033', '不通过', '2022-10-18 21:10:56.653', '115', '29b9f2e7-4ee6-11ed-8dac-02420a0a0033', '29b97daf-4ee6-11ed-8dac-02420a0a0033', 'AddComment', '22', 0x3232);
INSERT INTO `act_hi_comment`(`ID_`, `TYPE_`, `TIME_`, `USER_ID_`, `TASK_ID_`, `PROC_INST_ID_`, `ACTION_`, `MESSAGE_`, `FULL_MSG_`) VALUES ('53a9af9e-4ee5-11ed-8dac-02420a0a0033', '不通过', '2022-10-18 21:03:57.646', '133', 'ed739bf3-4ee4-11ed-8dac-02420a0a0033', 'ed72b18b-4ee4-11ed-8dac-02420a0a0033', 'AddComment', '88', 0x3838);
INSERT INTO `act_hi_comment`(`ID_`, `TYPE_`, `TIME_`, `USER_ID_`, `TASK_ID_`, `PROC_INST_ID_`, `ACTION_`, `MESSAGE_`, `FULL_MSG_`) VALUES ('550af536-4efc-11ed-8dac-02420a0a0033', '通过', '2022-10-18 23:48:38.386', '1', '4ef3f7a3-4efc-11ed-8dac-02420a0a0033', '4ef3826b-4efc-11ed-8dac-02420a0a0033', 'AddComment', '11', 0x3131);
INSERT INTO `act_hi_comment`(`ID_`, `TYPE_`, `TIME_`, `USER_ID_`, `TASK_ID_`, `PROC_INST_ID_`, `ACTION_`, `MESSAGE_`, `FULL_MSG_`) VALUES ('653c9f8f-4ef1-11ed-afd8-02420a0a0032', '通过', '2022-10-18 22:30:21.091', '133', '59c2b22c-4ef1-11ed-afd8-02420a0a0032', '59bac2e4-4ef1-11ed-afd8-02420a0a0032', 'AddComment', '88', 0x3838);
INSERT INTO `act_hi_comment`(`ID_`, `TYPE_`, `TIME_`, `USER_ID_`, `TASK_ID_`, `PROC_INST_ID_`, `ACTION_`, `MESSAGE_`, `FULL_MSG_`) VALUES ('7337454c-4ee6-11ed-afd8-02420a0a0032', '通过', '2022-10-18 21:12:00.080', '133', '65c5f553-4ee6-11ed-8dac-02420a0a0033', '65c4bccb-4ee6-11ed-8dac-02420a0a0033', 'AddComment', '55', 0x3535);
INSERT INTO `act_hi_comment`(`ID_`, `TYPE_`, `TIME_`, `USER_ID_`, `TASK_ID_`, `PROC_INST_ID_`, `ACTION_`, `MESSAGE_`, `FULL_MSG_`) VALUES ('805b7f65-4f88-11ed-87a3-02420a0a0032', '通过', '2022-10-19 16:32:00.598', '1', '7bd38724-4f88-11ed-a125-02420a0a0033', '7bc8d8bc-4f88-11ed-a125-02420a0a0033', 'AddComment', '11', 0x3131);
INSERT INTO `act_hi_comment`(`ID_`, `TYPE_`, `TIME_`, `USER_ID_`, `TASK_ID_`, `PROC_INST_ID_`, `ACTION_`, `MESSAGE_`, `FULL_MSG_`) VALUES ('8b9f340d-4fa8-11ed-87a3-02420a0a0032', '通过', '2022-10-19 20:21:23.392', '115', '870ab8ba-4fa8-11ed-a125-02420a0a0033', '870a1c72-4fa8-11ed-a125-02420a0a0033', 'AddComment', '1', 0x31);
INSERT INTO `act_hi_comment`(`ID_`, `TYPE_`, `TIME_`, `USER_ID_`, `TASK_ID_`, `PROC_INST_ID_`, `ACTION_`, `MESSAGE_`, `FULL_MSG_`) VALUES ('ab10b9a9-4f88-11ed-87a3-02420a0a0032', '通过', '2022-10-19 16:33:12.249', '1', 'a82affbf-4f88-11ed-a125-02420a0a0033', 'a82a1557-4f88-11ed-a125-02420a0a0033', 'AddComment', '111', 0x313131);
INSERT INTO `act_hi_comment`(`ID_`, `TYPE_`, `TIME_`, `USER_ID_`, `TASK_ID_`, `PROC_INST_ID_`, `ACTION_`, `MESSAGE_`, `FULL_MSG_`) VALUES ('aced225c-4ef1-11ed-8dac-02420a0a0033', '通过', '2022-10-18 22:32:21.366', '133', '9fe0ae19-4ef1-11ed-8dac-02420a0a0033', '9fe011d1-4ef1-11ed-8dac-02420a0a0033', 'AddComment', '88', 0x3838);
INSERT INTO `act_hi_comment`(`ID_`, `TYPE_`, `TIME_`, `USER_ID_`, `TASK_ID_`, `PROC_INST_ID_`, `ACTION_`, `MESSAGE_`, `FULL_MSG_`) VALUES ('b7e647ed-4faa-11ed-a125-02420a0a0033', '通过', '2022-10-19 20:36:56.671', '115', 'b17876e9-4faa-11ed-87a3-02420a0a0032', 'b170d5c1-4faa-11ed-87a3-02420a0a0032', 'AddComment', '11', 0x3131);
INSERT INTO `act_hi_comment`(`ID_`, `TYPE_`, `TIME_`, `USER_ID_`, `TASK_ID_`, `PROC_INST_ID_`, `ACTION_`, `MESSAGE_`, `FULL_MSG_`) VALUES ('c950bba7-4ee2-11ed-8dac-02420a0a0033', '通过', '2022-10-18 20:45:46.543', '133', 'c17837f4-4ee2-11ed-8dac-02420a0a0033', 'c177749c-4ee2-11ed-8dac-02420a0a0033', 'AddComment', '88', 0x3838);
INSERT INTO `act_hi_comment`(`ID_`, `TYPE_`, `TIME_`, `USER_ID_`, `TASK_ID_`, `PROC_INST_ID_`, `ACTION_`, `MESSAGE_`, `FULL_MSG_`) VALUES ('d31c3130-4ee9-11ed-afd8-02420a0a0032', '通过', '2022-10-18 21:36:09.454', '115', '5118ceee-4ee9-11ed-8dac-02420a0a0033', '511832a6-4ee9-11ed-8dac-02420a0a0033', 'AddComment', '88', 0x3838);
INSERT INTO `act_hi_comment`(`ID_`, `TYPE_`, `TIME_`, `USER_ID_`, `TASK_ID_`, `PROC_INST_ID_`, `ACTION_`, `MESSAGE_`, `FULL_MSG_`) VALUES ('dc416047-4faa-11ed-87a3-02420a0a0032', '通过', '2022-10-19 20:37:57.666', '115', 'd94a6764-4faa-11ed-87a3-02420a0a0032', 'd949cb1c-4faa-11ed-87a3-02420a0a0032', 'AddComment', '1', 0x31);
INSERT INTO `act_hi_comment`(`ID_`, `TYPE_`, `TIME_`, `USER_ID_`, `TASK_ID_`, `PROC_INST_ID_`, `ACTION_`, `MESSAGE_`, `FULL_MSG_`) VALUES ('f2f4fd03-4ef1-11ed-afd8-02420a0a0032', '通过', '2022-10-18 22:34:18.858', '115', 'e4141688-4ef1-11ed-8dac-02420a0a0033', 'e413a150-4ef1-11ed-8dac-02420a0a0033', 'AddComment', '88', 0x3838);
INSERT INTO `act_hi_comment`(`ID_`, `TYPE_`, `TIME_`, `USER_ID_`, `TASK_ID_`, `PROC_INST_ID_`, `ACTION_`, `MESSAGE_`, `FULL_MSG_`) VALUES ('f589d94c-4faa-11ed-a125-02420a0a0033', '通过', '2022-10-19 20:38:40.084', '115', 'f17fe9c9-4faa-11ed-a125-02420a0a0033', 'f17f4d81-4faa-11ed-a125-02420a0a0033', 'AddComment', '1', 0x31);
INSERT INTO `act_hi_detail`(`ID_`, `TYPE_`, `PROC_INST_ID_`, `EXECUTION_ID_`, `TASK_ID_`, `ACT_INST_ID_`, `NAME_`, `VAR_TYPE_`, `REV_`, `TIME_`, `BYTEARRAY_ID_`, `DOUBLE_`, `LONG_`, `TEXT_`, `TEXT2_`) VALUES ('29b9f2e2-4ee6-11ed-8dac-02420a0a0033', 'VariableUpdate', '29b97daf-4ee6-11ed-8dac-02420a0a0033', '29b97daf-4ee6-11ed-8dac-02420a0a0033', NULL, NULL, 'businessNo', 'string', 0, '2022-10-18 21:09:56.785', NULL, NULL, NULL, 'CGU220001', NULL);
INSERT INTO `act_hi_detail`(`ID_`, `TYPE_`, `PROC_INST_ID_`, `EXECUTION_ID_`, `TASK_ID_`, `ACT_INST_ID_`, `NAME_`, `VAR_TYPE_`, `REV_`, `TIME_`, `BYTEARRAY_ID_`, `DOUBLE_`, `LONG_`, `TEXT_`, `TEXT2_`) VALUES ('2a425493-4fad-11ed-a125-02420a0a0033', 'VariableUpdate', '2a414320-4fad-11ed-a125-02420a0a0033', '2a414320-4fad-11ed-a125-02420a0a0033', NULL, NULL, 'businessNo', 'string', 0, '2022-10-19 20:54:27.528', NULL, NULL, NULL, '220003', NULL);
INSERT INTO `act_hi_detail`(`ID_`, `TYPE_`, `PROC_INST_ID_`, `EXECUTION_ID_`, `TASK_ID_`, `ACT_INST_ID_`, `NAME_`, `VAR_TYPE_`, `REV_`, `TIME_`, `BYTEARRAY_ID_`, `DOUBLE_`, `LONG_`, `TEXT_`, `TEXT2_`) VALUES ('4ef3d08e-4efc-11ed-8dac-02420a0a0033', 'VariableUpdate', '4ef3826b-4efc-11ed-8dac-02420a0a0033', '4ef3826b-4efc-11ed-8dac-02420a0a0033', NULL, NULL, 'businessNo', 'string', 0, '2022-10-18 23:48:28.168', NULL, NULL, NULL, 'NG2200006L', NULL);
INSERT INTO `act_hi_detail`(`ID_`, `TYPE_`, `PROC_INST_ID_`, `EXECUTION_ID_`, `TASK_ID_`, `ACT_INST_ID_`, `NAME_`, `VAR_TYPE_`, `REV_`, `TIME_`, `BYTEARRAY_ID_`, `DOUBLE_`, `LONG_`, `TEXT_`, `TEXT2_`) VALUES ('5118a7d9-4ee9-11ed-8dac-02420a0a0033', 'VariableUpdate', '511832a6-4ee9-11ed-8dac-02420a0a0033', '511832a6-4ee9-11ed-8dac-02420a0a0033', NULL, NULL, 'businessNo', 'string', 0, '2022-10-18 21:32:31.327', NULL, NULL, NULL, 'CGU220001', NULL);
INSERT INTO `act_hi_detail`(`ID_`, `TYPE_`, `PROC_INST_ID_`, `EXECUTION_ID_`, `TASK_ID_`, `ACT_INST_ID_`, `NAME_`, `VAR_TYPE_`, `REV_`, `TIME_`, `BYTEARRAY_ID_`, `DOUBLE_`, `LONG_`, `TEXT_`, `TEXT2_`) VALUES ('59bbfb67-4ef1-11ed-afd8-02420a0a0032', 'VariableUpdate', '59bac2e4-4ef1-11ed-afd8-02420a0a0032', '59bac2e4-4ef1-11ed-afd8-02420a0a0032', NULL, NULL, 'businessNo', 'string', 0, '2022-10-18 22:30:01.793', NULL, NULL, NULL, '220001', NULL);
INSERT INTO `act_hi_detail`(`ID_`, `TYPE_`, `PROC_INST_ID_`, `EXECUTION_ID_`, `TASK_ID_`, `ACT_INST_ID_`, `NAME_`, `VAR_TYPE_`, `REV_`, `TIME_`, `BYTEARRAY_ID_`, `DOUBLE_`, `LONG_`, `TEXT_`, `TEXT2_`) VALUES ('65c5f54e-4ee6-11ed-8dac-02420a0a0033', 'VariableUpdate', '65c4bccb-4ee6-11ed-8dac-02420a0a0033', '65c4bccb-4ee6-11ed-8dac-02420a0a0033', NULL, NULL, 'businessNo', 'string', 0, '2022-10-18 21:11:37.527', NULL, NULL, NULL, 'CGU220001', NULL);
INSERT INTO `act_hi_detail`(`ID_`, `TYPE_`, `PROC_INST_ID_`, `EXECUTION_ID_`, `TASK_ID_`, `ACT_INST_ID_`, `NAME_`, `VAR_TYPE_`, `REV_`, `TIME_`, `BYTEARRAY_ID_`, `DOUBLE_`, `LONG_`, `TEXT_`, `TEXT2_`) VALUES ('7bcafb9f-4f88-11ed-a125-02420a0a0033', 'VariableUpdate', '7bc8d8bc-4f88-11ed-a125-02420a0a0033', '7bc8d8bc-4f88-11ed-a125-02420a0a0033', NULL, NULL, 'businessNo', 'string', 0, '2022-10-19 16:31:52.940', NULL, NULL, NULL, 'CNY220002', NULL);
INSERT INTO `act_hi_detail`(`ID_`, `TYPE_`, `PROC_INST_ID_`, `EXECUTION_ID_`, `TASK_ID_`, `ACT_INST_ID_`, `NAME_`, `VAR_TYPE_`, `REV_`, `TIME_`, `BYTEARRAY_ID_`, `DOUBLE_`, `LONG_`, `TEXT_`, `TEXT2_`) VALUES ('870a91a5-4fa8-11ed-a125-02420a0a0033', 'VariableUpdate', '870a1c72-4fa8-11ed-a125-02420a0a0033', '870a1c72-4fa8-11ed-a125-02420a0a0033', NULL, NULL, 'businessNo', 'string', 0, '2022-10-19 20:21:15.707', NULL, NULL, NULL, '220002', NULL);
INSERT INTO `act_hi_detail`(`ID_`, `TYPE_`, `PROC_INST_ID_`, `EXECUTION_ID_`, `TASK_ID_`, `ACT_INST_ID_`, `NAME_`, `VAR_TYPE_`, `REV_`, `TIME_`, `BYTEARRAY_ID_`, `DOUBLE_`, `LONG_`, `TEXT_`, `TEXT2_`) VALUES ('9fe08704-4ef1-11ed-8dac-02420a0a0033', 'VariableUpdate', '9fe011d1-4ef1-11ed-8dac-02420a0a0033', '9fe011d1-4ef1-11ed-8dac-02420a0a0033', NULL, NULL, 'businessNo', 'string', 0, '2022-10-18 22:31:59.473', NULL, NULL, NULL, '220001', NULL);
INSERT INTO `act_hi_detail`(`ID_`, `TYPE_`, `PROC_INST_ID_`, `EXECUTION_ID_`, `TASK_ID_`, `ACT_INST_ID_`, `NAME_`, `VAR_TYPE_`, `REV_`, `TIME_`, `BYTEARRAY_ID_`, `DOUBLE_`, `LONG_`, `TEXT_`, `TEXT2_`) VALUES ('a82ad8aa-4f88-11ed-a125-02420a0a0033', 'VariableUpdate', 'a82a1557-4f88-11ed-a125-02420a0a0033', 'a82a1557-4f88-11ed-a125-02420a0a0033', NULL, NULL, 'businessNo', 'string', 0, '2022-10-19 16:33:07.388', NULL, NULL, NULL, 'CNY220002', NULL);
INSERT INTO `act_hi_detail`(`ID_`, `TYPE_`, `PROC_INST_ID_`, `EXECUTION_ID_`, `TASK_ID_`, `ACT_INST_ID_`, `NAME_`, `VAR_TYPE_`, `REV_`, `TIME_`, `BYTEARRAY_ID_`, `DOUBLE_`, `LONG_`, `TEXT_`, `TEXT2_`) VALUES ('b171e734-4faa-11ed-87a3-02420a0a0032', 'VariableUpdate', 'b170d5c1-4faa-11ed-87a3-02420a0a0032', 'b170d5c1-4faa-11ed-87a3-02420a0a0032', NULL, NULL, 'businessNo', 'string', 0, '2022-10-19 20:36:45.842', NULL, NULL, NULL, 'CNY220002', NULL);
INSERT INTO `act_hi_detail`(`ID_`, `TYPE_`, `PROC_INST_ID_`, `EXECUTION_ID_`, `TASK_ID_`, `ACT_INST_ID_`, `NAME_`, `VAR_TYPE_`, `REV_`, `TIME_`, `BYTEARRAY_ID_`, `DOUBLE_`, `LONG_`, `TEXT_`, `TEXT2_`) VALUES ('b86d6e92-4ee5-11ed-8dac-02420a0a0033', 'VariableUpdate', 'b86cf95f-4ee5-11ed-8dac-02420a0a0033', 'b86cf95f-4ee5-11ed-8dac-02420a0a0033', NULL, NULL, 'businessNo', 'string', 0, '2022-10-18 21:06:46.701', NULL, NULL, NULL, 'CGU220001', NULL);
INSERT INTO `act_hi_detail`(`ID_`, `TYPE_`, `PROC_INST_ID_`, `EXECUTION_ID_`, `TASK_ID_`, `ACT_INST_ID_`, `NAME_`, `VAR_TYPE_`, `REV_`, `TIME_`, `BYTEARRAY_ID_`, `DOUBLE_`, `LONG_`, `TEXT_`, `TEXT2_`) VALUES ('c17810df-4ee2-11ed-8dac-02420a0a0033', 'VariableUpdate', 'c177749c-4ee2-11ed-8dac-02420a0a0033', 'c177749c-4ee2-11ed-8dac-02420a0a0033', NULL, NULL, 'businessNo', 'string', 0, '2022-10-18 20:45:33.380', NULL, NULL, NULL, 'CGU220001', NULL);
INSERT INTO `act_hi_detail`(`ID_`, `TYPE_`, `PROC_INST_ID_`, `EXECUTION_ID_`, `TASK_ID_`, `ACT_INST_ID_`, `NAME_`, `VAR_TYPE_`, `REV_`, `TIME_`, `BYTEARRAY_ID_`, `DOUBLE_`, `LONG_`, `TEXT_`, `TEXT2_`) VALUES ('d94a404f-4faa-11ed-87a3-02420a0a0032', 'VariableUpdate', 'd949cb1c-4faa-11ed-87a3-02420a0a0032', 'd949cb1c-4faa-11ed-87a3-02420a0a0032', NULL, NULL, 'businessNo', 'string', 0, '2022-10-19 20:37:52.691', NULL, NULL, NULL, 'CNY220003', NULL);
INSERT INTO `act_hi_detail`(`ID_`, `TYPE_`, `PROC_INST_ID_`, `EXECUTION_ID_`, `TASK_ID_`, `ACT_INST_ID_`, `NAME_`, `VAR_TYPE_`, `REV_`, `TIME_`, `BYTEARRAY_ID_`, `DOUBLE_`, `LONG_`, `TEXT_`, `TEXT2_`) VALUES ('e413ef73-4ef1-11ed-8dac-02420a0a0033', 'VariableUpdate', 'e413a150-4ef1-11ed-8dac-02420a0a0033', 'e413a150-4ef1-11ed-8dac-02420a0a0033', NULL, NULL, 'businessNo', 'string', 0, '2022-10-18 22:33:53.895', NULL, NULL, NULL, '220001', NULL);
INSERT INTO `act_hi_detail`(`ID_`, `TYPE_`, `PROC_INST_ID_`, `EXECUTION_ID_`, `TASK_ID_`, `ACT_INST_ID_`, `NAME_`, `VAR_TYPE_`, `REV_`, `TIME_`, `BYTEARRAY_ID_`, `DOUBLE_`, `LONG_`, `TEXT_`, `TEXT2_`) VALUES ('ed739bee-4ee4-11ed-8dac-02420a0a0033', 'VariableUpdate', 'ed72b18b-4ee4-11ed-8dac-02420a0a0033', 'ed72b18b-4ee4-11ed-8dac-02420a0a0033', NULL, NULL, 'businessNo', 'string', 0, '2022-10-18 21:01:06.164', NULL, NULL, NULL, 'CGU220001', NULL);
INSERT INTO `act_hi_detail`(`ID_`, `TYPE_`, `PROC_INST_ID_`, `EXECUTION_ID_`, `TASK_ID_`, `ACT_INST_ID_`, `NAME_`, `VAR_TYPE_`, `REV_`, `TIME_`, `BYTEARRAY_ID_`, `DOUBLE_`, `LONG_`, `TEXT_`, `TEXT2_`) VALUES ('f17fc2b4-4faa-11ed-a125-02420a0a0033', 'VariableUpdate', 'f17f4d81-4faa-11ed-a125-02420a0a0033', 'f17f4d81-4faa-11ed-a125-02420a0a0033', NULL, NULL, 'businessNo', 'string', 0, '2022-10-19 20:38:33.307', NULL, NULL, NULL, 'CNY220003', NULL);
INSERT INTO `act_hi_detail`(`ID_`, `TYPE_`, `PROC_INST_ID_`, `EXECUTION_ID_`, `TASK_ID_`, `ACT_INST_ID_`, `NAME_`, `VAR_TYPE_`, `REV_`, `TIME_`, `BYTEARRAY_ID_`, `DOUBLE_`, `LONG_`, `TEXT_`, `TEXT2_`) VALUES ('fdefada4-4edf-11ed-8dac-02420a0a0033', 'VariableUpdate', 'fded3ca1-4edf-11ed-8dac-02420a0a0033', 'fded3ca1-4edf-11ed-8dac-02420a0a0033', NULL, NULL, 'businessNo', 'string', 0, '2022-10-18 20:25:46.336', NULL, NULL, NULL, 'UG2200001D', NULL);
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
INSERT INTO `act_hi_varinst`(`ID_`, `REV_`, `PROC_INST_ID_`, `EXECUTION_ID_`, `TASK_ID_`, `NAME_`, `VAR_TYPE_`, `SCOPE_ID_`, `SUB_SCOPE_ID_`, `SCOPE_TYPE_`, `BYTEARRAY_ID_`, `DOUBLE_`, `LONG_`, `TEXT_`, `TEXT2_`, `CREATE_TIME_`, `LAST_UPDATED_TIME_`) VALUES ('29b9cbd1-4ee6-11ed-8dac-02420a0a0033', 0, '29b97daf-4ee6-11ed-8dac-02420a0a0033', '29b97daf-4ee6-11ed-8dac-02420a0a0033', NULL, 'businessNo', 'string', NULL, NULL, NULL, NULL, NULL, NULL, 'CGU220001', NULL, '2022-10-18 21:09:56.785', '2022-10-18 21:09:56.785');
INSERT INTO `act_hi_varinst`(`ID_`, `REV_`, `PROC_INST_ID_`, `EXECUTION_ID_`, `TASK_ID_`, `NAME_`, `VAR_TYPE_`, `SCOPE_ID_`, `SUB_SCOPE_ID_`, `SCOPE_TYPE_`, `BYTEARRAY_ID_`, `DOUBLE_`, `LONG_`, `TEXT_`, `TEXT2_`, `CREATE_TIME_`, `LAST_UPDATED_TIME_`) VALUES ('2a425492-4fad-11ed-a125-02420a0a0033', 0, '2a414320-4fad-11ed-a125-02420a0a0033', '2a414320-4fad-11ed-a125-02420a0a0033', NULL, 'businessNo', 'string', NULL, NULL, NULL, NULL, NULL, NULL, '220003', NULL, '2022-10-19 20:54:27.528', '2022-10-19 20:54:27.528');
INSERT INTO `act_hi_varinst`(`ID_`, `REV_`, `PROC_INST_ID_`, `EXECUTION_ID_`, `TASK_ID_`, `NAME_`, `VAR_TYPE_`, `SCOPE_ID_`, `SUB_SCOPE_ID_`, `SCOPE_TYPE_`, `BYTEARRAY_ID_`, `DOUBLE_`, `LONG_`, `TEXT_`, `TEXT2_`, `CREATE_TIME_`, `LAST_UPDATED_TIME_`) VALUES ('4ef3d08d-4efc-11ed-8dac-02420a0a0033', 0, '4ef3826b-4efc-11ed-8dac-02420a0a0033', '4ef3826b-4efc-11ed-8dac-02420a0a0033', NULL, 'businessNo', 'string', NULL, NULL, NULL, NULL, NULL, NULL, 'NG2200006L', NULL, '2022-10-18 23:48:28.168', '2022-10-18 23:48:28.168');
INSERT INTO `act_hi_varinst`(`ID_`, `REV_`, `PROC_INST_ID_`, `EXECUTION_ID_`, `TASK_ID_`, `NAME_`, `VAR_TYPE_`, `SCOPE_ID_`, `SUB_SCOPE_ID_`, `SCOPE_TYPE_`, `BYTEARRAY_ID_`, `DOUBLE_`, `LONG_`, `TEXT_`, `TEXT2_`, `CREATE_TIME_`, `LAST_UPDATED_TIME_`) VALUES ('5118a7d8-4ee9-11ed-8dac-02420a0a0033', 0, '511832a6-4ee9-11ed-8dac-02420a0a0033', '511832a6-4ee9-11ed-8dac-02420a0a0033', NULL, 'businessNo', 'string', NULL, NULL, NULL, NULL, NULL, NULL, 'CGU220001', NULL, '2022-10-18 21:32:31.327', '2022-10-18 21:32:31.327');
INSERT INTO `act_hi_varinst`(`ID_`, `REV_`, `PROC_INST_ID_`, `EXECUTION_ID_`, `TASK_ID_`, `NAME_`, `VAR_TYPE_`, `SCOPE_ID_`, `SUB_SCOPE_ID_`, `SCOPE_TYPE_`, `BYTEARRAY_ID_`, `DOUBLE_`, `LONG_`, `TEXT_`, `TEXT2_`, `CREATE_TIME_`, `LAST_UPDATED_TIME_`) VALUES ('59bb5f26-4ef1-11ed-afd8-02420a0a0032', 0, '59bac2e4-4ef1-11ed-afd8-02420a0a0032', '59bac2e4-4ef1-11ed-afd8-02420a0a0032', NULL, 'businessNo', 'string', NULL, NULL, NULL, NULL, NULL, NULL, '220001', NULL, '2022-10-18 22:30:01.792', '2022-10-18 22:30:01.792');
INSERT INTO `act_hi_varinst`(`ID_`, `REV_`, `PROC_INST_ID_`, `EXECUTION_ID_`, `TASK_ID_`, `NAME_`, `VAR_TYPE_`, `SCOPE_ID_`, `SUB_SCOPE_ID_`, `SCOPE_TYPE_`, `BYTEARRAY_ID_`, `DOUBLE_`, `LONG_`, `TEXT_`, `TEXT2_`, `CREATE_TIME_`, `LAST_UPDATED_TIME_`) VALUES ('65c5f54d-4ee6-11ed-8dac-02420a0a0033', 0, '65c4bccb-4ee6-11ed-8dac-02420a0a0033', '65c4bccb-4ee6-11ed-8dac-02420a0a0033', NULL, 'businessNo', 'string', NULL, NULL, NULL, NULL, NULL, NULL, 'CGU220001', NULL, '2022-10-18 21:11:37.527', '2022-10-18 21:11:37.527');
INSERT INTO `act_hi_varinst`(`ID_`, `REV_`, `PROC_INST_ID_`, `EXECUTION_ID_`, `TASK_ID_`, `NAME_`, `VAR_TYPE_`, `SCOPE_ID_`, `SUB_SCOPE_ID_`, `SCOPE_TYPE_`, `BYTEARRAY_ID_`, `DOUBLE_`, `LONG_`, `TEXT_`, `TEXT2_`, `CREATE_TIME_`, `LAST_UPDATED_TIME_`) VALUES ('7bca866e-4f88-11ed-a125-02420a0a0033', 0, '7bc8d8bc-4f88-11ed-a125-02420a0a0033', '7bc8d8bc-4f88-11ed-a125-02420a0a0033', NULL, 'businessNo', 'string', NULL, NULL, NULL, NULL, NULL, NULL, 'CNY220002', NULL, '2022-10-19 16:31:52.940', '2022-10-19 16:31:52.940');
INSERT INTO `act_hi_varinst`(`ID_`, `REV_`, `PROC_INST_ID_`, `EXECUTION_ID_`, `TASK_ID_`, `NAME_`, `VAR_TYPE_`, `SCOPE_ID_`, `SUB_SCOPE_ID_`, `SCOPE_TYPE_`, `BYTEARRAY_ID_`, `DOUBLE_`, `LONG_`, `TEXT_`, `TEXT2_`, `CREATE_TIME_`, `LAST_UPDATED_TIME_`) VALUES ('870a91a4-4fa8-11ed-a125-02420a0a0033', 0, '870a1c72-4fa8-11ed-a125-02420a0a0033', '870a1c72-4fa8-11ed-a125-02420a0a0033', NULL, 'businessNo', 'string', NULL, NULL, NULL, NULL, NULL, NULL, '220002', NULL, '2022-10-19 20:21:15.707', '2022-10-19 20:21:15.707');
INSERT INTO `act_hi_varinst`(`ID_`, `REV_`, `PROC_INST_ID_`, `EXECUTION_ID_`, `TASK_ID_`, `NAME_`, `VAR_TYPE_`, `SCOPE_ID_`, `SUB_SCOPE_ID_`, `SCOPE_TYPE_`, `BYTEARRAY_ID_`, `DOUBLE_`, `LONG_`, `TEXT_`, `TEXT2_`, `CREATE_TIME_`, `LAST_UPDATED_TIME_`) VALUES ('9fe08703-4ef1-11ed-8dac-02420a0a0033', 0, '9fe011d1-4ef1-11ed-8dac-02420a0a0033', '9fe011d1-4ef1-11ed-8dac-02420a0a0033', NULL, 'businessNo', 'string', NULL, NULL, NULL, NULL, NULL, NULL, '220001', NULL, '2022-10-18 22:31:59.473', '2022-10-18 22:31:59.473');
INSERT INTO `act_hi_varinst`(`ID_`, `REV_`, `PROC_INST_ID_`, `EXECUTION_ID_`, `TASK_ID_`, `NAME_`, `VAR_TYPE_`, `SCOPE_ID_`, `SUB_SCOPE_ID_`, `SCOPE_TYPE_`, `BYTEARRAY_ID_`, `DOUBLE_`, `LONG_`, `TEXT_`, `TEXT2_`, `CREATE_TIME_`, `LAST_UPDATED_TIME_`) VALUES ('a82ab199-4f88-11ed-a125-02420a0a0033', 0, 'a82a1557-4f88-11ed-a125-02420a0a0033', 'a82a1557-4f88-11ed-a125-02420a0a0033', NULL, 'businessNo', 'string', NULL, NULL, NULL, NULL, NULL, NULL, 'CNY220002', NULL, '2022-10-19 16:33:07.387', '2022-10-19 16:33:07.387');
INSERT INTO `act_hi_varinst`(`ID_`, `REV_`, `PROC_INST_ID_`, `EXECUTION_ID_`, `TASK_ID_`, `NAME_`, `VAR_TYPE_`, `SCOPE_ID_`, `SUB_SCOPE_ID_`, `SCOPE_TYPE_`, `BYTEARRAY_ID_`, `DOUBLE_`, `LONG_`, `TEXT_`, `TEXT2_`, `CREATE_TIME_`, `LAST_UPDATED_TIME_`) VALUES ('b1717203-4faa-11ed-87a3-02420a0a0032', 0, 'b170d5c1-4faa-11ed-87a3-02420a0a0032', 'b170d5c1-4faa-11ed-87a3-02420a0a0032', NULL, 'businessNo', 'string', NULL, NULL, NULL, NULL, NULL, NULL, 'CNY220002', NULL, '2022-10-19 20:36:45.842', '2022-10-19 20:36:45.842');
INSERT INTO `act_hi_varinst`(`ID_`, `REV_`, `PROC_INST_ID_`, `EXECUTION_ID_`, `TASK_ID_`, `NAME_`, `VAR_TYPE_`, `SCOPE_ID_`, `SUB_SCOPE_ID_`, `SCOPE_TYPE_`, `BYTEARRAY_ID_`, `DOUBLE_`, `LONG_`, `TEXT_`, `TEXT2_`, `CREATE_TIME_`, `LAST_UPDATED_TIME_`) VALUES ('b86d6e91-4ee5-11ed-8dac-02420a0a0033', 0, 'b86cf95f-4ee5-11ed-8dac-02420a0a0033', 'b86cf95f-4ee5-11ed-8dac-02420a0a0033', NULL, 'businessNo', 'string', NULL, NULL, NULL, NULL, NULL, NULL, 'CGU220001', NULL, '2022-10-18 21:06:46.701', '2022-10-18 21:06:46.701');
INSERT INTO `act_hi_varinst`(`ID_`, `REV_`, `PROC_INST_ID_`, `EXECUTION_ID_`, `TASK_ID_`, `NAME_`, `VAR_TYPE_`, `SCOPE_ID_`, `SUB_SCOPE_ID_`, `SCOPE_TYPE_`, `BYTEARRAY_ID_`, `DOUBLE_`, `LONG_`, `TEXT_`, `TEXT2_`, `CREATE_TIME_`, `LAST_UPDATED_TIME_`) VALUES ('c177e9ce-4ee2-11ed-8dac-02420a0a0033', 0, 'c177749c-4ee2-11ed-8dac-02420a0a0033', 'c177749c-4ee2-11ed-8dac-02420a0a0033', NULL, 'businessNo', 'string', NULL, NULL, NULL, NULL, NULL, NULL, 'CGU220001', NULL, '2022-10-18 20:45:33.379', '2022-10-18 20:45:33.379');
INSERT INTO `act_hi_varinst`(`ID_`, `REV_`, `PROC_INST_ID_`, `EXECUTION_ID_`, `TASK_ID_`, `NAME_`, `VAR_TYPE_`, `SCOPE_ID_`, `SUB_SCOPE_ID_`, `SCOPE_TYPE_`, `BYTEARRAY_ID_`, `DOUBLE_`, `LONG_`, `TEXT_`, `TEXT2_`, `CREATE_TIME_`, `LAST_UPDATED_TIME_`) VALUES ('d94a404e-4faa-11ed-87a3-02420a0a0032', 0, 'd949cb1c-4faa-11ed-87a3-02420a0a0032', 'd949cb1c-4faa-11ed-87a3-02420a0a0032', NULL, 'businessNo', 'string', NULL, NULL, NULL, NULL, NULL, NULL, 'CNY220003', NULL, '2022-10-19 20:37:52.691', '2022-10-19 20:37:52.691');
INSERT INTO `act_hi_varinst`(`ID_`, `REV_`, `PROC_INST_ID_`, `EXECUTION_ID_`, `TASK_ID_`, `NAME_`, `VAR_TYPE_`, `SCOPE_ID_`, `SUB_SCOPE_ID_`, `SCOPE_TYPE_`, `BYTEARRAY_ID_`, `DOUBLE_`, `LONG_`, `TEXT_`, `TEXT2_`, `CREATE_TIME_`, `LAST_UPDATED_TIME_`) VALUES ('e413ef72-4ef1-11ed-8dac-02420a0a0033', 0, 'e413a150-4ef1-11ed-8dac-02420a0a0033', 'e413a150-4ef1-11ed-8dac-02420a0a0033', NULL, 'businessNo', 'string', NULL, NULL, NULL, NULL, NULL, NULL, '220001', NULL, '2022-10-18 22:33:53.895', '2022-10-18 22:33:53.895');
INSERT INTO `act_hi_varinst`(`ID_`, `REV_`, `PROC_INST_ID_`, `EXECUTION_ID_`, `TASK_ID_`, `NAME_`, `VAR_TYPE_`, `SCOPE_ID_`, `SUB_SCOPE_ID_`, `SCOPE_TYPE_`, `BYTEARRAY_ID_`, `DOUBLE_`, `LONG_`, `TEXT_`, `TEXT2_`, `CREATE_TIME_`, `LAST_UPDATED_TIME_`) VALUES ('ed7374dd-4ee4-11ed-8dac-02420a0a0033', 0, 'ed72b18b-4ee4-11ed-8dac-02420a0a0033', 'ed72b18b-4ee4-11ed-8dac-02420a0a0033', NULL, 'businessNo', 'string', NULL, NULL, NULL, NULL, NULL, NULL, 'CGU220001', NULL, '2022-10-18 21:01:06.163', '2022-10-18 21:01:06.163');
INSERT INTO `act_hi_varinst`(`ID_`, `REV_`, `PROC_INST_ID_`, `EXECUTION_ID_`, `TASK_ID_`, `NAME_`, `VAR_TYPE_`, `SCOPE_ID_`, `SUB_SCOPE_ID_`, `SCOPE_TYPE_`, `BYTEARRAY_ID_`, `DOUBLE_`, `LONG_`, `TEXT_`, `TEXT2_`, `CREATE_TIME_`, `LAST_UPDATED_TIME_`) VALUES ('f17fc2b3-4faa-11ed-a125-02420a0a0033', 0, 'f17f4d81-4faa-11ed-a125-02420a0a0033', 'f17f4d81-4faa-11ed-a125-02420a0a0033', NULL, 'businessNo', 'string', NULL, NULL, NULL, NULL, NULL, NULL, 'CNY220003', NULL, '2022-10-19 20:38:33.307', '2022-10-19 20:38:33.307');
INSERT INTO `act_hi_varinst`(`ID_`, `REV_`, `PROC_INST_ID_`, `EXECUTION_ID_`, `TASK_ID_`, `NAME_`, `VAR_TYPE_`, `SCOPE_ID_`, `SUB_SCOPE_ID_`, `SCOPE_TYPE_`, `BYTEARRAY_ID_`, `DOUBLE_`, `LONG_`, `TEXT_`, `TEXT2_`, `CREATE_TIME_`, `LAST_UPDATED_TIME_`) VALUES ('fdef1163-4edf-11ed-8dac-02420a0a0033', 0, 'fded3ca1-4edf-11ed-8dac-02420a0a0033', 'fded3ca1-4edf-11ed-8dac-02420a0a0033', NULL, 'businessNo', 'string', NULL, NULL, NULL, NULL, NULL, NULL, 'UG2200001D', NULL, '2022-10-18 20:25:46.336', '2022-10-18 20:25:46.336');
INSERT INTO `act_id_property`(`NAME_`, `VALUE_`, `REV_`) VALUES ('schema.version', '6.7.0.0', 1);
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
INSERT INTO `bpm_oa_leave`(`id`, `user_id`, `type`, `reason`, `start_time`, `end_time`, `day`, `result`, `process_instance_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (3, 1, 1, '我要请假啦啦啦!', '2022-03-01 08:00:00', '2022-03-03 08:00:00', 2, 1, 'a6a007dd-7b6d-11ec-b781-acde48001122', '1', '2022-01-22 18:25:42', '1', '2022-02-19 17:28:04', b'0', 1);
INSERT INTO `bpm_oa_leave`(`id`, `user_id`, `type`, `reason`, `start_time`, `end_time`, `day`, `result`, `process_instance_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (4, 1, 1, '我要请假啦啦啦!', '2022-03-01 08:00:00', '2022-03-03 08:00:00', 2, 1, '28a5d744-7b75-11ec-a3c8-acde48001122', '1', '2022-01-22 19:19:26', '1', '2022-02-19 17:28:05', b'0', 1);
INSERT INTO `bpm_oa_leave`(`id`, `user_id`, `type`, `reason`, `start_time`, `end_time`, `day`, `result`, `process_instance_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (5, 1, 1, '我要请假啦啦啦!', '2022-03-01 08:00:00', '2022-03-05 08:00:00', 4, 1, '75d43fd1-7b7f-11ec-a3c8-acde48001122', '1', '2022-01-22 20:33:11', '1', '2022-02-19 17:28:06', b'0', 1);
INSERT INTO `bpm_oa_leave`(`id`, `user_id`, `type`, `reason`, `start_time`, `end_time`, `day`, `result`, `process_instance_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (6, 1, 1, '我要请假啦啦啦!', '2022-03-01 08:00:00', '2022-03-05 08:00:00', 4, 1, '9ac0eab4-7b7f-11ec-a3c8-acde48001122', '1', '2022-01-22 20:34:13', '1', '2022-02-19 17:28:07', b'0', 1);
INSERT INTO `bpm_oa_leave`(`id`, `user_id`, `type`, `reason`, `start_time`, `end_time`, `day`, `result`, `process_instance_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (7, 1, 1, 'EEE', '2022-01-11 00:00:00', '2022-01-27 00:00:00', 16, 1, '7250cfdf-7b88-11ec-8ef0-acde48001122', '1', '2022-01-22 21:37:31', '1', '2022-02-19 17:28:08', b'0', 1);
INSERT INTO `bpm_oa_leave`(`id`, `user_id`, `type`, `reason`, `start_time`, `end_time`, `day`, `result`, `process_instance_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (8, 1, 1, 'EEE', '2022-01-02 00:00:00', '2022-01-23 00:00:00', 21, 1, '0699ab3c-7b8a-11ec-8ef0-acde48001122', '1', '2022-01-22 21:48:49', '1', '2022-02-19 17:28:08', b'0', 1);
INSERT INTO `bpm_oa_leave`(`id`, `user_id`, `type`, `reason`, `start_time`, `end_time`, `day`, `result`, `process_instance_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (9, 1, 1, 'EEE', '2022-01-01 00:00:00', '2022-01-29 00:00:00', 28, 1, 'ea957056-7b8d-11ec-b8e2-acde48001122', '1', '2022-01-22 22:16:40', '1', '2022-02-19 17:28:09', b'0', 1);
INSERT INTO `bpm_oa_leave`(`id`, `user_id`, `type`, `reason`, `start_time`, `end_time`, `day`, `result`, `process_instance_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (10, 1, 1, 'EEE', '2022-01-13 00:00:00', '2022-01-25 00:00:00', 12, 1, '7e093de8-7b8e-11ec-b8e2-acde48001122', '1', '2022-01-22 22:20:47', '1', '2022-02-19 17:28:10', b'0', 1);
INSERT INTO `bpm_oa_leave`(`id`, `user_id`, `type`, `reason`, `start_time`, `end_time`, `day`, `result`, `process_instance_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (11, 1, 1, 'AAA', '2022-01-03 00:00:00', '2022-01-21 00:00:00', 18, 1, '5354233a-7b91-11ec-8473-acde48001122', '1', '2022-01-22 22:41:04', '1', '2022-02-19 17:28:11', b'0', 1);
INSERT INTO `bpm_oa_leave`(`id`, `user_id`, `type`, `reason`, `start_time`, `end_time`, `day`, `result`, `process_instance_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (12, 1, 1, 'EEEEE', '2021-12-27 00:00:00', '2022-01-27 00:00:00', 31, 1, '68ce0834-7b91-11ec-8473-acde48001122', '1', '2022-01-22 22:41:40', '1', '2022-02-19 17:28:12', b'0', 1);
INSERT INTO `bpm_oa_leave`(`id`, `user_id`, `type`, `reason`, `start_time`, `end_time`, `day`, `result`, `process_instance_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (13, 1, 1, 'aaa', '2022-01-10 00:00:00', '2022-01-28 00:00:00', 18, 1, 'bb23c2b4-7b91-11ec-8473-acde48001122', '1', '2022-01-22 22:43:58', '1', '2022-02-19 17:28:14', b'0', 1);
INSERT INTO `bpm_oa_leave`(`id`, `user_id`, `type`, `reason`, `start_time`, `end_time`, `day`, `result`, `process_instance_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (14, 1, 1, 'eee', '2021-12-27 00:00:00', '2022-01-28 00:00:00', 32, 3, '8884f3e7-7b99-11ec-ba5c-acde48001122', '1', '2022-01-22 23:39:49', '1', '2022-02-19 17:28:13', b'0', 1);
INSERT INTO `bpm_oa_leave`(`id`, `user_id`, `type`, `reason`, `start_time`, `end_time`, `day`, `result`, `process_instance_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (15, 1, 1, 'EEE', '2022-01-20 00:00:00', '2022-01-19 00:00:00', 1, 1, 'a59a5391-7b99-11ec-ba5c-acde48001122', '1', '2022-01-22 23:40:38', '1', '2022-02-19 17:28:15', b'0', 1);
INSERT INTO `bpm_oa_leave`(`id`, `user_id`, `type`, `reason`, `start_time`, `end_time`, `day`, `result`, `process_instance_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (16, 1, 3, 'EEE', '2022-01-04 00:00:00', '2022-01-13 00:00:00', 9, 3, '03c6c157-7b9a-11ec-a290-acde48001122', '1', '2022-01-22 23:43:16', '1', '2022-02-19 17:28:15', b'0', 1);
INSERT INTO `bpm_oa_leave`(`id`, `user_id`, `type`, `reason`, `start_time`, `end_time`, `day`, `result`, `process_instance_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (17, 1, 2, 'EEE', '2022-01-22 00:00:00', '2022-01-22 00:00:00', 0, 1, '331bc281-7b9a-11ec-a290-acde48001122', '1', '2022-01-22 23:44:35', '1', '2022-02-19 17:28:20', b'0', 1);
INSERT INTO `bpm_oa_leave`(`id`, `user_id`, `type`, `reason`, `start_time`, `end_time`, `day`, `result`, `process_instance_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (18, 1, 2, 'EEE', '2022-01-11 00:00:00', '2022-01-11 00:00:00', 0, 1, '52ffd28e-7b9a-11ec-a290-acde48001122', '1', '2022-01-22 23:45:29', '1', '2022-02-19 17:28:16', b'0', 1);
INSERT INTO `bpm_oa_leave`(`id`, `user_id`, `type`, `reason`, `start_time`, `end_time`, `day`, `result`, `process_instance_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (19, 1, 2, 'eee', '2022-01-22 00:00:00', '2022-01-22 00:00:00', 0, 1, '67c2eaab-7b9a-11ec-a290-acde48001122', '1', '2022-01-22 23:46:04', '1', '2022-02-19 17:28:19', b'0', 1);
INSERT INTO `bpm_oa_leave`(`id`, `user_id`, `type`, `reason`, `start_time`, `end_time`, `day`, `result`, `process_instance_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (20, 1, 1, 'EEE', '2022-01-04 00:00:00', '2022-01-04 00:00:00', 0, 1, '819442e8-7b9a-11ec-a290-acde48001122', '1', '2022-01-22 23:46:47', '1', '2022-02-19 17:28:17', b'0', 1);
INSERT INTO `bpm_oa_leave`(`id`, `user_id`, `type`, `reason`, `start_time`, `end_time`, `day`, `result`, `process_instance_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (21, 1, 1, 'EEE', '2022-01-22 00:00:00', '2022-01-23 00:00:00', 1, 1, 'ec45f38f-7b9a-11ec-b03b-acde48001122', '1', '2022-01-22 23:49:46', '1', '2022-02-19 17:28:22', b'0', 1);
INSERT INTO `bpm_oa_leave`(`id`, `user_id`, `type`, `reason`, `start_time`, `end_time`, `day`, `result`, `process_instance_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (22, 1, 1, 'eee', '2022-01-22 00:00:00', '2022-01-22 00:00:00', 0, 2, '2152467e-7b9b-11ec-9a1b-acde48001122', '1', '2022-01-22 23:51:15', '1', '2022-02-19 17:28:23', b'0', 1);
INSERT INTO `bpm_oa_leave`(`id`, `user_id`, `type`, `reason`, `start_time`, `end_time`, `day`, `result`, `process_instance_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (23, 1, 2, 'eee', '2022-01-03 00:00:00', '2022-01-26 00:00:00', 23, 1, '7317cec6-7b9b-11ec-b5b7-acde48001122', '1', '2022-01-22 23:53:32', '1', '2022-02-19 17:28:24', b'0', 1);
INSERT INTO `bpm_oa_leave`(`id`, `user_id`, `type`, `reason`, `start_time`, `end_time`, `day`, `result`, `process_instance_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (24, 1, 2, 'eee', '2022-01-03 00:00:00', '2022-01-26 00:00:00', 23, 4, '7470a810-7b9b-11ec-b5b7-acde48001122', '1', '2022-01-22 23:53:35', '1', '2022-02-19 17:28:25', b'0', 1);
INSERT INTO `bpm_oa_leave`(`id`, `user_id`, `type`, `reason`, `start_time`, `end_time`, `day`, `result`, `process_instance_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (25, 1, 1, 'EE', '2021-12-27 00:00:00', '2022-01-19 00:00:00', 23, 1, '3ad174fb-7b9d-11ec-8404-acde48001122', '1', '2022-01-23 00:06:17', '1', '2022-02-19 17:28:26', b'0', 1);
INSERT INTO `bpm_oa_leave`(`id`, `user_id`, `type`, `reason`, `start_time`, `end_time`, `day`, `result`, `process_instance_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (30, 115, 2, '123', '2022-05-13 00:00:00', '2022-05-21 00:00:00', 8, 1, 'a8309f62-d2cd-11ec-816f-8e390d63c301', '115', '2022-05-13 23:02:07', '115', '2022-05-13 23:02:10', b'0', 0);
INSERT INTO `bpm_oa_leave`(`id`, `user_id`, `type`, `reason`, `start_time`, `end_time`, `day`, `result`, `process_instance_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (31, 117, 1, '11', '2022-05-11 00:00:00', '2022-05-11 00:00:00', 0, 1, '27e828e6-ddc3-11ec-9466-0242ac110002', '117', '2022-05-27 21:44:40', '117', '2022-05-27 21:44:40', b'0', 0);
INSERT INTO `bpm_oa_leave`(`id`, `user_id`, `type`, `reason`, `start_time`, `end_time`, `day`, `result`, `process_instance_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (32, 1, 2, '111', '2022-06-06 00:00:00', '2022-06-07 00:00:00', 1, 4, '945046f2-e53c-11ec-9466-0242ac110002', '1', '2022-06-06 10:01:29', '1', '2022-06-06 10:35:14', b'0', 0);
INSERT INTO `bpm_process_copy`(`id`, `title`, `process_id`, `process_name`, `category_id`, `deployment_id`, `instance_id`, `task_id`, `user_id`, `originator_id`, `originator_name`, `creator`, `create_time`, `updater`, `update_time`, `deleted`) VALUES (1, '卸柜审核', 'unload_container:2:d67155c9-1e1d-11ed-a23f-0242ac110002', '卸柜审核', '5', 'd6668056-1e1d-11ed-a23f-0242ac110002', '511832a6-4ee9-11ed-8dac-02420a0a0033', '', 133, 133, '朱亚静', '133', '2022-10-18 21:32:31', '133', '2022-10-18 21:32:31', b'0');
This diff is collapsed.
INSERT INTO `bpm_process_instance_ext`(`id`, `start_user_id`, `name`, `process_instance_id`, `process_definition_id`, `category`, `status`, `result`, `end_time`, `form_variables`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (1, 133, '调仓审核', 'fded3ca1-4edf-11ed-8dac-02420a0a0033', 'warehouse_transfer:2:baeaf758-119a-11ed-bff5-0242ac110002', '4', 2, 2, '2022-10-18 20:34:35', '{\"businessNo\":\"UG2200001D\"}', '133', '2022-10-18 20:25:46', '115', '2022-10-18 20:34:35', b'0', 0);
INSERT INTO `bpm_process_instance_ext`(`id`, `start_user_id`, `name`, `process_instance_id`, `process_definition_id`, `category`, `status`, `result`, `end_time`, `form_variables`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (2, 133, '预装审核', 'c177749c-4ee2-11ed-8dac-02420a0a0033', 'shipment_preassemble:4:6026b2d1-4add-11ed-bd76-0242ac110002', '5', 2, 2, '2022-10-18 20:45:47', '{\"businessNo\":\"CGU220001\"}', '133', '2022-10-18 20:45:33', '133', '2022-10-18 20:45:47', b'0', 0);
INSERT INTO `bpm_process_instance_ext`(`id`, `start_user_id`, `name`, `process_instance_id`, `process_definition_id`, `category`, `status`, `result`, `end_time`, `form_variables`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (3, 133, '出货拆单审核', 'ed72b18b-4ee4-11ed-8dac-02420a0a0033', 'shipment_split_order:4:9ada1224-4afc-11ed-ba95-0242ac110002', '5', 2, 3, NULL, '{\"businessNo\":\"CGU220001\"}', '133', '2022-10-18 21:01:06', '133', '2022-10-18 21:03:58', b'0', 0);
INSERT INTO `bpm_process_instance_ext`(`id`, `start_user_id`, `name`, `process_instance_id`, `process_definition_id`, `category`, `status`, `result`, `end_time`, `form_variables`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (4, 133, '出货拆单审核', 'b86cf95f-4ee5-11ed-8dac-02420a0a0033', 'shipment_split_order:4:9ada1224-4afc-11ed-ba95-0242ac110002', '5', 2, 3, NULL, '{\"businessNo\":\"CGU220001\"}', '133', '2022-10-18 21:06:47', '115', '2022-10-18 21:09:31', b'0', 0);
INSERT INTO `bpm_process_instance_ext`(`id`, `start_user_id`, `name`, `process_instance_id`, `process_definition_id`, `category`, `status`, `result`, `end_time`, `form_variables`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (5, 133, '出货拆单审核', '29b97daf-4ee6-11ed-8dac-02420a0a0033', 'shipment_split_order:4:9ada1224-4afc-11ed-ba95-0242ac110002', '5', 2, 3, NULL, '{\"businessNo\":\"CGU220001\"}', '133', '2022-10-18 21:09:57', '115', '2022-10-18 21:10:57', b'0', 0);
INSERT INTO `bpm_process_instance_ext`(`id`, `start_user_id`, `name`, `process_instance_id`, `process_definition_id`, `category`, `status`, `result`, `end_time`, `form_variables`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (6, 133, '封柜审核', '65c4bccb-4ee6-11ed-8dac-02420a0a0033', 'close_container:3:3adae5b8-4adf-11ed-8239-0242ac110002', '5', 2, 2, '2022-10-18 21:12:00', '{\"businessNo\":\"CGU220001\"}', '133', '2022-10-18 21:11:38', '133', '2022-10-18 21:12:00', b'0', 0);
INSERT INTO `bpm_process_instance_ext`(`id`, `start_user_id`, `name`, `process_instance_id`, `process_definition_id`, `category`, `status`, `result`, `end_time`, `form_variables`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (7, 133, '卸柜审核', '511832a6-4ee9-11ed-8dac-02420a0a0033', 'unload_container:2:d67155c9-1e1d-11ed-a23f-0242ac110002', '5', 2, 2, '2022-10-18 21:36:09', '{\"businessNo\":\"CGU220001\"}', '133', '2022-10-18 21:32:31', '115', '2022-10-18 21:36:09', b'0', 0);
INSERT INTO `bpm_process_instance_ext`(`id`, `start_user_id`, `name`, `process_instance_id`, `process_definition_id`, `category`, `status`, `result`, `end_time`, `form_variables`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (8, 133, '预装审核', '59bac2e4-4ef1-11ed-afd8-02420a0a0032', 'shipment_preassemble:4:6026b2d1-4add-11ed-bd76-0242ac110002', '5', 2, 2, '2022-10-18 22:30:21', '{\"businessNo\":\"220001\"}', '133', '2022-10-18 22:30:02', '133', '2022-10-18 22:30:21', b'0', 0);
INSERT INTO `bpm_process_instance_ext`(`id`, `start_user_id`, `name`, `process_instance_id`, `process_definition_id`, `category`, `status`, `result`, `end_time`, `form_variables`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (9, 133, '封柜审核', '9fe011d1-4ef1-11ed-8dac-02420a0a0033', 'close_container:3:3adae5b8-4adf-11ed-8239-0242ac110002', '5', 2, 2, '2022-10-18 22:32:21', '{\"businessNo\":\"220001\"}', '133', '2022-10-18 22:31:59', '133', '2022-10-18 22:32:21', b'0', 0);
INSERT INTO `bpm_process_instance_ext`(`id`, `start_user_id`, `name`, `process_instance_id`, `process_definition_id`, `category`, `status`, `result`, `end_time`, `form_variables`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (10, 133, '卸柜审核', 'e413a150-4ef1-11ed-8dac-02420a0a0033', 'unload_container:2:d67155c9-1e1d-11ed-a23f-0242ac110002', '5', 2, 2, '2022-10-18 22:34:19', '{\"businessNo\":\"220001\"}', '133', '2022-10-18 22:33:54', '115', '2022-10-18 22:34:19', b'0', 0);
INSERT INTO `bpm_process_instance_ext`(`id`, `start_user_id`, `name`, `process_instance_id`, `process_definition_id`, `category`, `status`, `result`, `end_time`, `form_variables`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (11, 1, '取消放货审核', '4ef3826b-4efc-11ed-8dac-02420a0a0033', 'cancel_goods:2:7fc9c06c-3a7b-11ed-bc36-0242ac110002', '4', 2, 2, '2022-10-18 23:48:38', '{\"businessNo\":\"NG2200006L\"}', '1', '2022-10-18 23:48:28', '1', '2022-10-18 23:48:38', b'0', 0);
INSERT INTO `bpm_process_instance_ext`(`id`, `start_user_id`, `name`, `process_instance_id`, `process_definition_id`, `category`, `status`, `result`, `end_time`, `form_variables`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (12, 1, '预装审核', '7bc8d8bc-4f88-11ed-a125-02420a0a0033', 'shipment_preassemble:4:6026b2d1-4add-11ed-bd76-0242ac110002', '5', 2, 2, '2022-10-19 16:32:01', '{\"businessNo\":\"CNY220002\"}', '1', '2022-10-19 16:31:53', '1', '2022-10-19 16:32:01', b'0', 0);
INSERT INTO `bpm_process_instance_ext`(`id`, `start_user_id`, `name`, `process_instance_id`, `process_definition_id`, `category`, `status`, `result`, `end_time`, `form_variables`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (13, 1, '出货拆单审核', 'a82a1557-4f88-11ed-a125-02420a0a0033', 'shipment_split_order:4:9ada1224-4afc-11ed-ba95-0242ac110002', '5', 2, 2, '2022-10-19 16:33:12', '{\"businessNo\":\"CNY220002\"}', '1', '2022-10-19 16:33:07', '1', '2022-10-19 16:33:12', b'0', 0);
INSERT INTO `bpm_process_instance_ext`(`id`, `start_user_id`, `name`, `process_instance_id`, `process_definition_id`, `category`, `status`, `result`, `end_time`, `form_variables`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (14, 115, '预装审核', '870a1c72-4fa8-11ed-a125-02420a0a0033', 'shipment_preassemble:4:6026b2d1-4add-11ed-bd76-0242ac110002', '5', 2, 2, '2022-10-19 20:21:23', '{\"businessNo\":\"220002\"}', '115', '2022-10-19 20:21:16', '115', '2022-10-19 20:21:23', b'0', 0);
INSERT INTO `bpm_process_instance_ext`(`id`, `start_user_id`, `name`, `process_instance_id`, `process_definition_id`, `category`, `status`, `result`, `end_time`, `form_variables`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (15, 115, '封柜审核', 'b170d5c1-4faa-11ed-87a3-02420a0a0032', 'close_container:3:3adae5b8-4adf-11ed-8239-0242ac110002', '5', 2, 2, '2022-10-19 20:36:57', '{\"businessNo\":\"CNY220002\"}', '115', '2022-10-19 20:36:46', '115', '2022-10-19 20:36:57', b'0', 0);
INSERT INTO `bpm_process_instance_ext`(`id`, `start_user_id`, `name`, `process_instance_id`, `process_definition_id`, `category`, `status`, `result`, `end_time`, `form_variables`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (16, 115, '预装审核', 'd949cb1c-4faa-11ed-87a3-02420a0a0032', 'shipment_preassemble:4:6026b2d1-4add-11ed-bd76-0242ac110002', '5', 2, 2, '2022-10-19 20:37:58', '{\"businessNo\":\"CNY220003\"}', '115', '2022-10-19 20:37:53', '115', '2022-10-19 20:37:58', b'0', 0);
INSERT INTO `bpm_process_instance_ext`(`id`, `start_user_id`, `name`, `process_instance_id`, `process_definition_id`, `category`, `status`, `result`, `end_time`, `form_variables`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (17, 115, '封柜审核', 'f17f4d81-4faa-11ed-a125-02420a0a0033', 'close_container:3:3adae5b8-4adf-11ed-8239-0242ac110002', '5', 2, 2, '2022-10-19 20:38:40', '{\"businessNo\":\"CNY220003\"}', '115', '2022-10-19 20:38:33', '115', '2022-10-19 20:38:40', b'0', 0);
INSERT INTO `bpm_process_instance_ext`(`id`, `start_user_id`, `name`, `process_instance_id`, `process_definition_id`, `category`, `status`, `result`, `end_time`, `form_variables`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (18, 115, '预装审核', '2a414320-4fad-11ed-a125-02420a0a0033', 'shipment_preassemble:4:6026b2d1-4add-11ed-bd76-0242ac110002', '5', 2, 2, '2022-10-19 20:54:33', '{\"businessNo\":\"220003\"}', '115', '2022-10-19 20:54:28', '115', '2022-10-19 20:54:33', b'0', 0);
This source diff could not be displayed because it is too large. You can view the blob instead.
INSERT INTO `bpm_task_ext`(`id`, `assignee_user_id`, `name`, `task_id`, `result`, `comment`, `end_time`, `process_instance_id`, `process_definition_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (1, 115, '部门经理审核', 'fdf8ae59-4edf-11ed-8dac-02420a0a0033', 2, '88', '2022-10-18 20:34:35', 'fded3ca1-4edf-11ed-8dac-02420a0a0033', 'warehouse_transfer:2:baeaf758-119a-11ed-bff5-0242ac110002', '133', '2022-10-18 20:25:46', '115', '2022-10-18 20:34:35', b'0', 0);
INSERT INTO `bpm_task_ext`(`id`, `assignee_user_id`, `name`, `task_id`, `result`, `comment`, `end_time`, `process_instance_id`, `process_definition_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (2, 133, '部门经理审核', 'c17837f4-4ee2-11ed-8dac-02420a0a0033', 2, '88', '2022-10-18 20:45:47', 'c177749c-4ee2-11ed-8dac-02420a0a0033', 'shipment_preassemble:4:6026b2d1-4add-11ed-bd76-0242ac110002', '133', '2022-10-18 20:45:33', '133', '2022-10-18 20:45:47', b'0', 0);
INSERT INTO `bpm_task_ext`(`id`, `assignee_user_id`, `name`, `task_id`, `result`, `comment`, `end_time`, `process_instance_id`, `process_definition_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (3, 133, '部门经理审核', 'ed739bf3-4ee4-11ed-8dac-02420a0a0033', 3, '88', NULL, 'ed72b18b-4ee4-11ed-8dac-02420a0a0033', 'shipment_split_order:4:9ada1224-4afc-11ed-ba95-0242ac110002', '133', '2022-10-18 21:01:06', '133', '2022-10-18 21:03:58', b'0', 0);
INSERT INTO `bpm_task_ext`(`id`, `assignee_user_id`, `name`, `task_id`, `result`, `comment`, `end_time`, `process_instance_id`, `process_definition_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (4, 115, '部门经理审核', 'b86d95a7-4ee5-11ed-8dac-02420a0a0033', 3, '88', NULL, 'b86cf95f-4ee5-11ed-8dac-02420a0a0033', 'shipment_split_order:4:9ada1224-4afc-11ed-ba95-0242ac110002', '133', '2022-10-18 21:06:47', '115', '2022-10-18 21:09:31', b'0', 0);
INSERT INTO `bpm_task_ext`(`id`, `assignee_user_id`, `name`, `task_id`, `result`, `comment`, `end_time`, `process_instance_id`, `process_definition_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (5, 115, '部门经理审核', '29b9f2e7-4ee6-11ed-8dac-02420a0a0033', 3, '22', NULL, '29b97daf-4ee6-11ed-8dac-02420a0a0033', 'shipment_split_order:4:9ada1224-4afc-11ed-ba95-0242ac110002', '133', '2022-10-18 21:09:57', '115', '2022-10-18 21:10:57', b'0', 0);
INSERT INTO `bpm_task_ext`(`id`, `assignee_user_id`, `name`, `task_id`, `result`, `comment`, `end_time`, `process_instance_id`, `process_definition_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (6, 133, '部门经理审核', '65c5f553-4ee6-11ed-8dac-02420a0a0033', 2, '55', '2022-10-18 21:12:00', '65c4bccb-4ee6-11ed-8dac-02420a0a0033', 'close_container:3:3adae5b8-4adf-11ed-8239-0242ac110002', '133', '2022-10-18 21:11:38', '133', '2022-10-18 21:12:00', b'0', 0);
INSERT INTO `bpm_task_ext`(`id`, `assignee_user_id`, `name`, `task_id`, `result`, `comment`, `end_time`, `process_instance_id`, `process_definition_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (7, 115, '部门经理审核', '5118ceee-4ee9-11ed-8dac-02420a0a0033', 2, '88', '2022-10-18 21:36:09', '511832a6-4ee9-11ed-8dac-02420a0a0033', 'unload_container:2:d67155c9-1e1d-11ed-a23f-0242ac110002', '133', '2022-10-18 21:32:31', '115', '2022-10-18 21:36:10', b'0', 0);
INSERT INTO `bpm_task_ext`(`id`, `assignee_user_id`, `name`, `task_id`, `result`, `comment`, `end_time`, `process_instance_id`, `process_definition_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (8, 133, '部门经理审核', '59c2b22c-4ef1-11ed-afd8-02420a0a0032', 2, '88', '2022-10-18 22:30:21', '59bac2e4-4ef1-11ed-afd8-02420a0a0032', 'shipment_preassemble:4:6026b2d1-4add-11ed-bd76-0242ac110002', '133', '2022-10-18 22:30:02', '133', '2022-10-18 22:30:21', b'0', 0);
INSERT INTO `bpm_task_ext`(`id`, `assignee_user_id`, `name`, `task_id`, `result`, `comment`, `end_time`, `process_instance_id`, `process_definition_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (9, 133, '部门经理审核', '9fe0ae19-4ef1-11ed-8dac-02420a0a0033', 2, '88', '2022-10-18 22:32:21', '9fe011d1-4ef1-11ed-8dac-02420a0a0033', 'close_container:3:3adae5b8-4adf-11ed-8239-0242ac110002', '133', '2022-10-18 22:31:59', '133', '2022-10-18 22:32:21', b'0', 0);
INSERT INTO `bpm_task_ext`(`id`, `assignee_user_id`, `name`, `task_id`, `result`, `comment`, `end_time`, `process_instance_id`, `process_definition_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (10, 115, '部门经理审核', 'e4141688-4ef1-11ed-8dac-02420a0a0033', 2, '88', '2022-10-18 22:34:19', 'e413a150-4ef1-11ed-8dac-02420a0a0033', 'unload_container:2:d67155c9-1e1d-11ed-a23f-0242ac110002', '133', '2022-10-18 22:33:54', '115', '2022-10-18 22:34:19', b'0', 0);
INSERT INTO `bpm_task_ext`(`id`, `assignee_user_id`, `name`, `task_id`, `result`, `comment`, `end_time`, `process_instance_id`, `process_definition_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (11, 1, '部门经理审核', '4ef3f7a3-4efc-11ed-8dac-02420a0a0033', 2, '11', '2022-10-18 23:48:38', '4ef3826b-4efc-11ed-8dac-02420a0a0033', 'cancel_goods:2:7fc9c06c-3a7b-11ed-bc36-0242ac110002', '1', '2022-10-18 23:48:28', '1', '2022-10-18 23:48:38', b'0', 0);
INSERT INTO `bpm_task_ext`(`id`, `assignee_user_id`, `name`, `task_id`, `result`, `comment`, `end_time`, `process_instance_id`, `process_definition_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (12, 1, '部门经理审核', '7bd38724-4f88-11ed-a125-02420a0a0033', 2, '11', '2022-10-19 16:32:01', '7bc8d8bc-4f88-11ed-a125-02420a0a0033', 'shipment_preassemble:4:6026b2d1-4add-11ed-bd76-0242ac110002', '1', '2022-10-19 16:31:53', '1', '2022-10-19 16:32:01', b'0', 0);
INSERT INTO `bpm_task_ext`(`id`, `assignee_user_id`, `name`, `task_id`, `result`, `comment`, `end_time`, `process_instance_id`, `process_definition_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (13, 1, '部门经理审核', 'a82affbf-4f88-11ed-a125-02420a0a0033', 2, '111', '2022-10-19 16:33:12', 'a82a1557-4f88-11ed-a125-02420a0a0033', 'shipment_split_order:4:9ada1224-4afc-11ed-ba95-0242ac110002', '1', '2022-10-19 16:33:07', '1', '2022-10-19 16:33:13', b'0', 0);
INSERT INTO `bpm_task_ext`(`id`, `assignee_user_id`, `name`, `task_id`, `result`, `comment`, `end_time`, `process_instance_id`, `process_definition_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (14, 115, '部门经理审核', '870ab8ba-4fa8-11ed-a125-02420a0a0033', 2, '1', '2022-10-19 20:21:23', '870a1c72-4fa8-11ed-a125-02420a0a0033', 'shipment_preassemble:4:6026b2d1-4add-11ed-bd76-0242ac110002', '115', '2022-10-19 20:21:16', '115', '2022-10-19 20:21:23', b'0', 0);
INSERT INTO `bpm_task_ext`(`id`, `assignee_user_id`, `name`, `task_id`, `result`, `comment`, `end_time`, `process_instance_id`, `process_definition_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (15, 115, '部门经理审核', 'b17876e9-4faa-11ed-87a3-02420a0a0032', 2, '11', '2022-10-19 20:36:57', 'b170d5c1-4faa-11ed-87a3-02420a0a0032', 'close_container:3:3adae5b8-4adf-11ed-8239-0242ac110002', '115', '2022-10-19 20:36:46', '115', '2022-10-19 20:36:57', b'0', 0);
INSERT INTO `bpm_task_ext`(`id`, `assignee_user_id`, `name`, `task_id`, `result`, `comment`, `end_time`, `process_instance_id`, `process_definition_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (16, 115, '部门经理审核', 'd94a6764-4faa-11ed-87a3-02420a0a0032', 2, '1', '2022-10-19 20:37:58', 'd949cb1c-4faa-11ed-87a3-02420a0a0032', 'shipment_preassemble:4:6026b2d1-4add-11ed-bd76-0242ac110002', '115', '2022-10-19 20:37:53', '115', '2022-10-19 20:37:58', b'0', 0);
INSERT INTO `bpm_task_ext`(`id`, `assignee_user_id`, `name`, `task_id`, `result`, `comment`, `end_time`, `process_instance_id`, `process_definition_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (17, 115, '部门经理审核', 'f17fe9c9-4faa-11ed-a125-02420a0a0033', 2, '1', '2022-10-19 20:38:40', 'f17f4d81-4faa-11ed-a125-02420a0a0033', 'close_container:3:3adae5b8-4adf-11ed-8239-0242ac110002', '115', '2022-10-19 20:38:33', '115', '2022-10-19 20:38:40', b'0', 0);
INSERT INTO `bpm_task_ext`(`id`, `assignee_user_id`, `name`, `task_id`, `result`, `comment`, `end_time`, `process_instance_id`, `process_definition_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (18, 115, '部门经理审核', '2a425498-4fad-11ed-a125-02420a0a0033', 2, '1', '2022-10-19 20:54:33', '2a414320-4fad-11ed-a125-02420a0a0033', 'shipment_preassemble:4:6026b2d1-4add-11ed-bd76-0242ac110002', '115', '2022-10-19 20:54:28', '115', '2022-10-19 20:54:33', b'0', 0);
INSERT INTO `bpm_user_group`(`id`, `name`, `description`, `member_user_ids`, `status`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (110, '测试组', '哈哈哈哈', '[1]', 0, '1', '2022-01-14 13:54:13', '1', '2022-02-19 17:29:39', b'0', 1);
INSERT INTO `bpm_user_group`(`id`, `name`, `description`, `member_user_ids`, `status`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (111, '中层管理组', '用于中层管理审核', '[114,115,116,117,118,119,120,121,122,123,125]', 0, '115', '2022-05-19 09:39:05', '115', '2022-08-30 16:19:19', b'0', 0);
INSERT INTO `bpm_user_group`(`id`, `name`, `description`, `member_user_ids`, `status`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (112, '高层管理组', '用于高层管理审核', '[1,104,114,115,116,117,118,119,120,121,122,123,124]', 0, '115', '2022-05-19 09:39:21', '115', '2022-08-30 16:19:15', b'0', 0);
INSERT INTO `bpm_user_group`(`id`, `name`, `description`, `member_user_ids`, `status`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (113, 'assigneeList', 'assignee', '[118]', 0, '1', '2022-06-06 14:06:50', '1', '2022-06-06 17:26:52', b'1', 0);
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
truncate table ecw_dock;
INSERT INTO `ecw_dock` (`id`, `title_zh`, `title_en`, `sort`, `source`, `country_id`, `country_zh`, `country_en`, `province_id`, `province_zh`, `province_en`, `city_id`, `city_zh`, `city_en`, `port_type`, `number`, `type`, `status`, `creator`, `create_time`, `updater`, `update_time`, `deleted`) VALUES (4, '黄埔', 'huangpu', 99, 'pc', 130, '中国', 'China', 149, '广东省', 'Guangdong', 360, '广州市', 'Guangzhou', '2', '1', '1', 0, '1', '2022-10-11 09:33:45', '1', '2022-10-11 10:39:43', b'0');
INSERT INTO `ecw_dock` (`id`, `title_zh`, `title_en`, `sort`, `source`, `country_id`, `country_zh`, `country_en`, `province_id`, `province_zh`, `province_en`, `city_id`, `city_zh`, `city_en`, `port_type`, `number`, `type`, `status`, `creator`, `create_time`, `updater`, `update_time`, `deleted`) VALUES (5, 'APAPA', 'apapa', 99, 'pc', 4174, '尼日利亚', 'Nigeria', 4179, '拉各斯(尼日利亚)', 'Lagso', 4181, '拉各斯(尼日利亚)', 'Lagos', '2', '2', '1', 0, '1', '2022-10-11 09:33:45', '1', '2022-10-11 10:39:43', b'0');
INSERT INTO `ecw_dock` (`id`, `title_zh`, `title_en`, `sort`, `source`, `country_id`, `country_zh`, `country_en`, `province_id`, `province_zh`, `province_en`, `city_id`, `city_zh`, `city_en`, `port_type`, `number`, `type`, `status`, `creator`, `create_time`, `updater`, `update_time`, `deleted`) VALUES (6, '南沙', '南沙', 99, 'pc', 130, '中国', 'China', 149, '广东省', 'Guangdong', 360, '广州市', 'Guangzhou', '2', '3', '1', 0, '1', '2022-10-11 09:33:45', '1', '2022-10-11 10:39:43', b'0');
INSERT INTO `ecw_dock` (`id`, `title_zh`, `title_en`, `sort`, `source`, `country_id`, `country_zh`, `country_en`, `province_id`, `province_zh`, `province_en`, `city_id`, `city_zh`, `city_en`, `port_type`, `number`, `type`, `status`, `creator`, `create_time`, `updater`, `update_time`, `deleted`) VALUES (7, 'ONNE', 'ONNE', 99, 'pc', 4174, '尼日利亚', 'Nigeria', 4180, '奥尼查(尼日利亚)', 'Onitsha', 4182, '奥尼查(尼日利亚)', 'Onitsha', '2', '4', '1', 0, '1', '2022-10-11 09:33:45', '1', '2022-10-11 10:39:43', b'0');
INSERT INTO `ecw_dock` (`id`, `title_zh`, `title_en`, `sort`, `source`, `country_id`, `country_zh`, `country_en`, `province_id`, `province_zh`, `province_en`, `city_id`, `city_zh`, `city_en`, `port_type`, `number`, `type`, `status`, `creator`, `create_time`, `updater`, `update_time`, `deleted`) VALUES (8, 'Tema', 'Tema', 99, 'pc', 4175, '加纳', 'Ghana', 4183, '首都', 'Acrra', 4184, '阿克拉(加纳)', 'Accra', '2', '5', '1', 0, '1', '2022-10-11 09:33:45', '1', '2022-10-11 10:39:43', b'0');
INSERT INTO `ecw_dock` (`id`, `title_zh`, `title_en`, `sort`, `source`, `country_id`, `country_zh`, `country_en`, `province_id`, `province_zh`, `province_en`, `city_id`, `city_zh`, `city_en`, `port_type`, `number`, `type`, `status`, `creator`, `create_time`, `updater`, `update_time`, `deleted`) VALUES (9, '宁波', 'ningbo', 99, 'pc', 130, '中国', 'China', 141, '浙江省', 'Zhejiang', 4173, '义乌市', 'Yiwu', '2', '6', '1', 0, '1', '2022-10-11 09:33:45', '1', '2022-10-11 10:39:43', b'0');
INSERT INTO `ecw_dock` (`id`, `title_zh`, `title_en`, `sort`, `source`, `country_id`, `country_zh`, `country_en`, `province_id`, `province_zh`, `province_en`, `city_id`, `city_zh`, `city_en`, `port_type`, `number`, `type`, `status`, `creator`, `create_time`, `updater`, `update_time`, `deleted`) VALUES (10, 'TINCAN', 'TINCAN', 99, 'pc', 4174, '尼日利亚', 'Nigeria', 4179, '拉各斯(尼日利亚)', 'Lagso', 4181, '拉各斯(尼日利亚)', 'Lagos', '2', '7', '1', 0, '1', '2022-10-11 09:33:45', '1', '2022-10-11 10:39:43', b'0');
INSERT INTO `ecw_dock` (`id`, `title_zh`, `title_en`, `sort`, `source`, `country_id`, `country_zh`, `country_en`, `province_id`, `province_zh`, `province_en`, `city_id`, `city_zh`, `city_en`, `port_type`, `number`, `type`, `status`, `creator`, `create_time`, `updater`, `update_time`, `deleted`) VALUES (11, '蛇口', 'shekou', 99, 'pc', 130, '中国', 'China', 149, '广东省', 'Guangdong', 360, '广州市', 'Guangzhou', '2', '8', '1', 0, '1', '2022-10-11 09:33:45', '1', '2022-10-11 10:39:43', b'0');
INSERT INTO `ecw_dock` (`id`, `title_zh`, `title_en`, `sort`, `source`, `country_id`, `country_zh`, `country_en`, `province_id`, `province_zh`, `province_en`, `city_id`, `city_zh`, `city_en`, `port_type`, `number`, `type`, `status`, `creator`, `create_time`, `updater`, `update_time`, `deleted`) VALUES (12, '上海', 'Shanghai', 99, 'pc', 130, '中国', 'China', 149, '广东省', 'Guangdong', 360, '广州市', 'Guangzhou', '2', '9', '1', 0, '1', '2022-10-11 09:33:45', '1', '2022-10-11 10:39:43', b'0');
-- INSERT into ecw_dock(id,title_zh,title_en,sort,source,country_id, country_zh, country_en, province_id, province_zh, province_en,
-- city_id, city_zh, city_en, number, type,port_type,creator,updater) SELECT id, title_zh, title_en, sort,source,country_id, country_zh, country_en, province_id, province_zh,province_en,city_id, city_zh, city_en, number, type,2,1,1 from jidedao_old.ecw_dock;
--
-- update ecw_dock set zhou=115 where zhou=1;
-- update ecw_dock set zhou=116 where zhou=3;
--
-- update ecw_dock set country_id=130 where country_id=8;
-- update ecw_dock set country_id=4174 where country_id=16;
-- update ecw_dock set country_id=4175 where country_id=21;
-- update ecw_dock set country_id=4176 where country_id=26;
-- update ecw_dock set country_id=4177 where country_id=29;
-- update ecw_dock set country_id=4178 where country_id=33;
-- update ecw_dock set country_id=4191 where country_id=44;
--
-- update ecw_dock set province_id=149 where province_id=9;
-- update ecw_dock set province_id=141 where province_id=12;
-- update ecw_dock set province_id=4179 where province_id=17;
-- update ecw_dock set province_id=4180 where province_id=24;
-- update ecw_dock set province_id=4183 where province_id=22;
-- update ecw_dock set province_id=4185 where province_id=27;
-- update ecw_dock set province_id=4194 where province_id=36;
-- update ecw_dock set province_id=4196 where province_id=37;
-- update ecw_dock set province_id=4198 where province_id=38;
-- update ecw_dock set province_id=4200 where province_id=39;
-- update ecw_dock set province_id=4187 where province_id=30;
-- update ecw_dock set province_id=4189 where province_id=34;
-- update ecw_dock set province_id=4192 where province_id=45;
--
-- update ecw_dock set city_id=4173 where city_id=14;
-- update ecw_dock set city_id=360 where city_id=10;
-- update ecw_dock set city_id=4181 where city_id=18;
-- update ecw_dock set city_id=4184 where city_id=23;
-- update ecw_dock set city_id=4182 where city_id=25;
-- update ecw_dock set city_id=4186 where city_id=28;
-- update ecw_dock set city_id=4188 where city_id=31;
-- update ecw_dock set city_id=4190 where city_id=35;
-- update ecw_dock set city_id=4195 where city_id=40;
-- update ecw_dock set city_id=4197 where city_id=41;
-- update ecw_dock set city_id=4199 where city_id=42;
-- update ecw_dock set city_id=4201 where city_id=43;
-- update ecw_dock set city_id=4193 where city_id=46;
\ No newline at end of file
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
truncate table ecw_product_attr;
INSERT INTO `ecw_product_attr` VALUES (1, '特殊物品', NULL, 'A', '', 1, 0, '1', '2022-10-07 13:29:18', '1', '2022-10-07 13:32:05', b'0');
INSERT INTO `ecw_product_attr` VALUES (2, '普货', NULL, 'B', '', 1, 0, '1', '2022-10-07 13:29:18', '1', '2022-10-07 13:32:05', b'0');
INSERT INTO `ecw_product_attr` VALUES (3, '纯电', NULL, 'C', '需上传保函/证书', 1, 0, '1', '2022-10-07 13:29:18', '1', '2022-10-07 13:32:05', b'0');
INSERT INTO `ecw_product_attr` VALUES (4, '不接受货物', NULL, 'D', '', 1, 0, '1', '2022-10-07 13:29:18', '1', '2022-10-07 13:32:05', b'0');
INSERT INTO `ecw_product_attr` VALUES (5, '预付类', NULL, 'E', '', 1, 0, '1', '2022-10-07 13:29:18', '1', '2022-10-07 13:32:05', b'0');
INSERT INTO `ecw_product_attr` VALUES (6, '全包价', NULL, 'F', '', 1, 0, '1', '2022-10-07 13:29:18', '1', '2022-10-07 13:32:05', b'0');
INSERT INTO `ecw_product_attr` VALUES (7, '测试', NULL, 'H', '', 1, 1, '1', '2022-10-07 13:29:18', '1', '2022-10-07 13:32:05', b'0');
INSERT INTO `ecw_product_attr` VALUES (8, '包装类', NULL, 'I', '', 1, 0, '1', '2022-10-07 13:29:18', '1', '2022-10-07 13:32:05', b'0');
truncate table ecw_product_type;
INSERT INTO `ecw_product_type` VALUES (1, '手机配件', 'phone accessories', 1, 0, '1', '2022-10-07 13:19:15', '1', '2022-10-07 13:19:59', b'0');
INSERT INTO `ecw_product_type` VALUES (3, '家具', 'FURNITURES', 2, 0, '1', '2022-10-07 13:19:15', '1', '2022-10-07 13:19:59', b'0');
INSERT INTO `ecw_product_type` VALUES (5, '电子产品', 'Elections', 3, 0, '1', '2022-10-07 13:19:15', '1', '2022-10-07 13:19:59', b'0');
INSERT INTO `ecw_product_type` VALUES (7, '家用电器', 'household appliances', 4, 0, '1', '2022-10-07 13:19:15', '1', '2022-10-07 13:19:59', b'0');
INSERT INTO `ecw_product_type` VALUES (9, '五金工具', 'hardware&amp;tools', 5, 0, '1', '2022-10-07 13:19:15', '1', '2022-10-07 13:19:59', b'0');
INSERT INTO `ecw_product_type` VALUES (10, '医疗用品&amp;设备', 'Medical products&amp;equipment', 6, 0, '1', '2022-10-07 13:19:15', '1', '2022-10-07 13:19:59', b'0');
INSERT INTO `ecw_product_type` VALUES (11, '车辆及配件', 'Auto and parts', 11, 0, '1', '2022-10-07 13:19:15', '1', '2022-10-07 13:19:59', b'0');
INSERT INTO `ecw_product_type` VALUES (12, '建筑与装修材料', 'Building &amp; Decoration Materials', 8, 0, '1', '2022-10-07 13:19:15', '1', '2022-10-07 13:19:59', b'0');
INSERT INTO `ecw_product_type` VALUES (13, '塑料制品', 'Plastic product', 9, 0, '1', '2022-10-07 13:19:15', '1', '2022-10-07 13:19:59', b'0');
INSERT INTO `ecw_product_type` VALUES (15, '木制品', 'Wood product', 11, 0, '1', '2022-10-07 13:19:15', '1', '2022-10-07 13:19:59', b'0');
INSERT INTO `ecw_product_type` VALUES (16, '纺织品', 'Textile', 12, 0, '1', '2022-10-07 13:19:15', '1', '2022-10-07 13:19:59', b'0');
INSERT INTO `ecw_product_type` VALUES (18, '机械设备', 'Machinery &amp; equipment', 13, 0, '1', '2022-10-07 13:19:15', '1', '2022-10-07 13:19:59', b'0');
INSERT INTO `ecw_product_type` VALUES (19, '饰品/首饰配件', 'Jewelry Accessories', 14, 0, '1', '2022-10-07 13:19:15', '1', '2022-10-07 13:19:59', b'0');
INSERT INTO `ecw_product_type` VALUES (20, '办公用品', 'Office Supplies', 15, 0, '1', '2022-10-07 13:19:15', '1', '2022-10-07 13:19:59', b'0');
INSERT INTO `ecw_product_type` VALUES (22, '工业用品', 'Industrial products', 17, 0, '1', '2022-10-07 13:19:15', '1', '2022-10-07 13:19:59', b'0');
INSERT INTO `ecw_product_type` VALUES (23, '美妆用品', 'Beauty Cosmetics', 16, 0, '1', '2022-10-07 13:19:15', '1', '2022-10-07 13:19:59', b'0');
INSERT INTO `ecw_product_type` VALUES (25, '日用品', 'Daily Necessities', 18, 0, '1', '2022-10-07 13:19:15', '1', '2022-10-07 13:19:59', b'0');
INSERT INTO `ecw_product_type` VALUES (26, '文娱用品', 'Entertainment supplies', 19, 0, '1', '2022-10-07 13:19:15', '1', '2022-10-07 13:19:59', b'0');
INSERT INTO `ecw_product_type` VALUES (27, '化学用品', 'Chemical Supplies', 21, 0, '1', '2022-10-07 13:19:15', '1', '2022-10-07 13:19:59', b'0');
INSERT INTO `ecw_product_type` VALUES (31, '食品类', 'Food products', 20, 0, '1', '2022-10-07 13:19:15', '1', '2022-10-07 13:19:59', b'0');
INSERT INTO `ecw_product_type` VALUES (34, '灯光与照明', 'Lights &amp; Lighting', 22, 0, '1', '2022-10-07 13:19:15', '1', '2022-10-07 13:19:59', b'0');
INSERT INTO `ecw_product_type` VALUES (41, '礼品及工艺品', 'Gifts &amp; Crafts', 23, 0, '1', '2022-10-07 13:19:15', '1', '2022-10-07 13:19:59', b'0');
INSERT INTO `ecw_product_type` VALUES (58, '包装材料', 'Packaging Materials', 24, 0, '1', '2022-10-07 13:19:15', '1', '2022-10-07 13:19:59', b'0');
INSERT INTO `ecw_product_type` VALUES (59, '箱包', 'Bags &amp; Luggage', 25, 0, '1', '2022-10-07 13:19:15', '1', '2022-10-07 13:19:59', b'0');
INSERT INTO `ecw_product_type` VALUES (60, '家居用品', 'Household Supplies', 10, 0, '1', '2022-10-07 13:19:15', '1', '2022-10-07 13:19:59', b'0');
INSERT INTO `ecw_product_type` VALUES (61, '食品机械', 'Food Machinery', 26, 0, '1', '2022-10-07 13:19:15', '1', '2022-10-07 13:19:59', b'0');
INSERT INTO `ecw_product_type` VALUES (62, '不承接清单', 'Non-acceptance list', 27, 0, '1', '2022-10-07 13:19:15', '1', '2022-10-07 13:19:59', b'0');
truncate table ecw_warehouse;
INSERT INTO `ecw_warehouse` (`id`, `pid`, `node_id`, `type`, `number`, `qianzhui`, `title_zh`, `title_en`, `volume`, `address_zh`, `address_en`, `zhou`, `guojia`, `sheng`, `shi`, `head`, `tell`, `trade_type`, `freight`, `img`, `remark`, `sort`, `status`, `creator`, `create_time`, `updater`, `update_time`, `deleted`) VALUES (1, 1, 1, 1, 'ECCBW0001', 'CNG', '广州仓', 'Guangzhou', '500', '广州市白云区鹤边鹤泰二横路明通院内第一栋捷道仓库E&amp;C(可导航明通重型物流集团)(收货时间周一至周六 10:00-19:30)', 'Hebian,Baiyun District, Guangzhou, Guangdong, China.', 115, 130, 149, 360, '林先生', '13560324154/02036383537', '2', '1,2,3,4', '', '', 1, 0, '115', '2022-09-29 16:22:31', '115', '2022-09-29 16:26:26', b'0');
INSERT INTO `ecw_warehouse` (`id`, `pid`, `node_id`, `type`, `number`, `qianzhui`, `title_zh`, `title_en`, `volume`, `address_zh`, `address_en`, `zhou`, `guojia`, `sheng`, `shi`, `head`, `tell`, `trade_type`, `freight`, `img`, `remark`, `sort`, `status`, `creator`, `create_time`, `updater`, `update_time`, `deleted`) VALUES (2, 2, 2, 1, 'ECNBW001', '', 'Alaba', 'Alaba ', '1400', 'Alaba', 'Alaba', 116, 4174, 4179, 4181, 'Jerry ', '07013313537', '1', '1,2,3,4', '', '', 1, 0, '115', '2022-09-29 16:22:31', '115', '2022-09-29 16:26:36', b'0');
INSERT INTO `ecw_warehouse` (`id`, `pid`, `node_id`, `type`, `number`, `qianzhui`, `title_zh`, `title_en`, `volume`, `address_zh`, `address_en`, `zhou`, `guojia`, `sheng`, `shi`, `head`, `tell`, `trade_type`, `freight`, `img`, `remark`, `sort`, `status`, `creator`, `create_time`, `updater`, `update_time`, `deleted`) VALUES (3, 3, 3, 1, 'ECCW002', 'CNY', '义乌仓', 'Yiwu', '220', '浙江省义乌市机场路633号园区一号楼(靠近景三路这栋楼)捷道仓库', 'Yiwu,Zhejiang Province, China', 115, 130, 141, 4173, 'Kevin', '18266918809', '2', '1,2,3,4', '', '', 1, 0, '115', '2022-09-29 16:22:31', '115', '2022-09-29 16:26:43', b'0');
INSERT INTO `ecw_warehouse` (`id`, `pid`, `node_id`, `type`, `number`, `qianzhui`, `title_zh`, `title_en`, `volume`, `address_zh`, `address_en`, `zhou`, `guojia`, `sheng`, `shi`, `head`, `tell`, `trade_type`, `freight`, `img`, `remark`, `sort`, `status`, `creator`, `create_time`, `updater`, `update_time`, `deleted`) VALUES (4, 4, 4, 1, 'ECNW002', '', 'Tradefair', 'Tradefair', '', 'Trade fair', 'Trade fair Lagos Nigeria', 116, 4174, 4179, 4181, 'Anna ', '', '1', '1,2,3,4', '', '', 1, 0, '115', '2022-09-29 16:22:31', '115', '2022-09-29 16:26:55', b'0');
INSERT INTO `ecw_warehouse` (`id`, `pid`, `node_id`, `type`, `number`, `qianzhui`, `title_zh`, `title_en`, `volume`, `address_zh`, `address_en`, `zhou`, `guojia`, `sheng`, `shi`, `head`, `tell`, `trade_type`, `freight`, `img`, `remark`, `sort`, `status`, `creator`, `create_time`, `updater`, `update_time`, `deleted`) VALUES (5, 5, 5, 1, 'ECNW003', '', 'Lagos Island', 'Lagos Island', '100', 'Lagos Island', 'Lagos Island Market,Lagos, Nigeria', 116, 4174, 4179, 4181, 'Shedy Okpara ', '09025168630', '1', '1,2,3,4', '', '', 1, 0, '115', '2022-09-29 16:22:31', '115', '2022-09-29 16:27:03', b'0');
INSERT INTO `ecw_warehouse` (`id`, `pid`, `node_id`, `type`, `number`, `qianzhui`, `title_zh`, `title_en`, `volume`, `address_zh`, `address_en`, `zhou`, `guojia`, `sheng`, `shi`, `head`, `tell`, `trade_type`, `freight`, `img`, `remark`, `sort`, `status`, `creator`, `create_time`, `updater`, `update_time`, `deleted`) VALUES (6, 6, 6, 1, 'ECNW004', '', 'Oshodi', 'Oshodi', '50', 'Oshodi', 'nearby computer village, Ikeja, Lagos, Nigeria ', 116, 4174, 4179, 4181, 'Nkechi ', '09023977762', '1', '1,2,3,4', '', '', 1, 0, '115', '2022-09-29 16:22:31', '115', '2022-09-29 16:27:14', b'0');
INSERT INTO `ecw_warehouse` (`id`, `pid`, `node_id`, `type`, `number`, `qianzhui`, `title_zh`, `title_en`, `volume`, `address_zh`, `address_en`, `zhou`, `guojia`, `sheng`, `shi`, `head`, `tell`, `trade_type`, `freight`, `img`, `remark`, `sort`, `status`, `creator`, `create_time`, `updater`, `update_time`, `deleted`) VALUES (7, 2, 6, 1, '007', '', '007', '007', '', '', '', 116, 4174, 4179, 4181, '', '', '1', '', '', '', 11, 1, '115', '2022-09-29 16:22:31', '115', '2022-09-29 16:27:33', b'0');
INSERT INTO `ecw_warehouse` (`id`, `pid`, `node_id`, `type`, `number`, `qianzhui`, `title_zh`, `title_en`, `volume`, `address_zh`, `address_en`, `zhou`, `guojia`, `sheng`, `shi`, `head`, `tell`, `trade_type`, `freight`, `img`, `remark`, `sort`, `status`, `creator`, `create_time`, `updater`, `update_time`, `deleted`) VALUES (8, 7, 7, 1, 'ECGW001', '', 'Accra', 'Accra', '', 'Accra', '', 116, 4175, 4183, 4184, 'Henry', '+233540444012', '1', '1,2,3,4', '', '', 1, 0, '115', '2022-09-29 16:22:31', '115', '2022-09-29 16:27:56', b'0');
INSERT INTO `ecw_warehouse` (`id`, `pid`, `node_id`, `type`, `number`, `qianzhui`, `title_zh`, `title_en`, `volume`, `address_zh`, `address_en`, `zhou`, `guojia`, `sheng`, `shi`, `head`, `tell`, `trade_type`, `freight`, `img`, `remark`, `sort`, `status`, `creator`, `create_time`, `updater`, `update_time`, `deleted`) VALUES (10, 8, 8, 1, 'ECNW005', '', 'Onitsha', 'Onitsha', '', 'Onitsha', '', 116, 4174, 4180, 4182, '', '', '1', '1,2,3,4', '', '', 9, 0, '115', '2022-09-29 16:22:31', '115', '2022-09-29 16:28:08', b'0');
INSERT INTO `ecw_warehouse` (`id`, `pid`, `node_id`, `type`, `number`, `qianzhui`, `title_zh`, `title_en`, `volume`, `address_zh`, `address_en`, `zhou`, `guojia`, `sheng`, `shi`, `head`, `tell`, `trade_type`, `freight`, `img`, `remark`, `sort`, `status`, `creator`, `create_time`, `updater`, `update_time`, `deleted`) VALUES (11, 9, 9, 1, 'ECMW001', '', 'Maputo', 'Maputo', '', 'Maputo', '', 116, 4176, 4185, 4186, '', '', '1', '1,2,3,4', '', '', 1, 0, '115', '2022-09-29 16:22:31', '115', '2022-09-29 16:28:17', b'0');
INSERT INTO `ecw_warehouse` (`id`, `pid`, `node_id`, `type`, `number`, `qianzhui`, `title_zh`, `title_en`, `volume`, `address_zh`, `address_en`, `zhou`, `guojia`, `sheng`, `shi`, `head`, `tell`, `trade_type`, `freight`, `img`, `remark`, `sort`, `status`, `creator`, `create_time`, `updater`, `update_time`, `deleted`) VALUES (12, 10, 10, 1, 'ECKBW001', '', 'Nairobi', 'Nairobi', '', 'Nairobi', '', 116, 4177, 4187, 4188, '', '', '1', '1,2,3,4', '', '', 1, 0, '115', '2022-09-29 16:22:32', '115', '2022-09-29 16:28:27', b'0');
INSERT INTO `ecw_warehouse` (`id`, `pid`, `node_id`, `type`, `number`, `qianzhui`, `title_zh`, `title_en`, `volume`, `address_zh`, `address_en`, `zhou`, `guojia`, `sheng`, `shi`, `head`, `tell`, `trade_type`, `freight`, `img`, `remark`, `sort`, `status`, `creator`, `create_time`, `updater`, `update_time`, `deleted`) VALUES (13, 11, 11, 1, 'ECNW006', '', 'X', 'X', '', 'X', '', 116, 4174, 4179, 4181, '', '', '1', '1', '', '', 10, 1, '115', '2022-09-29 16:22:32', '115', '2022-09-29 16:31:45', b'0');
INSERT INTO `ecw_warehouse` (`id`, `pid`, `node_id`, `type`, `number`, `qianzhui`, `title_zh`, `title_en`, `volume`, `address_zh`, `address_en`, `zhou`, `guojia`, `sheng`, `shi`, `head`, `tell`, `trade_type`, `freight`, `img`, `remark`, `sort`, `status`, `creator`, `create_time`, `updater`, `update_time`, `deleted`) VALUES (14, 12, 12, 1, 'ECWD001', '', 'Dubai', 'Dubai', '', '', '', 116, 4178, 4189, 4190, '', '', '1', '1', '', '', 1, 0, '115', '2022-09-29 16:22:32', '115', '2022-09-29 16:31:59', b'0');
INSERT INTO `ecw_warehouse` (`id`, `pid`, `node_id`, `type`, `number`, `qianzhui`, `title_zh`, `title_en`, `volume`, `address_zh`, `address_en`, `zhou`, `guojia`, `sheng`, `shi`, `head`, `tell`, `trade_type`, `freight`, `img`, `remark`, `sort`, `status`, `creator`, `create_time`, `updater`, `update_time`, `deleted`) VALUES (15, 9, 9, 1, 'ECMW002', '', 'Beira', 'Beira', '', 'Beira', 'Beira', 116, 4176, 4194, 4195, '', '', '1', '1', '', '', 2, 0, '115', '2022-09-29 16:22:32', '115', '2022-09-29 16:38:17', b'0');
INSERT INTO `ecw_warehouse` (`id`, `pid`, `node_id`, `type`, `number`, `qianzhui`, `title_zh`, `title_en`, `volume`, `address_zh`, `address_en`, `zhou`, `guojia`, `sheng`, `shi`, `head`, `tell`, `trade_type`, `freight`, `img`, `remark`, `sort`, `status`, `creator`, `create_time`, `updater`, `update_time`, `deleted`) VALUES (16, 9, 9, 1, 'ECMW003', '', 'Chimoio', 'Chimoio', '', 'Chimoio', 'Chimoio', 116, 4176, 4196, 4197, '', '', '1', '1', '', '', 3, 0, '115', '2022-09-29 16:22:32', '115', '2022-09-29 16:38:28', b'0');
INSERT INTO `ecw_warehouse` (`id`, `pid`, `node_id`, `type`, `number`, `qianzhui`, `title_zh`, `title_en`, `volume`, `address_zh`, `address_en`, `zhou`, `guojia`, `sheng`, `shi`, `head`, `tell`, `trade_type`, `freight`, `img`, `remark`, `sort`, `status`, `creator`, `create_time`, `updater`, `update_time`, `deleted`) VALUES (17, 9, 9, 1, 'ECMW004', '', 'Quelimane', 'Quelimane', '', 'Quelimane', 'Quelimane', 116, 4176, 4198, 4199, '', '', '1', '1', '', '', 4, 0, '115', '2022-09-29 16:22:32', '115', '2022-09-29 16:38:32', b'0');
INSERT INTO `ecw_warehouse` (`id`, `pid`, `node_id`, `type`, `number`, `qianzhui`, `title_zh`, `title_en`, `volume`, `address_zh`, `address_en`, `zhou`, `guojia`, `sheng`, `shi`, `head`, `tell`, `trade_type`, `freight`, `img`, `remark`, `sort`, `status`, `creator`, `create_time`, `updater`, `update_time`, `deleted`) VALUES (18, 9, 9, 1, 'ECMW005', '', 'Nampula', 'Nampula', '', 'Nampula', 'Nampula', 116, 4176, 4200, 4201, '', '', '1', '1', '', '', 5, 0, '115', '2022-09-29 16:22:32', '115', '2022-09-29 16:38:36', b'0');
INSERT INTO `ecw_warehouse` (`id`, `pid`, `node_id`, `type`, `number`, `qianzhui`, `title_zh`, `title_en`, `volume`, `address_zh`, `address_en`, `zhou`, `guojia`, `sheng`, `shi`, `head`, `tell`, `trade_type`, `freight`, `img`, `remark`, `sort`, `status`, `creator`, `create_time`, `updater`, `update_time`, `deleted`) VALUES (19, 13, 13, 1, 'ECCW001', '', 'Abidjan', 'Abidjan', '', '', '', 116, 4191, 4192, 4193, '', '', '1', '1', '', '', 1, 0, '115', '2022-09-29 16:22:32', '115', '2022-09-29 16:32:31', b'0');
truncate table ecw_warehouse_area;
INSERT INTO `ecw_warehouse_area` VALUES (1, 1, 'A', 'A', 0, 0, '1', '2022-10-06 13:26:44', '1', '2022-10-06 13:26:58', b'0');
INSERT INTO `ecw_warehouse_area` VALUES (2, 1, 'A', 'A', 1, 0, '1', '2022-10-06 13:26:44', '1', '2022-10-06 13:26:58', b'0');
INSERT INTO `ecw_warehouse_area` VALUES (3, 1, 'B', 'B', 1, 0, '1', '2022-10-06 13:26:44', '1', '2022-10-06 13:26:58', b'0');
INSERT INTO `ecw_warehouse_area` VALUES (4, 1, 'C', 'C', 1, 0, '1', '2022-10-06 13:26:44', '1', '2022-10-06 13:26:58', b'0');
INSERT INTO `ecw_warehouse_area` VALUES (5, 1, 'D', 'D', 1, 0, '1', '2022-10-06 13:26:44', '1', '2022-10-06 13:26:58', b'0');
INSERT INTO `ecw_warehouse_area` VALUES (6, 1, 'E', 'E', 1, 0, '1', '2022-10-06 13:26:44', '1', '2022-10-06 13:26:58', b'0');
INSERT INTO `ecw_warehouse_area` VALUES (7, 1, 'F', 'F', 1, 0, '1', '2022-10-06 13:26:44', '1', '2022-10-06 13:26:58', b'0');
INSERT INTO `ecw_warehouse_area` VALUES (8, 1, 'G', 'G', 1, 0, '1', '2022-10-06 13:26:44', '1', '2022-10-06 13:26:58', b'0');
INSERT INTO `ecw_warehouse_area` VALUES (9, 1, 'B', 'B', 0, 0, '1', '2022-10-06 13:26:44', '1', '2022-10-06 13:26:58', b'0');
INSERT INTO `ecw_warehouse_area` VALUES (11, 3, 'A', 'A', 0, 0, '1', '2022-10-06 13:26:44', '1', '2022-10-06 13:26:58', b'0');
INSERT INTO `ecw_warehouse_area` VALUES (12, 3, 'A', 'A', 11, 0, '1', '2022-10-06 13:26:44', '1', '2022-10-06 13:26:58', b'0');
INSERT INTO `ecw_warehouse_area` VALUES (13, 3, 'B', 'B', 11, 0, '1', '2022-10-06 13:26:44', '1', '2022-10-06 13:26:58', b'0');
INSERT INTO `ecw_warehouse_area` VALUES (14, 3, 'C', 'C', 11, 0, '1', '2022-10-06 13:26:44', '1', '2022-10-06 13:26:58', b'0');
INSERT INTO `ecw_warehouse_area` VALUES (17, 3, 'D', 'D', 11, 0, '1', '2022-10-06 13:26:44', '1', '2022-10-06 13:26:58', b'0');
INSERT INTO `ecw_warehouse_area` VALUES (18, 3, 'E', 'E', 11, 0, '1', '2022-10-06 13:26:44', '1', '2022-10-06 13:26:58', b'0');
INSERT INTO `ecw_warehouse_area` VALUES (19, 1, 'X', 'X', 9, 0, '1', '2022-10-06 13:26:44', '1', '2022-10-06 13:26:58', b'0');
This diff is collapsed.
truncate table ecw_warehouse_line;
INSERT INTO `ecw_warehouse_line` VALUES (1, 1, 2, '1', NULL, 0, '1', '2022-10-05 16:30:28', '1', '2022-10-05 16:30:41', b'0');
INSERT INTO `ecw_warehouse_line` VALUES (2, 1, 2, '3', NULL, 0, '1', '2022-10-05 16:31:47', '1', '2022-10-05 16:31:47', b'0');
INSERT INTO `ecw_warehouse_line` VALUES (3, 3, 2, '1', NULL, 0, '1', '2022-10-05 16:43:16', '1', '2022-10-05 16:43:16', b'0');
INSERT INTO `ecw_warehouse_line` VALUES (4, 3, 6, '1', NULL, 0, '1', '2022-10-05 16:43:42', '1', '2022-10-05 16:43:42', b'0');
INSERT INTO `ecw_warehouse_line` VALUES (5, 3, 10, '1', NULL, 0, '1', '2022-10-05 16:44:13', '1', '2022-10-05 16:44:13', b'0');
INSERT INTO `ecw_warehouse_line` VALUES (6, 1, 10, '1', NULL, 0, '1', '2022-10-05 16:45:08', '1', '2022-10-05 16:45:08', b'0');
INSERT INTO `ecw_warehouse_line` VALUES (7, 3, 10, '3', NULL, 0, '1', '2022-10-05 16:45:45', '1', '2022-10-05 16:45:45', b'0');
INSERT INTO `ecw_warehouse_line` VALUES (8, 1, 10, '3', NULL, 0, '1', '2022-10-05 16:46:17', '1', '2022-10-05 16:46:17', b'0');
INSERT INTO `ecw_warehouse_line` VALUES (9, 1, 6, '1', NULL, 0, '1', '2022-10-05 16:46:38', '1', '2022-10-05 16:46:38', b'0');
INSERT INTO `ecw_warehouse_line` VALUES (10, 4, 6, '1', NULL, 0, '1', '2022-10-05 16:46:56', '1', '2022-10-05 16:46:56', b'0');
INSERT INTO `ecw_warehouse_line` VALUES (11, 5, 6, '1', NULL, 0, '1', '2022-10-05 16:47:28', '1', '2022-10-05 16:47:28', b'0');
INSERT INTO `ecw_warehouse_line` VALUES (12, 1, 6, '3', NULL, 0, '1', '2022-10-05 16:47:47', '1', '2022-10-05 16:47:47', b'0');
INSERT INTO `ecw_warehouse_line` VALUES (13, 1, 5, '1', NULL, 0, '1', '2022-10-05 16:48:07', '1', '2022-10-05 16:48:07', b'0');
INSERT INTO `ecw_warehouse_line` VALUES (14, 1, 4, '1', NULL, 0, '1', '2022-10-05 16:48:24', '1', '2022-10-05 16:48:24', b'0');
INSERT INTO `ecw_warehouse_line` VALUES (15, 1, 5, '3', NULL, 0, '1', '2022-10-05 16:48:51', '1', '2022-10-05 16:48:51', b'0');
INSERT INTO `ecw_warehouse_line` VALUES (16, 1, 4, '3', NULL, 0, '1', '2022-10-05 16:49:08', '1', '2022-10-05 16:49:08', b'0');
INSERT INTO `ecw_warehouse_line` VALUES (17, 3, 5, '1', NULL, 0, '1', '2022-10-05 16:49:26', '1', '2022-10-05 16:49:26', b'0');
INSERT INTO `ecw_warehouse_line` VALUES (18, 3, 6, '3', NULL, 0, '1', '2022-10-05 16:49:50', '1', '2022-10-05 16:49:50', b'0');
INSERT INTO `ecw_warehouse_line` VALUES (19, 3, 5, '3', NULL, 0, '1', '2022-10-05 16:50:07', '1', '2022-10-05 16:50:07', b'0');
INSERT INTO `ecw_warehouse_line` VALUES (20, 3, 4, '3', NULL, 0, '1', '2022-10-05 16:50:25', '1', '2022-10-05 16:50:25', b'0');
INSERT INTO `ecw_warehouse_line` VALUES (21, 3, 2, '3', NULL, 0, '1', '2022-10-05 16:50:44', '1', '2022-10-05 16:50:44', b'0');
INSERT INTO `ecw_warehouse_line` VALUES (22, 3, 8, '3', NULL, 0, '1', '2022-10-05 16:51:05', '1', '2022-10-05 16:51:05', b'0');
INSERT INTO `ecw_warehouse_line` VALUES (23, 3, 2, '2', NULL, 0, '1', '2022-10-05 17:15:59', '1', '2022-10-05 17:15:59', b'0');
INSERT INTO `ecw_warehouse_line` VALUES (24, 1, 2, '2', NULL, 0, '1', '2022-10-05 17:16:22', '1', '2022-10-05 17:16:22', b'0');
INSERT INTO `ecw_warehouse_line` VALUES (25, 3, 12, '3', NULL, 0, '1', '2022-10-05 17:16:41', '1', '2022-10-05 17:16:41', b'0');
INSERT INTO `ecw_warehouse_line` VALUES (26, 1, 12, '3', NULL, 0, '1', '2022-10-05 17:16:55', '1', '2022-10-05 17:16:55', b'0');
INSERT INTO `ecw_warehouse_line` VALUES (27, 3, 11, '2', NULL, 0, '1', '2022-10-05 17:17:13', '1', '2022-10-05 17:17:13', b'0');
INSERT INTO `ecw_warehouse_line` VALUES (28, 1, 8, '3', NULL, 0, '1', '2022-10-05 17:17:33', '1', '2022-10-05 17:17:33', b'0');
INSERT INTO `ecw_warehouse_line` VALUES (29, 3, 8, '1', NULL, 0, '1', '2022-10-05 17:17:48', '1', '2022-10-05 17:17:48', b'0');
INSERT INTO `ecw_warehouse_line` VALUES (30, 3, 4, '1', NULL, 0, '1', '2022-10-05 17:18:04', '1', '2022-10-05 17:18:04', b'0');
INSERT INTO `ecw_warehouse_line` VALUES (31, 3, 12, '1', NULL, 0, '1', '2022-10-05 17:18:18', '1', '2022-10-05 17:18:18', b'0');
INSERT INTO `ecw_warehouse_line` VALUES (32, 1, 12, '1', NULL, 0, '1', '2022-10-05 17:18:32', '1', '2022-10-05 17:18:32', b'0');
INSERT INTO `ecw_warehouse_line` VALUES (33, 1, 5, '2', NULL, 0, '1', '2022-10-05 17:18:53', '1', '2022-10-05 17:18:53', b'0');
INSERT INTO `ecw_warehouse_line` VALUES (34, 3, 5, '2', NULL, 0, '1', '2022-10-05 17:19:08', '1', '2022-10-05 17:19:08', b'0');
INSERT INTO `ecw_warehouse_line` VALUES (35, 1, 8, '2', NULL, 0, '1', '2022-10-05 17:19:23', '1', '2022-10-05 17:19:23', b'0');
INSERT INTO `ecw_warehouse_line` VALUES (36, 3, 8, '2', NULL, 0, '1', '2022-10-05 17:19:32', '1', '2022-10-05 17:19:40', b'0');
INSERT INTO `ecw_warehouse_line` VALUES (37, 1, 6, '2', NULL, 0, '1', '2022-10-05 17:19:55', '1', '2022-10-05 17:19:55', b'0');
INSERT INTO `ecw_warehouse_line` VALUES (38, 3, 6, '2', NULL, 0, '1', '2022-10-05 17:20:10', '1', '2022-10-05 17:20:10', b'0');
INSERT INTO `ecw_warehouse_line` VALUES (39, 1, 4, '2', NULL, 0, '1', '2022-10-05 17:20:22', '1', '2022-10-05 17:20:22', b'0');
INSERT INTO `ecw_warehouse_line` VALUES (40, 3, 4, '2', NULL, 0, '1', '2022-10-05 17:20:35', '1', '2022-10-05 17:20:35', b'0');
INSERT INTO `ecw_warehouse_line` VALUES (41, 3, 12, '2', NULL, 0, '1', '2022-10-05 17:20:49', '1', '2022-10-05 17:20:49', b'0');
INSERT INTO `ecw_warehouse_line` VALUES (42, 3, 10, '2', NULL, 0, '1', '2022-10-05 17:21:03', '1', '2022-10-05 17:21:03', b'0');
INSERT INTO `ecw_warehouse_line` VALUES (43, 1, 10, '2', NULL, 0, '1', '2022-10-05 17:21:19', '1', '2022-10-05 17:21:19', b'0');
INSERT INTO `ecw_warehouse_line` VALUES (44, 1, 12, '2', NULL, 0, '1', '2022-10-05 17:21:41', '1', '2022-10-05 17:21:41', b'0');
INSERT INTO `ecw_warehouse_line` VALUES (45, 3, 12, '4', NULL, 0, '1', '2022-10-05 17:22:14', '1', '2022-10-05 17:22:14', b'0');
INSERT INTO `ecw_warehouse_line` VALUES (46, 3, 11, '4', NULL, 0, '1', '2022-10-05 17:22:26', '1', '2022-10-05 17:22:26', b'0');
INSERT INTO `ecw_warehouse_line` VALUES (47, 3, 8, '4', NULL, 0, '1', '2022-10-05 17:22:40', '1', '2022-10-05 17:22:40', b'0');
INSERT INTO `ecw_warehouse_line` VALUES (48, 3, 6, '4', NULL, 0, '1', '2022-10-05 17:22:53', '1', '2022-10-05 17:22:53', b'0');
INSERT INTO `ecw_warehouse_line` VALUES (49, 3, 5, '4', NULL, 0, '1', '2022-10-05 17:23:06', '1', '2022-10-05 17:23:06', b'0');
INSERT INTO `ecw_warehouse_line` VALUES (50, 3, 4, '4', NULL, 0, '1', '2022-10-05 17:23:19', '1', '2022-10-05 17:23:19', b'0');
INSERT INTO `ecw_warehouse_line` VALUES (51, 3, 2, '4', NULL, 0, '1', '2022-10-05 17:23:36', '1', '2022-10-05 17:23:36', b'0');
INSERT INTO `ecw_warehouse_line` VALUES (52, 3, 10, '4', NULL, 0, '1', '2022-10-05 17:23:54', '1', '2022-10-05 17:23:54', b'0');
INSERT INTO `ecw_warehouse_line` VALUES (53, 1, 12, '4', NULL, 0, '1', '2022-10-05 17:24:09', '1', '2022-10-05 17:24:09', b'0');
INSERT INTO `ecw_warehouse_line` VALUES (54, 1, 8, '4', NULL, 0, '1', '2022-10-05 17:24:23', '1', '2022-10-05 17:24:23', b'0');
INSERT INTO `ecw_warehouse_line` VALUES (55, 1, 11, '4', NULL, 0, '1', '2022-10-05 17:24:35', '1', '2022-10-05 17:24:35', b'0');
INSERT INTO `ecw_warehouse_line` VALUES (56, 1, 6, '4', NULL, 0, '1', '2022-10-05 17:24:50', '1', '2022-10-05 17:24:50', b'0');
INSERT INTO `ecw_warehouse_line` VALUES (57, 1, 5, '4', NULL, 0, '1', '2022-10-05 17:25:02', '1', '2022-10-05 17:25:02', b'0');
INSERT INTO `ecw_warehouse_line` VALUES (58, 1, 4, '4', NULL, 0, '1', '2022-10-05 17:25:15', '1', '2022-10-05 17:25:15', b'0');
INSERT INTO `ecw_warehouse_line` VALUES (59, 1, 2, '4', NULL, 0, '1', '2022-10-05 17:25:32', '1', '2022-10-05 17:25:32', b'0');
INSERT INTO `ecw_warehouse_line` VALUES (60, 1, 10, '4', NULL, 0, '1', '2022-10-05 17:25:45', '1', '2022-10-05 17:25:45', b'0');
INSERT INTO `ecw_warehouse_line` VALUES (61, 1, 8, '1', NULL, 0, '1', '2022-10-05 17:26:03', '1', '2022-10-05 17:26:03', b'0');
INSERT INTO `ecw_warehouse_line` VALUES (62, 3, 11, '1', NULL, 0, '1', '2022-10-05 17:26:17', '1', '2022-10-05 17:26:17', b'0');
INSERT INTO `ecw_warehouse_line` VALUES (63, 1, 11, '1', NULL, 0, '1', '2022-10-05 17:26:38', '1', '2022-10-05 17:26:38', b'0');
INSERT INTO `ecw_warehouse_line` VALUES (64, 1, 11, '2', NULL, 0, '1', '2022-10-05 17:27:18', '1', '2022-10-05 17:27:18', b'0');
INSERT INTO `ecw_warehouse_line` VALUES (65, 3, 11, '3', NULL, 0, '1', '2022-10-05 17:27:43', '1', '2022-10-05 17:27:43', b'0');
INSERT INTO `ecw_warehouse_line` VALUES (66, 1, 11, '3', NULL, 0, '1', '2022-10-05 17:27:56', '1', '2022-10-05 17:27:56', b'0');
INSERT INTO `ecw_warehouse_line` VALUES (67, 1, 14, '1', NULL, 0, '1', '2022-10-05 17:28:12', '1', '2022-10-05 17:28:12', b'0');
INSERT INTO `ecw_warehouse_line` VALUES (68, 3, 14, '1', NULL, 0, '1', '2022-10-05 17:28:25', '1', '2022-10-05 17:28:25', b'0');
INSERT INTO `ecw_warehouse_line` VALUES (69, 3, 15, '1', NULL, 0, '1', '2022-10-05 17:28:37', '1', '2022-10-05 17:28:37', b'0');
INSERT INTO `ecw_warehouse_line` VALUES (70, 1, 15, '1', NULL, 0, '1', '2022-10-05 17:28:49', '1', '2022-10-05 17:28:49', b'0');
INSERT INTO `ecw_warehouse_line` VALUES (71, 3, 16, '1', NULL, 0, '1', '2022-10-05 17:29:05', '1', '2022-10-05 17:29:05', b'0');
INSERT INTO `ecw_warehouse_line` VALUES (72, 1, 16, '1', NULL, 0, '1', '2022-10-05 17:29:19', '1', '2022-10-05 17:29:19', b'0');
INSERT INTO `ecw_warehouse_line` VALUES (73, 3, 17, '1', NULL, 0, '1', '2022-10-05 17:29:32', '1', '2022-10-05 17:29:32', b'0');
INSERT INTO `ecw_warehouse_line` VALUES (74, 1, 17, '1', NULL, 0, '1', '2022-10-05 17:29:46', '1', '2022-10-05 17:29:46', b'0');
INSERT INTO `ecw_warehouse_line` VALUES (75, 3, 18, '1', NULL, 0, '1', '2022-10-05 17:30:06', '1', '2022-10-05 17:30:06', b'0');
INSERT INTO `ecw_warehouse_line` VALUES (76, 1, 18, '1', NULL, 0, '1', '2022-10-05 17:30:20', '1', '2022-10-05 17:30:20', b'0');
INSERT INTO `ecw_warehouse_line` VALUES (77, 3, 19, '1', NULL, 0, '1', '2022-10-05 17:30:33', '1', '2022-10-05 17:30:33', b'0');
INSERT INTO `ecw_warehouse_line` VALUES (78, 1, 19, '1', NULL, 0, '1', '2022-10-05 17:30:46', '1', '2022-10-05 17:30:46', b'0');
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
update ecw_product_price set min_weight=0 where min_weight>0
\ No newline at end of file
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
alter table `ecw_order_item` add column `discount_clearance_fee_price` decimal(15,2) DEFAULT '0.00' COMMENT '清关费单价优惠金额';
alter table `ecw_order_item` add column `discount_clearance_fee_total_price` decimal(15,2) DEFAULT '0.00' COMMENT '清关费单价优惠总金额';
alter table `ecw_order_item` add column `discount_freight_price` decimal(15,2) DEFAULT '0.00' COMMENT '运费单价优惠金额';
alter table `ecw_order_item` add column `discount_freight_total_price` decimal(15,2) DEFAULT '0.00' COMMENT '运费单价优惠总金额';
alter table `ecw_order_item` add column `is_priced` bit(1) DEFAULT 0 COMMENT '是否已定价';
\ No newline at end of file
This diff is collapsed.
This diff is collapsed.
alter table `ecw_offer_prod` add column `special_commission` bit(1) DEFAULT b'0' COMMENT '是否特价佣金设置';
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment