create ufutx_s2_shop_order_group

This commit is contained in:
tian 2024-12-25 14:39:26 +08:00
parent 72cb262d8a
commit 8a351a1937

View File

@ -0,0 +1 @@
CREATE TABLE `health`.`ufutx_s2_shop_order_group` ( `id` BIGINT NOT NULL AUTO_INCREMENT , `pay_no` VARCHAR(256) NOT NULL COMMENT '支付单号' , `order_ids` VARCHAR(2048) NOT NULL COMMENT '订单id多个,逗号分隔' , `created_at` TIMESTAMP NULL , `updated_at` TIMESTAMP NULL , PRIMARY KEY (`id`)) ENGINE = InnoDB COMMENT = '订单组, 同一组内所有订单是一次性支付的';