# Packages
Package cond @Author: asus @Description: $ @File: cond @Data: 2022/4/129:54.
# Constants
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
# Structs
User 用户表CREATE TABLE `user` (
`id` int unsigned NOT NULL AUTO_INCREMENT COMMENT '主键',
`open_id` varchar(32) DEFAULT NULL COMMENT '微信openID',
`created_at` int unsigned DEFAULT NULL COMMENT '创建时间',
`updated_at` int unsigned DEFAULT NULL COMMENT '更新时间',
PRIMARY KEY (`id`),
UNIQUE KEY `user_id_uindex` (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci COMMENT='用户表'*/.