create_ufutx_s2_user_login_qrcode_log

This commit is contained in:
tian 2025-04-22 16:23:32 +08:00
parent 87bee3191b
commit d9369d52ad

View File

@ -0,0 +1,8 @@
CREATE TABLE `health`.`ufutx_s2_user_login_qrcode_log` (
`id` BIGINT NOT NULL AUTO_INCREMENT ,
`status` TINYINT NOT NULL DEFAULT '1' COMMENT '1=空闲,2=已扫码,3=已登录' ,
`userid` INT NOT NULL DEFAULT '0' COMMENT '最终登录人' ,
`created_at` TIMESTAMP NULL DEFAULT NULL ,
`updated_at` TIMESTAMP NULL DEFAULT NULL ,
PRIMARY KEY (`id`)
) ENGINE = InnoDB COMMENT = '用户扫码支付日志';