From 88e5198819016f6a534463b87e683e0cc540896e Mon Sep 17 00:00:00 2001 From: Hankin Date: Wed, 8 Jan 2025 11:28:31 +0800 Subject: [PATCH 1/3] add order sign type --- 1736306732_table_orders_add_sign_type.up.sql | 2 ++ 1 file changed, 2 insertions(+) create mode 100644 1736306732_table_orders_add_sign_type.up.sql diff --git a/1736306732_table_orders_add_sign_type.up.sql b/1736306732_table_orders_add_sign_type.up.sql new file mode 100644 index 0000000..93134ca --- /dev/null +++ b/1736306732_table_orders_add_sign_type.up.sql @@ -0,0 +1,2 @@ +ALTER TABLE `ufutx_orders` +ADD COLUMN `sign_type` tinyint(4) default null comment "合同签署方式 1:线上,2:线下" after `err_msg` \ No newline at end of file From 7a346f0de4480d6f19cecd281a0eb74099c5837f Mon Sep 17 00:00:00 2001 From: Hankin Date: Wed, 8 Jan 2025 11:47:44 +0800 Subject: [PATCH 2/3] asgin signer add company status --- 1736151453_create_asign_signer.up.sql | 2 +- 1736307820_table_asign_signer_add_company_status.up.sql | 3 +++ 2 files changed, 4 insertions(+), 1 deletion(-) create mode 100644 1736307820_table_asign_signer_add_company_status.up.sql diff --git a/1736151453_create_asign_signer.up.sql b/1736151453_create_asign_signer.up.sql index fef9dce..d65c921 100644 --- a/1736151453_create_asign_signer.up.sql +++ b/1736151453_create_asign_signer.up.sql @@ -24,7 +24,7 @@ CREATE TABLE `ufutx_asign_signer` ( `is_iframe` tinyInt(4) default 0 comment "使用IFrame框架", `will_type` varchar(191) default NULL comment "核身模式 0:问答模式,1:播报模式", `sign_mark` varchar(191) default NULL comment "业务系统传递的唯一标识", - `status` tinyInt(4) default 1 comment "合同状态", + `status` tinyInt(4) default 1 comment "签署状态", `sign_finished_time` timestamp null default null comment "签约时间", `user_sign_url` varchar(191) NOT NULL comment "用户签约链接", `company_sign_url` varchar(191) NOT NULL comment "公司签约链接", diff --git a/1736307820_table_asign_signer_add_company_status.up.sql b/1736307820_table_asign_signer_add_company_status.up.sql new file mode 100644 index 0000000..1b864ec --- /dev/null +++ b/1736307820_table_asign_signer_add_company_status.up.sql @@ -0,0 +1,3 @@ +ALTER TABLE `ufutx_asign_signer` +ADD COLUMN `company_sign_finished_time` timestamp null default null comment "公司签约时间" after `sign_finished_time`, +ADD COLUMN `company_status` tinyInt(4) default 1 comment "公司签署状态" after `sign_finished_time` From 0e6819fe3a5c6f9110a2021e84705620697e4c6e Mon Sep 17 00:00:00 2001 From: Hankin Date: Wed, 8 Jan 2025 12:07:34 +0800 Subject: [PATCH 3/3] asgin signer add order id --- 1736309090_table_asign_signer_add_order_id.up.sql | 2 ++ 1 file changed, 2 insertions(+) create mode 100644 1736309090_table_asign_signer_add_order_id.up.sql diff --git a/1736309090_table_asign_signer_add_order_id.up.sql b/1736309090_table_asign_signer_add_order_id.up.sql new file mode 100644 index 0000000..f870409 --- /dev/null +++ b/1736309090_table_asign_signer_add_order_id.up.sql @@ -0,0 +1,2 @@ +ALTER TABLE `ufutx_asign_signer` +ADD COLUMN `order_id` bigint(20) NOT NULL comment "订单id" after `user_id` \ No newline at end of file