CREATE TABLE `access_log` ( `id` bigint(20) NOT NULL COMMENT '雪花id', `time` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP COMMENT '进出时间', `user_id` int(11) NOT NULL COMMENT '用户id', `user_real_name` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NULL DEFAULT NULL COMMENT '用户真实姓名', `gate_id` bigint(20) NOT NULL COMMENT '大门id', `type` enum('IN','OUT') CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NULL DEFAULT NULL COMMENT '类型(进门 OR 出门)' ) 创建该表的 add update getList deleteById 的 Mybatils xml片段 (例如: