数据结构
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 = 3 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,`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 = 43 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 '数据JSON',`packageContent` longtext 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 = 582 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 = 392 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 '测试用例步骤;',`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 = 17 DEFAULT CHARSET = utf8mb4 COLLATE = utf8mb4_bin COMMENT = '用户session表; deviceId 维度;软删除未启用;'
restaurant
CREATE TABLE `restaurant` (`id` int(11) NOT NULL AUTO_INCREMENT,`idSequence` varchar(255) CHARACTER SET utf8 NOT NULL DEFAULT '' COMMENT '自增id',`restaurantId` varchar(255) DEFAULT NULL COMMENT '餐厅ID',`restaurantName` varchar(255) DEFAULT NULL COMMENT '餐厅名称',`tableQuantity` int(11) DEFAULT NULL COMMENT '餐桌数量',`tableSeat` int(11) DEFAULT NULL COMMENT '每桌席位',`startTableNumber` int(11) DEFAULT NULL COMMENT '起始桌号',`remarks` varchar(1023) DEFAULT NULL COMMENT '备注',`operation` varchar(255) DEFAULT NULL 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 '操作时间',PRIMARY KEY (`id`) USING BTREE,UNIQUE KEY `restaurantId` (`restaurantId`) USING BTREE,KEY `restaurantName` (`restaurantName`) USING BTREE) ENGINE = InnoDB AUTO_INCREMENT = 29 DEFAULT CHARSET = utf8mb4 COLLATE = utf8mb4_bin
restaurant_student
CREATE TABLE `restaurant_student` (`id` int(11) NOT NULL AUTO_INCREMENT,`studentId` varchar(255) DEFAULT NULL,`idSequence` varchar(255) DEFAULT NULL,`restaurantId` varchar(255) DEFAULT NULL COMMENT '餐厅id',`tableNumber` int(11) DEFAULT NULL COMMENT '桌号',`seatNumber` int(11) DEFAULT NULL COMMENT '座位号',`batch` varchar(255) DEFAULT NULL COMMENT '用餐批次',`remarks` text ,`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 `studentId` (`studentId`) USING BTREE,KEY `restaurantId` (`restaurantId`) USING BTREE,KEY `batch` (`batch`) USING BTREE) ENGINE = InnoDB AUTO_INCREMENT = 4 DEFAULT CHARSET = utf8mb4 COLLATE = utf8mb4_bin
restaurant_student_history
CREATE TABLE `restaurant_student_history` (`id` int(11) NOT NULL AUTO_INCREMENT,`year` varchar(255) DEFAULT NULL,`semester` varchar(255) DEFAULT NULL,`studentId` varchar(255) DEFAULT NULL,`classId` varchar(255) DEFAULT NULL,`restaurantId` varchar(255) DEFAULT NULL COMMENT '餐厅id',`restaurantName` varchar(255) DEFAULT NULL COMMENT '餐厅名称',`tableNumber` int(11) DEFAULT NULL COMMENT '桌号',`seatNumber` int(11) DEFAULT NULL COMMENT '座位号',`batch` varchar(255) DEFAULT NULL COMMENT '用餐批次',`remarks` text ,`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 `studentId` (`studentId`) USING BTREE,KEY `restaurantId` (`restaurantId`) USING BTREE,KEY `batch` (`batch`) USING BTREE) ENGINE = InnoDB AUTO_INCREMENT = 6197 DEFAULT CHARSET = utf8mb4 COLLATE = utf8mb4_bin
视图
_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-restaurant')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-restaurant')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-restaurant')
view01_restaurant
CREATE ALGORITHM = UNDEFINED DEFINER = `root` @`%` SQL SECURITY DEFINER VIEW `view01_restaurant` ASselect`restaurant`.`id` AS `id`,`restaurant`.`idSequence` AS `idSequence`,`restaurant`.`restaurantId` AS `restaurantId`,`restaurant`.`restaurantName` AS `restaurantName`,`restaurant`.`tableQuantity` AS `tableQuantity`,`restaurant`.`tableSeat` AS `tableSeat`,`restaurant`.`startTableNumber` AS `startTableNumber`,`restaurant`.`remarks` AS `remarks`,`restaurant`.`operation` AS `operation`,`restaurant`.`operationByUserId` AS `operationByUserId`,`restaurant`.`operationByUser` AS `operationByUser`,`restaurant`.`operationAt` AS `operationAt`,(`restaurant`.`tableQuantity` * `restaurant`.`tableSeat`) AS `seatTotal`from`restaurant`
view01_restaurant_student
CREATE ALGORITHM = UNDEFINED DEFINER = `root` @`%` SQL SECURITY DEFINER VIEW `view01_restaurant_student` ASselect`lms_restaurant`.`restaurant_student`.`id` AS `id`,`lms_restaurant`.`restaurant_student`.`studentId` AS `studentId`,`lms_restaurant`.`restaurant_student`.`idSequence` AS `idSequence`,`lms_restaurant`.`restaurant_student`.`restaurantId` AS `restaurantId`,`lms_restaurant`.`restaurant_student`.`tableNumber` AS `tableNumber`,`lms_restaurant`.`restaurant_student`.`seatNumber` AS `seatNumber`,`lms_restaurant`.`restaurant_student`.`batch` AS `batch`,`lms_restaurant`.`restaurant_student`.`remarks` AS `remarks`,`lms_restaurant`.`restaurant_student`.`operation` AS `operation`,`lms_restaurant`.`restaurant_student`.`operationByUserId` AS `operationByUserId`,`lms_restaurant`.`restaurant_student`.`operationByUser` AS `operationByUser`,`lms_restaurant`.`restaurant_student`.`operationAt` AS `operationAt`,`view02_student_basic_class`.`name` AS `name`,`view02_student_basic_class`.`className` AS `className`,`view02_student_basic_class`.`gender` AS `gender`,`view02_student_basic_class`.`studentStatus` AS `studentStatus`,`view02_student_basic_class`.`formTeacherId` AS `formTeacherId`,`view02_student_basic_class`.`formTeacherName` AS `formTeacherName`from(`lms_restaurant`.`restaurant_student`left join `lms_restaurant`.`view02_student_basic_class` on ((`lms_restaurant`.`restaurant_student`.`studentId` = `view02_student_basic_class`.`studentId`)))
view02_restaurant_student
CREATE ALGORITHM = UNDEFINED DEFINER = `root` @`%` SQL SECURITY DEFINER VIEW `view02_restaurant_student` ASselect`lms_restaurant`.`restaurant_student`.`id` AS `id`,`lms_restaurant`.`restaurant_student`.`studentId` AS `studentId`,`lms_restaurant`.`restaurant_student`.`idSequence` AS `idSequence`,`lms_restaurant`.`restaurant_student`.`restaurantId` AS `restaurantId`,`lms_restaurant`.`restaurant_student`.`tableNumber` AS `tableNumber`,`lms_restaurant`.`restaurant_student`.`seatNumber` AS `seatNumber`,`lms_restaurant`.`restaurant_student`.`batch` AS `batch`,`lms_restaurant`.`restaurant_student`.`remarks` AS `remarks`,`lms_restaurant`.`restaurant_student`.`operation` AS `operation`,`lms_restaurant`.`restaurant_student`.`operationByUserId` AS `operationByUserId`,`lms_restaurant`.`restaurant_student`.`operationByUser` AS `operationByUser`,`lms_restaurant`.`restaurant_student`.`operationAt` AS `operationAt`,`view02_student_basic_class`.`name` AS `name`,`view02_student_basic_class`.`className` AS `className`,`view02_student_basic_class`.`gender` AS `gender`,`view02_student_basic_class`.`studentStatus` AS `studentStatus`,`lms_restaurant`.`restaurant`.`restaurantName` AS `restaurantName`,`view02_student_basic_class`.`classId` AS `classId`from((`lms_restaurant`.`restaurant_student`left join `lms_restaurant`.`view02_student_basic_class` on ((`lms_restaurant`.`restaurant_student`.`studentId` = `view02_student_basic_class`.`studentId`)))left join `lms_restaurant`.`restaurant` on ((`lms_restaurant`.`restaurant_student`.`restaurantId` = `lms_restaurant`.`restaurant`.`restaurantId`)))
view02_restaurant_student_detail
CREATE ALGORITHM = UNDEFINED DEFINER = `root` @`%` SQL SECURITY DEFINER VIEW `view02_restaurant_student_detail` ASselect`lms_restaurant`.`restaurant_student`.`id` AS `id`,`lms_restaurant`.`restaurant_student`.`studentId` AS `studentId`,`lms_restaurant`.`restaurant_student`.`idSequence` AS `idSequence`,`lms_restaurant`.`restaurant_student`.`restaurantId` AS `restaurantId`,`lms_restaurant`.`restaurant_student`.`tableNumber` AS `tableNumber`,`lms_restaurant`.`restaurant_student`.`seatNumber` AS `seatNumber`,`lms_restaurant`.`restaurant_student`.`batch` AS `batch`,`lms_restaurant`.`restaurant_student`.`remarks` AS `remarks`,`lms_restaurant`.`restaurant_student`.`operation` AS `operation`,`lms_restaurant`.`restaurant_student`.`operationByUserId` AS `operationByUserId`,`lms_restaurant`.`restaurant_student`.`operationByUser` AS `operationByUser`,`lms_restaurant`.`restaurant_student`.`operationAt` AS `operationAt`,`view02_student_basic_class`.`name` AS `name`,`view02_student_basic_class`.`className` AS `className`,`view02_student_basic_class`.`gender` AS `gender`,`view02_student_basic_class`.`studentStatus` AS `studentStatus`,`lms_restaurant`.`restaurant`.`restaurantName` AS `restaurantName`from((`lms_restaurant`.`restaurant_student`left join `lms_restaurant`.`view02_student_basic_class` on ((`lms_restaurant`.`restaurant_student`.`studentId` = `view02_student_basic_class`.`studentId`)))left join `lms_restaurant`.`restaurant` on ((`lms_restaurant`.`restaurant_student`.`restaurantId` = `lms_restaurant`.`restaurant`.`restaurantId`)))
view02_student_basic_class
CREATE ALGORITHM = UNDEFINED DEFINER = `root` @`%` SQL SECURITY DEFINER VIEW `view02_student_basic_class` ASselect`view01_student_basic_class`.`studentId` AS `studentId`,`view01_student_basic_class`.`name` AS `name`,`view01_student_basic_class`.`year` AS `year`,`view01_student_basic_class`.`academicYear` AS `academicYear`,`view01_student_basic_class`.`semester` AS `semester`,`view01_student_basic_class`.`classNum` AS `classNum`,`view01_student_basic_class`.`studentStatus` AS `studentStatus`,`view01_student_basic_class`.`segment` AS `segment`,`view01_student_basic_class`.`level` AS `level`,`view01_student_basic_class`.`remarks` AS `remarks`,`view01_student_basic_class`.`newRemarks` AS `newRemarks`,`view01_student_basic_class`.`gender` AS `gender`,`view01_student_basic_class`.`guardian2Contact` AS `guardian2Contact`,`view01_student_basic_class`.`guardian2Relationship` AS `guardian2Relationship`,`view01_student_basic_class`.`guardian2Name` AS `guardian2Name`,`view01_student_basic_class`.`guardian1Contact` AS `guardian1Contact`,`view01_student_basic_class`.`guardian1Relationship` AS `guardian1Relationship`,`view01_student_basic_class`.`guardian1Name` AS `guardian1Name`,`view01_student_basic_class`.`classId` AS `classId`,`view01_student_basic_class`.`className` AS `className`,`view01_student_basic_class`.`requestType` AS `requestType`,`view01_student_basic_class`.`completedClassAssignedYesOrNo` AS `completedClassAssignedYesOrNo`,`view01_student_basic_class`.`completedEnrollmentRecordYesOrNo` AS `completedEnrollmentRecordYesOrNo`,`view01_student_basic_class`.`completedLogisticsAssignedYesOrNo` AS `completedLogisticsAssignedYesOrNo`,`view01_student_basic_class`.`completedPaymentYesOrNo` AS `completedPaymentYesOrNo`,`view01_student_basic_class`.`completedEnrollmentYesOrNo` AS `completedEnrollmentYesOrNo`,`view01_student_basic_class`.`completedQuitYesOrNo` AS `completedQuitYesOrNo`,`view01_student_basic_class`.`id` AS `id`,`view01_student_basic_class`.`compeletedUpgradeYesOrNo` AS `compeletedUpgradeYesOrNo`,`view01_student_basic_class`.`enrollmentYear` AS `enrollmentYear`,`view01_student_basic_class`.`middleSchoolExamScore` AS `middleSchoolExamScore`,`view01_student_basic_class`.`number` AS `number`,`view01_student_basic_class`.`formTeacherId` AS `formTeacherId`,`view01_student_basic_class`.`formTeacherName` AS `formTeacherName`from`lms_student_admin`.`view01_student_basic_class`