| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509 |
- -- MySQL dump 10.13 Distrib 5.7.42, for Linux (x86_64)
- --
- -- Host: 192.168.0.210 Database: tnb_account_tdb
- -- ------------------------------------------------------
- -- Server version 5.7.36
- /*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */;
- /*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */;
- /*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */;
- /*!40101 SET NAMES utf8 */;
- /*!40103 SET @OLD_TIME_ZONE=@@TIME_ZONE */;
- /*!40103 SET TIME_ZONE='+00:00' */;
- /*!40014 SET @OLD_UNIQUE_CHECKS=@@UNIQUE_CHECKS, UNIQUE_CHECKS=0 */;
- /*!40014 SET @OLD_FOREIGN_KEY_CHECKS=@@FOREIGN_KEY_CHECKS, FOREIGN_KEY_CHECKS=0 */;
- /*!40101 SET @OLD_SQL_MODE=@@SQL_MODE, SQL_MODE='NO_AUTO_VALUE_ON_ZERO' */;
- /*!40111 SET @OLD_SQL_NOTES=@@SQL_NOTES, SQL_NOTES=0 */;
- --
- -- Table structure for table `chat_group_info`
- --
- DROP TABLE IF EXISTS `chat_group_info`;
- /*!40101 SET @saved_cs_client = @@character_set_client */;
- /*!40101 SET character_set_client = utf8 */;
- CREATE TABLE `chat_group_info` (
- `id` int(11) NOT NULL AUTO_INCREMENT,
- `deleted` bit(1) NOT NULL,
- `create_time` datetime(6) NOT NULL,
- `update_time` datetime(6) NOT NULL,
- `group_id` bigint(20) NOT NULL,
- `name` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
- `avatar` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
- `profile` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
- `owner_id` bigint(20) NOT NULL,
- PRIMARY KEY (`id`)
- ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
- /*!40101 SET character_set_client = @saved_cs_client */;
- --
- -- Table structure for table `chat_group_member`
- --
- DROP TABLE IF EXISTS `chat_group_member`;
- /*!40101 SET @saved_cs_client = @@character_set_client */;
- /*!40101 SET character_set_client = utf8 */;
- CREATE TABLE `chat_group_member` (
- `id` int(11) NOT NULL AUTO_INCREMENT,
- `deleted` bit(1) NOT NULL,
- `create_time` datetime(6) NOT NULL,
- `update_time` datetime(6) NOT NULL,
- `group_id` bigint(20) NOT NULL,
- `user_id` bigint(20) NOT NULL,
- `nickname` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
- `owner` bit(1) DEFAULT NULL,
- `disturb` bit(1) DEFAULT NULL,
- PRIMARY KEY (`id`)
- ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
- /*!40101 SET character_set_client = @saved_cs_client */;
- --
- -- Table structure for table `chat_group_notice`
- --
- DROP TABLE IF EXISTS `chat_group_notice`;
- /*!40101 SET @saved_cs_client = @@character_set_client */;
- /*!40101 SET character_set_client = utf8 */;
- CREATE TABLE `chat_group_notice` (
- `id` int(11) NOT NULL AUTO_INCREMENT,
- `deleted` bit(1) NOT NULL,
- `create_time` datetime(6) NOT NULL,
- `update_time` datetime(6) NOT NULL,
- `notice_id` int(11) NOT NULL,
- `group_id` int(11) NOT NULL,
- `title` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
- `content` text COLLATE utf8mb4_unicode_ci NOT NULL,
- `top` bit(1) NOT NULL,
- `confirmed` bit(1) NOT NULL,
- `create_by` bigint(20) NOT NULL,
- PRIMARY KEY (`id`)
- ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
- /*!40101 SET character_set_client = @saved_cs_client */;
- --
- -- Table structure for table `msg_email_account`
- --
- DROP TABLE IF EXISTS `msg_email_account`;
- /*!40101 SET @saved_cs_client = @@character_set_client */;
- /*!40101 SET character_set_client = utf8 */;
- CREATE TABLE `msg_email_account` (
- `id` int(11) NOT NULL AUTO_INCREMENT,
- `deleted` bit(1) NOT NULL DEFAULT b'0',
- `create_time` datetime(6) NOT NULL DEFAULT CURRENT_TIMESTAMP(6),
- `update_time` datetime(6) NOT NULL DEFAULT CURRENT_TIMESTAMP(6),
- `smtp` varchar(255) NOT NULL,
- `username` varchar(255) NOT NULL,
- `password` varchar(255) NOT NULL,
- `personal` varchar(255) NOT NULL,
- `default_sender` bit(1) NOT NULL,
- PRIMARY KEY (`id`),
- UNIQUE KEY `username` (`username`)
- ) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=utf8mb4;
- /*!40101 SET character_set_client = @saved_cs_client */;
- --
- -- Table structure for table `msg_login_attempts`
- --
- DROP TABLE IF EXISTS `msg_login_attempts`;
- /*!40101 SET @saved_cs_client = @@character_set_client */;
- /*!40101 SET character_set_client = utf8 */;
- CREATE TABLE `msg_login_attempts` (
- `id` int(11) NOT NULL AUTO_INCREMENT,
- `deleted` bit(1) NOT NULL,
- `create_time` datetime(6) NOT NULL,
- `update_time` datetime(6) NOT NULL,
- `login_id` varchar(255) DEFAULT NULL,
- `user_id` bigint(20) NOT NULL,
- `login_type` int(11) DEFAULT NULL,
- `user_agent` text,
- `login_ip` varchar(255) DEFAULT NULL,
- `login_at` datetime(6) DEFAULT NULL,
- `plat` int(11) DEFAULT NULL,
- `succeed` bit(1) DEFAULT NULL,
- `remember_me` bit(1) DEFAULT NULL,
- PRIMARY KEY (`id`),
- UNIQUE KEY `login_id` (`login_id`),
- KEY `user_id` (`user_id`) USING BTREE
- ) ENGINE=InnoDB AUTO_INCREMENT=44 DEFAULT CHARSET=utf8mb4 COMMENT='用户登录记录';
- /*!40101 SET character_set_client = @saved_cs_client */;
- --
- -- Table structure for table `oauth_access_token`
- --
- DROP TABLE IF EXISTS `oauth_access_token`;
- /*!40101 SET @saved_cs_client = @@character_set_client */;
- /*!40101 SET character_set_client = utf8 */;
- CREATE TABLE `oauth_access_token` (
- `token_id` varchar(255) DEFAULT NULL COMMENT '加密的access_token的值',
- `token` longblob COMMENT 'OAuth2AccessToken.java对象序列化后的二进制数据',
- `authentication_id` varchar(255) DEFAULT NULL COMMENT '加密过的username,client_id,scope',
- `user_name` varchar(255) DEFAULT NULL COMMENT '登录的用户名',
- `client_id` varchar(255) DEFAULT NULL COMMENT '客户端ID',
- `authentication` longblob COMMENT 'OAuth2Authentication.java对象序列化后的二进制数据',
- `refresh_token` varchar(255) DEFAULT NULL COMMENT '加密的refresh_token的值'
- ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='访问令牌';
- /*!40101 SET character_set_client = @saved_cs_client */;
- --
- -- Table structure for table `oauth_approvals`
- --
- DROP TABLE IF EXISTS `oauth_approvals`;
- /*!40101 SET @saved_cs_client = @@character_set_client */;
- /*!40101 SET character_set_client = utf8 */;
- CREATE TABLE `oauth_approvals` (
- `userId` varchar(255) DEFAULT NULL COMMENT '登录的用户名',
- `clientId` varchar(255) DEFAULT NULL COMMENT '客户端ID',
- `scope` varchar(255) DEFAULT NULL COMMENT '申请的权限范围',
- `status` varchar(10) DEFAULT NULL COMMENT '状态(Approve或Deny)',
- `expiresAt` datetime DEFAULT NULL COMMENT '过期时间',
- `lastModifiedAt` datetime DEFAULT NULL COMMENT '最终修改时间'
- ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='授权记录';
- /*!40101 SET character_set_client = @saved_cs_client */;
- --
- -- Table structure for table `oauth_client_details`
- --
- DROP TABLE IF EXISTS `oauth_client_details`;
- /*!40101 SET @saved_cs_client = @@character_set_client */;
- /*!40101 SET character_set_client = utf8 */;
- CREATE TABLE `oauth_client_details` (
- `client_id` varchar(255) NOT NULL COMMENT '客户端 ID',
- `resource_ids` varchar(255) DEFAULT NULL COMMENT '客户端可访问的资源服务器集合, 使用 '','' 分隔多个资源',
- `client_secret` varchar(255) DEFAULT NULL COMMENT '客户端密匙',
- `scope` varchar(255) DEFAULT NULL COMMENT '客户端可访问的资源服务器范围, 空值表示可访问资源服务器上的所有资源',
- `authorized_grant_types` varchar(255) DEFAULT NULL COMMENT '客户端支持的 OAuth2.0 授权类型',
- `web_server_redirect_uri` varchar(255) DEFAULT NULL COMMENT '授权服务器认证通过后重定向到客户端的 URI',
- `authorities` varchar(255) DEFAULT NULL COMMENT '客户端拥有的 Spring Security 权限, 使用 '','' 分隔多个权限',
- `access_token_validity` int(11) DEFAULT NULL COMMENT '访问令牌有效时间值(单位:秒)',
- `refresh_token_validity` int(11) DEFAULT NULL COMMENT '更新令牌有效时间值(单位:秒)',
- `additional_information` varchar(255) DEFAULT NULL COMMENT '预留字段',
- `autoapprove` varchar(255) DEFAULT NULL COMMENT '用户是否自动 Approval 操作'
- ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='客户端信息';
- /*!40101 SET character_set_client = @saved_cs_client */;
- --
- -- Table structure for table `oauth_client_token`
- --
- DROP TABLE IF EXISTS `oauth_client_token`;
- /*!40101 SET @saved_cs_client = @@character_set_client */;
- /*!40101 SET character_set_client = utf8 */;
- CREATE TABLE `oauth_client_token` (
- `token_id` varchar(255) DEFAULT NULL COMMENT '加密的access_token值',
- `token` longblob COMMENT 'OAuth2AccessToken.java对象序列化后的二进制数据',
- `authentication_id` varchar(255) DEFAULT NULL COMMENT '加密过的username,client_id,scope',
- `user_name` varchar(255) DEFAULT NULL COMMENT '登录的用户名',
- `client_id` varchar(255) DEFAULT NULL COMMENT '客户端ID'
- ) ENGINE=InnoDB DEFAULT CHARSET=utf8;
- /*!40101 SET character_set_client = @saved_cs_client */;
- --
- -- Table structure for table `oauth_code`
- --
- DROP TABLE IF EXISTS `oauth_code`;
- /*!40101 SET @saved_cs_client = @@character_set_client */;
- /*!40101 SET character_set_client = utf8 */;
- CREATE TABLE `oauth_code` (
- `code` varchar(255) DEFAULT NULL COMMENT '授权码(未加密)',
- `authentication` varbinary(255) DEFAULT NULL COMMENT 'AuthorizationRequestHolder.java对象序列化后的二进制数据'
- ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='授权码';
- /*!40101 SET character_set_client = @saved_cs_client */;
- --
- -- Table structure for table `oauth_refresh_token`
- --
- DROP TABLE IF EXISTS `oauth_refresh_token`;
- /*!40101 SET @saved_cs_client = @@character_set_client */;
- /*!40101 SET character_set_client = utf8 */;
- CREATE TABLE `oauth_refresh_token` (
- `token_id` varchar(255) DEFAULT NULL COMMENT '加密过的refresh_token的值',
- `token` longblob COMMENT 'OAuth2RefreshToken.java对象序列化后的二进制数据 ',
- `authentication` longblob COMMENT 'OAuth2Authentication.java对象序列化后的二进制数据'
- ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='更新令牌';
- /*!40101 SET character_set_client = @saved_cs_client */;
- --
- -- Table structure for table `oauth_user_oauth_app`
- --
- DROP TABLE IF EXISTS `oauth_user_oauth_app`;
- /*!40101 SET @saved_cs_client = @@character_set_client */;
- /*!40101 SET character_set_client = utf8 */;
- CREATE TABLE `oauth_user_oauth_app` (
- `id` int(11) NOT NULL AUTO_INCREMENT,
- `deleted` bit(1) NOT NULL,
- `create_time` datetime(6) NOT NULL,
- `update_time` datetime(6) NOT NULL,
- `user_id` bigint(20) NOT NULL,
- `app_name` varchar(255) NOT NULL,
- `home_url` varchar(255) NOT NULL,
- `client_id` varchar(255) NOT NULL,
- PRIMARY KEY (`id`)
- ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
- /*!40101 SET character_set_client = @saved_cs_client */;
- --
- -- Table structure for table `user_account`
- --
- DROP TABLE IF EXISTS `user_account`;
- /*!40101 SET @saved_cs_client = @@character_set_client */;
- /*!40101 SET character_set_client = utf8 */;
- CREATE TABLE `user_account` (
- `id` int(11) NOT NULL AUTO_INCREMENT,
- `deleted` bit(1) NOT NULL DEFAULT b'0',
- `create_time` datetime(6) NOT NULL DEFAULT CURRENT_TIMESTAMP(6),
- `update_time` datetime(6) NOT NULL DEFAULT CURRENT_TIMESTAMP(6),
- `user_id` bigint(20) NOT NULL COMMENT '用户 ID, 全局唯一',
- `account_type` tinyint(11) NOT NULL COMMENT '帐号类型, AccountType 枚举类',
- `username` varchar(255) NOT NULL COMMENT '用户名, 全局唯一',
- `mobile` varchar(13) DEFAULT NULL COMMENT '手机号, 全局唯一',
- `email` varchar(255) DEFAULT NULL COMMENT '邮箱, 全局唯一',
- `encoded_password` varchar(255) DEFAULT NULL,
- `salt` varchar(255) DEFAULT NULL,
- `create_at` datetime(6) NOT NULL COMMENT '帐号创建时间',
- `role` varchar(255) DEFAULT NULL,
- `enabled` bit(1) NOT NULL COMMENT 'spring-security 字段',
- `locked` bit(1) NOT NULL COMMENT 'spring-security 字段',
- `screen_name` varchar(255) DEFAULT NULL,
- `avatar_url` varchar(255) DEFAULT NULL,
- `notify` bit(1) DEFAULT NULL,
- PRIMARY KEY (`id`),
- UNIQUE KEY `user_id` (`user_id`) USING BTREE,
- UNIQUE KEY `username` (`username`) USING BTREE,
- UNIQUE KEY `email` (`email`) USING BTREE,
- UNIQUE KEY `mobile` (`mobile`) USING BTREE,
- UNIQUE KEY `index_screen_name` (`screen_name`),
- KEY `account_type` (`account_type`)
- ) ENGINE=InnoDB AUTO_INCREMENT=2057872 DEFAULT CHARSET=utf8mb4 COMMENT='用户帐号';
- /*!40101 SET character_set_client = @saved_cs_client */;
- --
- -- Table structure for table `user_contact`
- --
- DROP TABLE IF EXISTS `user_contact`;
- /*!40101 SET @saved_cs_client = @@character_set_client */;
- /*!40101 SET character_set_client = utf8 */;
- CREATE TABLE `user_contact` (
- `id` int(11) NOT NULL AUTO_INCREMENT,
- `deleted` bit(1) NOT NULL DEFAULT b'0',
- `create_time` datetime(6) NOT NULL DEFAULT CURRENT_TIMESTAMP(6),
- `update_time` datetime(6) NOT NULL DEFAULT CURRENT_TIMESTAMP(6),
- `friend_id` bigint(20) NOT NULL,
- `remark_name` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL COMMENT '备注名',
- `status` int(10) NOT NULL COMMENT '关系状态',
- `owner` bigint(20) NOT NULL,
- PRIMARY KEY (`id`),
- KEY `user_id` (`owner`) USING BTREE,
- KEY `friend_id` (`friend_id`)
- ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci COMMENT='联系人';
- /*!40101 SET character_set_client = @saved_cs_client */;
- --
- -- Table structure for table `user_contact_record`
- --
- DROP TABLE IF EXISTS `user_contact_record`;
- /*!40101 SET @saved_cs_client = @@character_set_client */;
- /*!40101 SET character_set_client = utf8 */;
- CREATE TABLE `user_contact_record` (
- `id` int(11) NOT NULL AUTO_INCREMENT,
- `deleted` bit(1) NOT NULL DEFAULT b'0',
- `create_time` datetime(6) NOT NULL DEFAULT CURRENT_TIMESTAMP(6),
- `update_time` datetime(6) NOT NULL DEFAULT CURRENT_TIMESTAMP(6),
- `apply_id` bigint(20) DEFAULT NULL,
- `apply_user` bigint(20) NOT NULL,
- `applied_user` bigint(20) NOT NULL,
- `friend_status` int(10) DEFAULT NULL,
- `apply_status` int(10) NOT NULL,
- `remark` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
- PRIMARY KEY (`id`),
- KEY `user_id` (`apply_user`) USING BTREE,
- KEY `friend_id` (`applied_user`)
- ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci COMMENT='联系人申请记录';
- /*!40101 SET character_set_client = @saved_cs_client */;
- --
- -- Table structure for table `user_message`
- --
- DROP TABLE IF EXISTS `user_message`;
- /*!40101 SET @saved_cs_client = @@character_set_client */;
- /*!40101 SET character_set_client = utf8 */;
- CREATE TABLE `user_message` (
- `id` int(11) NOT NULL AUTO_INCREMENT,
- `deleted` bit(1) NOT NULL DEFAULT b'0',
- `create_time` datetime(6) NOT NULL DEFAULT CURRENT_TIMESTAMP(6),
- `update_time` datetime(6) NOT NULL DEFAULT CURRENT_TIMESTAMP(6),
- `msg_type` int(11) DEFAULT NULL,
- `message_id` bigint(20) NOT NULL,
- `title` varchar(255) NOT NULL,
- `content` varchar(255) NOT NULL,
- `unread` bit(1) NOT NULL,
- `user_id` bigint(20) NOT NULL,
- PRIMARY KEY (`id`)
- ) ENGINE=InnoDB AUTO_INCREMENT=4 DEFAULT CHARSET=utf8mb4 COMMENT='用户消息';
- /*!40101 SET character_set_client = @saved_cs_client */;
- --
- -- Table structure for table `user_profile`
- --
- DROP TABLE IF EXISTS `user_profile`;
- /*!40101 SET @saved_cs_client = @@character_set_client */;
- /*!40101 SET character_set_client = utf8 */;
- CREATE TABLE `user_profile` (
- `id` int(11) NOT NULL AUTO_INCREMENT,
- `deleted` bit(1) NOT NULL DEFAULT b'0',
- `create_time` datetime(6) NOT NULL DEFAULT CURRENT_TIMESTAMP(6),
- `update_time` datetime(6) NOT NULL DEFAULT CURRENT_TIMESTAMP(6),
- `user_id` bigint(20) NOT NULL,
- `gender` varchar(255) NOT NULL,
- `signature` varchar(255) DEFAULT NULL COMMENT '用户自我介绍',
- `following` int(11) NOT NULL,
- `follower` int(11) NOT NULL,
- PRIMARY KEY (`id`),
- UNIQUE KEY `user_id` (`user_id`) USING BTREE
- ) ENGINE=InnoDB AUTO_INCREMENT=263920 DEFAULT CHARSET=utf8mb4 COMMENT='用户信息';
- /*!40101 SET character_set_client = @saved_cs_client */;
- --
- -- Table structure for table `user_registry`
- --
- DROP TABLE IF EXISTS `user_registry`;
- /*!40101 SET @saved_cs_client = @@character_set_client */;
- /*!40101 SET character_set_client = utf8 */;
- CREATE TABLE `user_registry` (
- `id` int(11) NOT NULL AUTO_INCREMENT,
- `deleted` bit(1) NOT NULL DEFAULT b'0',
- `create_time` datetime(6) NOT NULL DEFAULT CURRENT_TIMESTAMP(6),
- `update_time` datetime(6) NOT NULL DEFAULT CURRENT_TIMESTAMP(6),
- `enabled` bit(1) NOT NULL COMMENT '是否开放注册',
- `rule` varchar(255) NOT NULL COMMENT '开放注册规则',
- `captcha_code` varchar(255) NOT NULL,
- `verify_code` varchar(255) NOT NULL,
- `enable_code` bit(1) NOT NULL,
- `domain` varchar(255) NOT NULL,
- PRIMARY KEY (`id`),
- UNIQUE KEY `user_id` (`enabled`) USING BTREE
- ) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb4 COMMENT='帐号开放注册规则';
- /*!40101 SET character_set_client = @saved_cs_client */;
- --
- -- Table structure for table `user_relation`
- --
- DROP TABLE IF EXISTS `user_relation`;
- /*!40101 SET @saved_cs_client = @@character_set_client */;
- /*!40101 SET character_set_client = utf8 */;
- CREATE TABLE `user_relation` (
- `id` int(11) NOT NULL AUTO_INCREMENT,
- `deleted` bit(1) NOT NULL,
- `create_time` datetime(6) NOT NULL ON UPDATE CURRENT_TIMESTAMP(6),
- `update_time` datetime(6) NOT NULL ON UPDATE CURRENT_TIMESTAMP(6),
- `user_id` bigint(20) NOT NULL,
- `following_id` bigint(20) NOT NULL,
- PRIMARY KEY (`id`)
- ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='用户关系';
- /*!40101 SET character_set_client = @saved_cs_client */;
- --
- -- Table structure for table `user_vip`
- --
- DROP TABLE IF EXISTS `user_vip`;
- /*!40101 SET @saved_cs_client = @@character_set_client */;
- /*!40101 SET character_set_client = utf8 */;
- CREATE TABLE `user_vip` (
- `id` int(11) NOT NULL AUTO_INCREMENT,
- `deleted` bit(1) NOT NULL DEFAULT b'0',
- `create_time` datetime(6) NOT NULL DEFAULT CURRENT_TIMESTAMP(6),
- `update_time` datetime(6) NOT NULL DEFAULT CURRENT_TIMESTAMP(6),
- `user_id` bigint(20) NOT NULL COMMENT '用户 ID',
- `expire_at` bigint(20) NOT NULL COMMENT 'VIP 用户过期时间',
- PRIMARY KEY (`id`),
- UNIQUE KEY `user_id` (`user_id`) USING BTREE
- ) ENGINE=InnoDB AUTO_INCREMENT=5 DEFAULT CHARSET=utf8mb4 COMMENT='小会员用户';
- /*!40101 SET character_set_client = @saved_cs_client */;
- --
- -- Table structure for table `user_vip_plan`
- --
- DROP TABLE IF EXISTS `user_vip_plan`;
- /*!40101 SET @saved_cs_client = @@character_set_client */;
- /*!40101 SET character_set_client = utf8 */;
- CREATE TABLE `user_vip_plan` (
- `id` int(11) NOT NULL AUTO_INCREMENT,
- `deleted` bit(1) NOT NULL DEFAULT b'0',
- `create_time` datetime(6) NOT NULL DEFAULT CURRENT_TIMESTAMP(6),
- `update_time` datetime(6) NOT NULL DEFAULT CURRENT_TIMESTAMP(6),
- `plan_id` int(11) NOT NULL,
- `name` varchar(255) NOT NULL,
- `price` double NOT NULL,
- `duration` int(11) NOT NULL,
- PRIMARY KEY (`id`),
- UNIQUE KEY `owner` (`plan_id`) USING BTREE
- ) ENGINE=InnoDB AUTO_INCREMENT=5 DEFAULT CHARSET=utf8mb4 COMMENT='小会员计划';
- /*!40101 SET character_set_client = @saved_cs_client */;
- --
- -- Table structure for table `user_wallet_bill`
- --
- DROP TABLE IF EXISTS `user_wallet_bill`;
- /*!40101 SET @saved_cs_client = @@character_set_client */;
- /*!40101 SET character_set_client = utf8 */;
- CREATE TABLE `user_wallet_bill` (
- `id` int(11) NOT NULL AUTO_INCREMENT,
- `deleted` bit(1) NOT NULL DEFAULT b'0',
- `create_time` datetime(6) NOT NULL DEFAULT CURRENT_TIMESTAMP(6),
- `update_time` datetime(6) NOT NULL DEFAULT CURRENT_TIMESTAMP(6),
- `type` int(11) NOT NULL COMMENT '1 - 收入, 2 - 支出',
- `quantity` double NOT NULL,
- `create_at` datetime(6) NOT NULL,
- `owner` bigint(20) NOT NULL,
- PRIMARY KEY (`id`)
- ) ENGINE=InnoDB AUTO_INCREMENT=10 DEFAULT CHARSET=utf8mb4 COMMENT='用户钱包账单';
- /*!40101 SET character_set_client = @saved_cs_client */;
- --
- -- Table structure for table `user_wallet_charge`
- --
- DROP TABLE IF EXISTS `user_wallet_charge`;
- /*!40101 SET @saved_cs_client = @@character_set_client */;
- /*!40101 SET character_set_client = utf8 */;
- CREATE TABLE `user_wallet_charge` (
- `id` int(11) NOT NULL AUTO_INCREMENT,
- `deleted` bit(1) NOT NULL DEFAULT b'0',
- `create_time` datetime(6) NOT NULL DEFAULT CURRENT_TIMESTAMP(6),
- `update_time` datetime(6) NOT NULL DEFAULT CURRENT_TIMESTAMP(6),
- `charge_id` bigint(20) NOT NULL,
- `quantity` double NOT NULL,
- `owner` bigint(20) NOT NULL,
- `status` int(11) NOT NULL,
- PRIMARY KEY (`id`),
- UNIQUE KEY `owner` (`charge_id`) USING BTREE
- ) ENGINE=InnoDB AUTO_INCREMENT=6 DEFAULT CHARSET=utf8mb4 COMMENT='用户钱包充值';
- /*!40101 SET character_set_client = @saved_cs_client */;
- /*!40103 SET TIME_ZONE=@OLD_TIME_ZONE */;
- /*!40101 SET SQL_MODE=@OLD_SQL_MODE */;
- /*!40014 SET FOREIGN_KEY_CHECKS=@OLD_FOREIGN_KEY_CHECKS */;
- /*!40014 SET UNIQUE_CHECKS=@OLD_UNIQUE_CHECKS */;
- /*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */;
- /*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */;
- /*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */;
- /*!40111 SET SQL_NOTES=@OLD_SQL_NOTES */;
- -- Dump completed on 2024-12-15 22:47:20
|