create_ufutx_orders_extend

This commit is contained in:
tian 2025-10-15 17:22:47 +08:00
parent 616fadd50f
commit fb0e788eb4

View File

@ -0,0 +1,9 @@
CREATE TABLE `health`.`ufutx_orders_extend` (
`id` BIGINT NOT NULL AUTO_INCREMENT ,
`dma_id` BIGINT NOT NULL ,
`commissions_status` TINYINT NOT NULL DEFAULT '1' COMMENT '1=未知,2=不可分润,3=可分润未分,4=可分润已分' ,
`commissions_count` INT NOT NULL DEFAULT '0' COMMENT '分润数量' ,
`commissions_withdraw_count` INT NOT NULL DEFAULT '0' COMMENT '提现数量' ,
PRIMARY KEY (`id`),
INDEX (`dma_id`)
) ENGINE = InnoDB COMMENT = 'dma订单扩展表';