数据结构
12114表总览
普通表
_cache
- 缓存表
CREATE TABLE `_cache` (`id` int(11) NOT NULL AUTO_INCREMENT,`userId` varchar(255) NOT NULL COMMENT '用户Id',`content` longtext COMMENT '缓存数据',`recordStatus` varchar(255) DEFAULT 'active',`operation` varchar(255) DEFAULT 'insert' COMMENT '操作; insert, update, jhInsert, jhUpdate, jhDelete jhRestore',`operationByUserId` varchar(255) DEFAULT NULL COMMENT '操作者userId',`operationByUser` varchar(255) DEFAULT NULL COMMENT '操作者用户名',`operationAt` varchar(255) DEFAULT NULL COMMENT '操作时间; E.g: 2021-05-28T10:24:54+08:00 ',PRIMARY KEY (`id`) USING BTREE) ENGINE = InnoDB DEFAULT CHARSET = utf8mb4 COLLATE = utf8mb4_bin COMMENT = '缓存表'
_constant
- 常量表; 软删除未启用;
CREATE TABLE `_constant` (`id` int(11) NOT NULL AUTO_INCREMENT,`constantKey` varchar(255) DEFAULT NULL,`constantType` varchar(255) DEFAULT NULL COMMENT '常量类型; object, array',`desc` varchar(255) DEFAULT NULL COMMENT '描述',`constantValue` text COMMENT '常量内容; object, array',`operation` varchar(255) DEFAULT 'insert' COMMENT '操作; insert, update, jhInsert, jhUpdate, jhDelete jhRestore',`operationByUserId` varchar(255) DEFAULT NULL COMMENT '操作者userId',`operationByUser` varchar(255) DEFAULT NULL COMMENT '操作者用户名',`operationAt` varchar(255) DEFAULT NULL COMMENT '操作时间; E.g: 2021-05-28T10:24:54+08:00 ',PRIMARY KEY (`id`) USING BTREE) ENGINE = InnoDB AUTO_INCREMENT = 4 DEFAULT CHARSET = utf8mb4 COLLATE = utf8mb4_bin COMMENT = '常量表; 软删除未启用;'
_page
- 页面表; 软删除未启用;
CREATE TABLE `_page` (`id` int(11) NOT NULL AUTO_INCREMENT,`pageId` varchar(255) DEFAULT NULL COMMENT 'pageId',`pageFile` varchar(255) DEFAULT NULL COMMENT 'page文件指定; 默认使用pageId.html',`pageName` varchar(255) DEFAULT NULL COMMENT 'page name',`pageType` varchar(255) DEFAULT NULL COMMENT '页面类型; showInMenu, dynamicInMenu',`sort` varchar(255) DEFAULT NULL,`operation` varchar(255) DEFAULT 'insert' COMMENT '操作; insert, update, jhInsert, jhUpdate, jhDelete jhRestore',`operationByUserId` varchar(255) DEFAULT NULL COMMENT '操作者userId',`operationByUser` varchar(255) DEFAULT NULL COMMENT '操作者用户名',`operationAt` varchar(255) DEFAULT NULL COMMENT '操作时间; E.g: 2021-05-28T10:24:54+08:00 ',PRIMARY KEY (`id`) USING BTREE) ENGINE = InnoDB AUTO_INCREMENT = 46 DEFAULT CHARSET = utf8mb4 COLLATE = utf8mb4_bin COMMENT = '页面表; 软删除未启用;'
_record_history
- 数据历史表
CREATE TABLE `_record_history` (`id` int(11) NOT NULL AUTO_INCREMENT,`table` varchar(255) DEFAULT NULL COMMENT '表',`recordId` int(11) DEFAULT NULL COMMENT '数据在table中的主键id; recordContent.id',`recordContent` text NOT NULL COMMENT '数据',`packageContent` text NOT NULL COMMENT '当时请求的 package JSON',`operation` varchar(255) DEFAULT NULL COMMENT '操作; jhInsert, jhUpdate, jhDelete jhRestore',`operationByUserId` varchar(255) DEFAULT NULL COMMENT '操作者userId; recordContent.operationByUserId',`operationByUser` varchar(255) DEFAULT NULL COMMENT '操作者用户名; recordContent.operationByUser',`operationAt` varchar(255) DEFAULT NULL COMMENT '操作时间; recordContent.operationAt; E.g: 2021-05-28T10:24:54+08:00 ',PRIMARY KEY (`id`) USING BTREE,KEY `index_record_id` (`recordId`) USING BTREE,KEY `index_table_action` (`table`, `operation`) USING BTREE) ENGINE = InnoDB AUTO_INCREMENT = 289 DEFAULT CHARSET = utf8mb4 COLLATE = utf8mb4_bin COMMENT = '数据历史表'
_resource
- 请求资源表; 软删除未启用; resourceId=
${appId}.${pageId}.${actionId}
CREATE TABLE `_resource` (`id` int(11) NOT NULL AUTO_INCREMENT,`accessControlTable` varchar(255) DEFAULT NULL COMMENT '数据规则控制表',`resourceHook` text COMMENT '[ "before": {"service": "xx", "serviceFunction": "xxx"}, "after": [] }',`pageId` varchar(255) DEFAULT NULL COMMENT 'page id; E.g: index',`actionId` varchar(255) DEFAULT NULL COMMENT 'action id; E.g: selectXXXByXXX',`desc` varchar(255) DEFAULT NULL COMMENT '描述',`resourceType` varchar(255) DEFAULT NULL COMMENT 'resource 类型; E.g: auth service sql',`appDataSchema` text COMMENT 'appData 参数校验',`resourceData` text COMMENT 'resource 数据; { "service": "auth", "serviceFunction": "passwordLogin" } or { "table": "${tableName}", "action": "select", "whereCondition": ".where(function() {this.whereNot( { recordStatus: \\"active\\" })})" }',`requestDemo` text COMMENT '请求Demo',`responseDemo` text COMMENT '响应Demo',`operation` varchar(255) DEFAULT 'insert' COMMENT '操作; insert, update, jhInsert, jhUpdate, jhDelete jhRestore',`operationByUserId` varchar(255) DEFAULT NULL COMMENT '操作者userId',`operationByUser` varchar(255) DEFAULT NULL COMMENT '操作者用户名',`operationAt` varchar(255) DEFAULT NULL COMMENT '操作时间; E.g: 2021-05-28T10:24:54+08:00 ',PRIMARY KEY (`id`) USING BTREE) ENGINE = InnoDB AUTO_INCREMENT = 406 DEFAULT CHARSET = utf8mb4 COLLATE = utf8mb4_bin COMMENT = '请求资源表; 软删除未启用; resourceId=`${appId}.${pageId}.${actionId}`'
_test_case
- 测试用例表
CREATE TABLE `_test_case` (`id` int(11) NOT NULL AUTO_INCREMENT,`pageId` varchar(255) DEFAULT NULL COMMENT '页面Id',`testId` varchar(255) DEFAULT NULL COMMENT '测试用例Id; 10000 ++',`testName` varchar(255) DEFAULT NULL COMMENT '测试用例名',`uiActionIdList` varchar(255) DEFAULT NULL COMMENT 'uiAction列表; 一个测试用例对应多个uiActionId',`testOpeartion` text COMMENT '测试用例步骤;',`expectedResult` text COMMENT '期望结果',`operation` varchar(255) DEFAULT NULL COMMENT '操作; jhInsert, jhUpdate, jhDelete jhRestore',`operationByUserId` varchar(255) DEFAULT NULL COMMENT '操作者userId; recordContent.operationByUserId',`operationByUser` varchar(255) DEFAULT NULL COMMENT '操作者用户名; recordContent.operationByUser',`operationAt` varchar(255) DEFAULT NULL COMMENT '操作时间; recordContent.operationAt; E.g: 2021-05-28T10:24:54+08:00 ',PRIMARY KEY (`id`) USING BTREE) ENGINE = InnoDB DEFAULT CHARSET = utf8mb4 COLLATE = utf8mb4_bin COMMENT = '测试用例表'
_ui
- ui 施工方案
CREATE TABLE `_ui` (`id` int(11) NOT NULL AUTO_INCREMENT,`pageId` varchar(255) DEFAULT NULL COMMENT 'page id; E.g: index',`uiActionType` varchar(255) DEFAULT NULL COMMENT 'ui 动作类型,如:fetchData, postData, changeUi',`uiActionId` varchar(255) DEFAULT NULL COMMENT 'action id; E.g: selectXXXByXXX',`desc` varchar(255) DEFAULT NULL COMMENT '描述',`uiActionConfig` text COMMENT 'ui 动作数据',`appDataSchema` text COMMENT 'ui 校验数据',`operation` varchar(255) DEFAULT 'insert' COMMENT '操作; insert, update, jhInsert, jhUpdate, jhDelete jhRestore',`operationByUserId` varchar(255) DEFAULT NULL COMMENT '操作者userId',`operationByUser` varchar(255) DEFAULT NULL COMMENT '操作者用户名',`operationAt` varchar(255) DEFAULT NULL COMMENT '操作时间; E.g: 2021-05-28T10:24:54+08:00 ',PRIMARY KEY (`id`) USING BTREE) ENGINE = InnoDB DEFAULT CHARSET = utf8mb4 COLLATE = utf8mb4_bin COMMENT = 'ui 施工方案'
_user_session
- 用户session表; deviceId 维度;软删除未启用;
CREATE TABLE `_user_session` (`id` int(11) NOT NULL AUTO_INCREMENT,`userId` varchar(255) DEFAULT NULL COMMENT '用户id',`userIp` varchar(255) DEFAULT NULL COMMENT '用户ip',`userIpRegion` varchar(255) DEFAULT NULL COMMENT '用户Ip区域',`userAgent` text COMMENT '请求的 agent',`deviceId` varchar(255) DEFAULT NULL COMMENT '设备id',`deviceType` varchar(255) DEFAULT 'web' COMMENT '设备类型; flutter, web, bot_databot, bot_chatbot, bot_xiaochengxu',`socketStatus` varchar(255) DEFAULT 'offline' COMMENT 'socket状态',`authToken` varchar(255) DEFAULT NULL COMMENT 'auth token',`operation` varchar(255) DEFAULT 'insert' COMMENT '操作; insert, update, jhInsert, jhUpdate, jhDelete jhRestore',`operationByUserId` varchar(255) DEFAULT NULL COMMENT '操作者userId',`operationByUser` varchar(255) DEFAULT NULL COMMENT '操作者用户名',`operationAt` varchar(255) DEFAULT NULL COMMENT '操作时间; E.g: 2021-05-28T10:24:54+08:00 ',PRIMARY KEY (`id`) USING BTREE,KEY `userId_index` (`userId`) USING BTREE,KEY `userId_deviceId_index` (`userId`, `deviceId`) USING BTREE,KEY `authToken_index` (`authToken`) USING BTREE) ENGINE = InnoDB AUTO_INCREMENT = 3 DEFAULT CHARSET = utf8mb4 COLLATE = utf8mb4_bin COMMENT = '用户session表; deviceId 维度;软删除未启用;'
check_clean_record
- 区域扣分记录
CREATE TABLE `check_clean_record` (`id` int(11) NOT NULL AUTO_INCREMENT,`areaId` varchar(255) DEFAULT NULL COMMENT '区域编号',`areaName` varchar(255) DEFAULT NULL COMMENT '区域',`classId` varchar(255) DEFAULT NULL COMMENT '班级id',`className` varchar(255) DEFAULT NULL COMMENT '班级名称',`dateType` varchar(255) DEFAULT NULL COMMENT '上午、下午',`date` varchar(255) DEFAULT NULL COMMENT '日期',`status` varchar(255) DEFAULT NULL,`deduction` varchar(255) DEFAULT NULL COMMENT '扣分',`desc` varchar(255) DEFAULT NULL COMMENT '备注记录',`attachment` varchar(255) DEFAULT NULL,`operation` varchar(255) DEFAULT 'insert' COMMENT '操作; insert, update, jhInsert, jhUpdate, jhDelete jhRestore',`operationByUserId` varchar(255) DEFAULT NULL COMMENT '操作者userId',`operationByUser` varchar(255) DEFAULT NULL COMMENT '操作者用户名',`operationAt` varchar(255) DEFAULT NULL COMMENT '操作时间; E.g: 2021-05-28T10:24:54+08:00 ',PRIMARY KEY (`id`) USING BTREE) ENGINE = InnoDB AUTO_INCREMENT = 85 DEFAULT CHARSET = utf8mb4 COLLATE = utf8mb4_bin COMMENT = '区域扣分记录'
视图
_directory_user_session
CREATE ALGORITHM = UNDEFINED DEFINER = `root` @`%` SQL SECURITY DEFINER VIEW `_directory_user_session` ASselect`lms_data_repository`.`enterprise_directory_user_session`.`id` AS `id`,`lms_data_repository`.`enterprise_directory_user_session`.`userId` AS `userId`,`lms_data_repository`.`enterprise_directory_user_session`.`userIp` AS `userIp`,`lms_data_repository`.`enterprise_directory_user_session`.`userIpRegion` AS `userIpRegion`,`lms_data_repository`.`enterprise_directory_user_session`.`userAgent` AS `userAgent`,`lms_data_repository`.`enterprise_directory_user_session`.`deviceId` AS `deviceId`,`lms_data_repository`.`enterprise_directory_user_session`.`deviceType` AS `deviceType`,`lms_data_repository`.`enterprise_directory_user_session`.`socketStatus` AS `socketStatus`,`lms_data_repository`.`enterprise_directory_user_session`.`authToken` AS `authToken`,`lms_data_repository`.`enterprise_directory_user_session`.`operation` AS `operation`,`lms_data_repository`.`enterprise_directory_user_session`.`operationByUserId` AS `operationByUserId`,`lms_data_repository`.`enterprise_directory_user_session`.`operationByUser` AS `operationByUser`,`lms_data_repository`.`enterprise_directory_user_session`.`operationAt` AS `operationAt`from`lms_data_repository`.`enterprise_directory_user_session`
_group
CREATE ALGORITHM = UNDEFINED DEFINER = `root` @`%` SQL SECURITY DEFINER VIEW `_group` ASselect`lms_data_repository`.`enterprise_group`.`id` AS `id`,`lms_data_repository`.`enterprise_group`.`groupId` AS `groupId`,`lms_data_repository`.`enterprise_group`.`groupLastId` AS `groupLastId`,`lms_data_repository`.`enterprise_group`.`groupPath` AS `groupPath`,`lms_data_repository`.`enterprise_group`.`groupName` AS `groupName`,`lms_data_repository`.`enterprise_group`.`groupDeptName` AS `groupDeptName`,`lms_data_repository`.`enterprise_group`.`groupAllName` AS `groupAllName`,`lms_data_repository`.`enterprise_group`.`principalId` AS `principalId`,`lms_data_repository`.`enterprise_group`.`headId` AS `headId`,`lms_data_repository`.`enterprise_group`.`leadId` AS `leadId`,`lms_data_repository`.`enterprise_group`.`groupDesc` AS `groupDesc`,`lms_data_repository`.`enterprise_group`.`operation` AS `operation`,`lms_data_repository`.`enterprise_group`.`operationByUserId` AS `operationByUserId`,`lms_data_repository`.`enterprise_group`.`operationByUser` AS `operationByUser`,`lms_data_repository`.`enterprise_group`.`operationAt` AS `operationAt`from`lms_data_repository`.`enterprise_group`
_role
CREATE ALGORITHM = UNDEFINED DEFINER = `root` @`%` SQL SECURITY DEFINER VIEW `_role` ASselect`lms_data_repository`.`enterprise_role`.`id` AS `id`,`lms_data_repository`.`enterprise_role`.`roleId` AS `roleId`,`lms_data_repository`.`enterprise_role`.`roleName` AS `roleName`,`lms_data_repository`.`enterprise_role`.`roleType` AS `roleType`,`lms_data_repository`.`enterprise_role`.`roleDesc` AS `roleDesc`,`lms_data_repository`.`enterprise_role`.`operation` AS `operation`,`lms_data_repository`.`enterprise_role`.`operationByUserId` AS `operationByUserId`,`lms_data_repository`.`enterprise_role`.`operationByUser` AS `operationByUser`,`lms_data_repository`.`enterprise_role`.`operationAt` AS `operationAt`from`lms_data_repository`.`enterprise_role`
_user_group_role
CREATE ALGORITHM = UNDEFINED DEFINER = `root` @`%` SQL SECURITY DEFINER VIEW `_user_group_role` ASselect`lms_data_repository`.`enterprise_user_group_role`.`id` AS `id`,`lms_data_repository`.`enterprise_user_group_role`.`userId` AS `userId`,`lms_data_repository`.`enterprise_user_group_role`.`groupId` AS `groupId`,`lms_data_repository`.`enterprise_user_group_role`.`roleId` AS `roleId`,`lms_data_repository`.`enterprise_user_group_role`.`roleDeadline` AS `roleDeadline`,`lms_data_repository`.`enterprise_user_group_role`.`operation` AS `operation`,`lms_data_repository`.`enterprise_user_group_role`.`operationByUserId` AS `operationByUserId`,`lms_data_repository`.`enterprise_user_group_role`.`operationByUser` AS `operationByUser`,`lms_data_repository`.`enterprise_user_group_role`.`operationAt` AS `operationAt`from`lms_data_repository`.`enterprise_user_group_role`
_user_group_role_page
CREATE ALGORITHM = UNDEFINED DEFINER = `root` @`%` SQL SECURITY DEFINER VIEW `_user_group_role_page` ASselect`lms_data_repository`.`enterprise_user_group_role_page`.`id` AS `id`,`lms_data_repository`.`enterprise_user_group_role_page`.`appId` AS `appId`,`lms_data_repository`.`enterprise_user_group_role_page`.`user` AS `user`,`lms_data_repository`.`enterprise_user_group_role_page`.`group` AS `group`,`lms_data_repository`.`enterprise_user_group_role_page`.`role` AS `role`,`lms_data_repository`.`enterprise_user_group_role_page`.`page` AS `page`,`lms_data_repository`.`enterprise_user_group_role_page`.`allowOrDeny` AS `allowOrDeny`,`lms_data_repository`.`enterprise_user_group_role_page`.`desc` AS `desc`,`lms_data_repository`.`enterprise_user_group_role_page`.`source` AS `source`,`lms_data_repository`.`enterprise_user_group_role_page`.`operation` AS `operation`,`lms_data_repository`.`enterprise_user_group_role_page`.`operationByUserId` AS `operationByUserId`,`lms_data_repository`.`enterprise_user_group_role_page`.`operationByUser` AS `operationByUser`,`lms_data_repository`.`enterprise_user_group_role_page`.`operationAt` AS `operationAt`from`lms_data_repository`.`enterprise_user_group_role_page`where((`lms_data_repository`.`enterprise_user_group_role_page`.`appId` = 'lms-public-hygiene')or (`lms_data_repository`.`enterprise_user_group_role_page`.`appId` = '*'))
_user_group_role_resource
CREATE ALGORITHM = UNDEFINED DEFINER = `root` @`%` SQL SECURITY DEFINER VIEW `_user_group_role_resource` ASselect`lms_data_repository`.`enterprise_user_group_role_resource`.`id` AS `id`,`lms_data_repository`.`enterprise_user_group_role_resource`.`appId` AS `appId`,`lms_data_repository`.`enterprise_user_group_role_resource`.`user` AS `user`,`lms_data_repository`.`enterprise_user_group_role_resource`.`group` AS `group`,`lms_data_repository`.`enterprise_user_group_role_resource`.`role` AS `role`,`lms_data_repository`.`enterprise_user_group_role_resource`.`resource` AS `resource`,`lms_data_repository`.`enterprise_user_group_role_resource`.`allowOrDeny` AS `allowOrDeny`,`lms_data_repository`.`enterprise_user_group_role_resource`.`desc` AS `desc`,`lms_data_repository`.`enterprise_user_group_role_resource`.`source` AS `source`,`lms_data_repository`.`enterprise_user_group_role_resource`.`operation` AS `operation`,`lms_data_repository`.`enterprise_user_group_role_resource`.`operationByUserId` AS `operationByUserId`,`lms_data_repository`.`enterprise_user_group_role_resource`.`operationByUser` AS `operationByUser`,`lms_data_repository`.`enterprise_user_group_role_resource`.`operationAt` AS `operationAt`from`lms_data_repository`.`enterprise_user_group_role_resource`where((`lms_data_repository`.`enterprise_user_group_role_resource`.`appId` = 'lms-public-hygiene')or (`lms_data_repository`.`enterprise_user_group_role_resource`.`appId` = '*'))
_view01_user
CREATE ALGORITHM = UNDEFINED DEFINER = `root` @`%` SQL SECURITY DEFINER VIEW `_view01_user` ASselect`lms_data_repository`.`enterprise_view01_user`.`id` AS `id`,`lms_data_repository`.`enterprise_view01_user`.`idSequence` AS `idSequence`,`lms_data_repository`.`enterprise_view01_user`.`userId` AS `userId`,`lms_data_repository`.`enterprise_view01_user`.`username` AS `username`,`lms_data_repository`.`enterprise_view01_user`.`phoneNumber` AS `phoneNumber`,`lms_data_repository`.`enterprise_view01_user`.`email` AS `email`,`lms_data_repository`.`enterprise_view01_user`.`userStatus` AS `userStatus`,`lms_data_repository`.`enterprise_view01_user`.`qiweiId` AS `qiweiId`,`lms_data_repository`.`enterprise_view01_user`.`userConfig` AS `userConfig`,`lms_data_repository`.`enterprise_view01_user`.`password` AS `password`,`lms_data_repository`.`enterprise_view01_user`.`md5Salt` AS `md5Salt`,`lms_data_repository`.`enterprise_view01_user`.`clearTextPassword` AS `clearTextPassword`,`lms_data_repository`.`enterprise_view01_user`.`operation` AS `operation`,`lms_data_repository`.`enterprise_view01_user`.`operationByUserId` AS `operationByUserId`,`lms_data_repository`.`enterprise_view01_user`.`operationByUser` AS `operationByUser`,`lms_data_repository`.`enterprise_view01_user`.`operationAt` AS `operationAt`from`lms_data_repository`.`enterprise_view01_user`
_view02_user_app
CREATE ALGORITHM = UNDEFINED DEFINER = `root` @`%` SQL SECURITY DEFINER VIEW `_view02_user_app` ASselect`lms_data_repository`.`enterprise_view02_user_app`.`id` AS `id`,`lms_data_repository`.`enterprise_view02_user_app`.`userId` AS `userId`,`lms_data_repository`.`enterprise_view02_user_app`.`appId` AS `appId`from`lms_data_repository`.`enterprise_view02_user_app`where(`lms_data_repository`.`enterprise_view02_user_app`.`appId` = 'lms-public-hygiene')
view01_class
CREATE ALGORITHM = UNDEFINED DEFINER = `root` @`%` SQL SECURITY DEFINER VIEW `view01_class` ASselect`lms_data_repository`.`lms_student_admin__class`.`id` AS `id`,`lms_data_repository`.`lms_student_admin__class`.`year` AS `year`,`lms_data_repository`.`lms_student_admin__class`.`academicYear` AS `academicYear`,`lms_data_repository`.`lms_student_admin__class`.`semester` AS `semester`,`lms_data_repository`.`lms_student_admin__class`.`segment` AS `segment`,`lms_data_repository`.`lms_student_admin__class`.`level` AS `level`,`lms_data_repository`.`lms_student_admin__class`.`number` AS `number`,`lms_data_repository`.`lms_student_admin__class`.`classId` AS `classId`,`lms_data_repository`.`lms_student_admin__class`.`className` AS `className`,`lms_data_repository`.`lms_student_admin__class`.`classNum` AS `classNum`,`lms_data_repository`.`lms_student_admin__class`.`formTeacherId` AS `formTeacherId`,`lms_data_repository`.`lms_student_admin__class`.`formTeacherName` AS `formTeacherName`,`lms_data_repository`.`lms_student_admin__class`.`formTeacherGender` AS `formTeacherGender`,`lms_data_repository`.`lms_student_admin__class`.`formTeacherContact` AS `formTeacherContact`,`lms_data_repository`.`lms_student_admin__class`.`learningTrack` AS `learningTrack`,`lms_data_repository`.`lms_student_admin__class`.`classType` AS `classType`,`lms_data_repository`.`lms_student_admin__class`.`classTagList` AS `classTagList`,`lms_data_repository`.`lms_student_admin__class`.`classCreatedBy` AS `classCreatedBy`,`lms_data_repository`.`lms_student_admin__class`.`remarks` AS `remarks`,`lms_data_repository`.`lms_student_admin__class`.`classStatus` AS `classStatus`,`lms_data_repository`.`lms_student_admin__class`.`operation` AS `operation`,`lms_data_repository`.`lms_student_admin__class`.`operationByUserId` AS `operationByUserId`,`lms_data_repository`.`lms_student_admin__class`.`operationByUser` AS `operationByUser`,`lms_data_repository`.`lms_student_admin__class`.`operationAt` AS `operationAt`from`lms_data_repository`.`lms_student_admin__class`