数据结构
12141表总览
普通表
_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 ROW_FORMAT = DYNAMIC 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 = 22 DEFAULT CHARSET = utf8mb4 ROW_FORMAT = DYNAMIC COMMENT = '常量表; 软删除未启用;'
_constant_ui
- 常量表;
CREATE TABLE `_constant_ui` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`constantKey` varchar(255) DEFAULT NULL,
`constantType` varchar(255) DEFAULT NULL COMMENT '常量类型; object, array',
`pageId` varchar(255) DEFAULT 'all' COMMENT '页面id',
`desc` varchar(255) DEFAULT NULL COMMENT '描述',
`en` text COMMENT '常量内容; object, array',
`zh` 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,
UNIQUE KEY `pageId_constantKey_unique` (`constantKey`, `pageId`) USING BTREE
) ENGINE = InnoDB AUTO_INCREMENT = 3 DEFAULT CHARSET = utf8mb4 ROW_FORMAT = DYNAMIC 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',
`pageIcon` longtext COMMENT '页面icon,svg格式',
`pageHook` varchar(255) DEFAULT NULL,
`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 = 130 DEFAULT CHARSET = utf8mb4 ROW_FORMAT = DYNAMIC 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 = 184 DEFAULT CHARSET = utf8mb4 ROW_FORMAT = DYNAMIC 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 = 524 DEFAULT CHARSET = utf8mb4 ROW_FORMAT = DYNAMIC 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 ROW_FORMAT = DYNAMIC 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 ROW_FORMAT = DYNAMIC COMMENT = 'ui 施工方案'
_user
- 用户表
CREATE TABLE `_user` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`userId` varchar(255) DEFAULT NULL COMMENT '主键id',
`username` varchar(255) DEFAULT NULL COMMENT '用户名(登陆)',
`clearTextPassword` varchar(255) DEFAULT NULL COMMENT '明文密码',
`password` varchar(255) DEFAULT NULL COMMENT '密码',
`md5Salt` varchar(255) DEFAULT NULL COMMENT 'md5Salt',
`userStatus` varchar(255) DEFAULT 'active' COMMENT '用户账号状态:活跃或关闭',
`userType` varchar(255) DEFAULT NULL COMMENT '用户类型; staff, student.',
`config` mediumtext COMMENT '配置信息',
`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,
UNIQUE KEY `username_index` (`username`) USING BTREE,
UNIQUE KEY `userId_index` (`userId`) USING BTREE
) ENGINE = InnoDB AUTO_INCREMENT = 8 DEFAULT CHARSET = utf8mb4 ROW_FORMAT = DYNAMIC COMMENT = '用户表'
_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 = 37 DEFAULT CHARSET = utf8mb4 ROW_FORMAT = DYNAMIC COMMENT = '用户session表; deviceId 维度;软删除未启用;'
视图
_directory_user_session
CREATE ALGORITHM = UNDEFINED DEFINER = `root` @`localhost` SQL SECURITY DEFINER VIEW `_directory_user_session` AS
select
`jh_enterprise_v2_data_repository`.`enterprise_directory_user_session`.`id` AS `id`,
`jh_enterprise_v2_data_repository`.`enterprise_directory_user_session`.`userId` AS `userId`,
`jh_enterprise_v2_data_repository`.`enterprise_directory_user_session`.`userIp` AS `userIp`,
`jh_enterprise_v2_data_repository`.`enterprise_directory_user_session`.`userIpRegion` AS `userIpRegion`,
`jh_enterprise_v2_data_repository`.`enterprise_directory_user_session`.`userAgent` AS `userAgent`,
`jh_enterprise_v2_data_repository`.`enterprise_directory_user_session`.`deviceId` AS `deviceId`,
`jh_enterprise_v2_data_repository`.`enterprise_directory_user_session`.`deviceType` AS `deviceType`,
`jh_enterprise_v2_data_repository`.`enterprise_directory_user_session`.`socketStatus` AS `socketStatus`,
`jh_enterprise_v2_data_repository`.`enterprise_directory_user_session`.`authToken` AS `authToken`,
`jh_enterprise_v2_data_repository`.`enterprise_directory_user_session`.`operation` AS `operation`,
`jh_enterprise_v2_data_repository`.`enterprise_directory_user_session`.`operationByUserId` AS `operationByUserId`,
`jh_enterprise_v2_data_repository`.`enterprise_directory_user_session`.`operationByUser` AS `operationByUser`,
`jh_enterprise_v2_data_repository`.`enterprise_directory_user_session`.`operationAt` AS `operationAt`
from
`jh_enterprise_v2_data_repository`.`enterprise_directory_user_session`
_group
CREATE ALGORITHM = UNDEFINED DEFINER = `root` @`localhost` SQL SECURITY DEFINER VIEW `_group` AS
select
`jh_enterprise_v2_data_repository`.`enterprise_group`.`id` AS `id`,
`jh_enterprise_v2_data_repository`.`enterprise_group`.`groupId` AS `groupId`,
`jh_enterprise_v2_data_repository`.`enterprise_group`.`groupLastId` AS `groupLastId`,
`jh_enterprise_v2_data_repository`.`enterprise_group`.`groupPath` AS `groupPath`,
`jh_enterprise_v2_data_repository`.`enterprise_group`.`groupName` AS `groupName`,
`jh_enterprise_v2_data_repository`.`enterprise_group`.`groupDeptName` AS `groupDeptName`,
`jh_enterprise_v2_data_repository`.`enterprise_group`.`groupAllName` AS `groupAllName`,
`jh_enterprise_v2_data_repository`.`enterprise_group`.`principalId` AS `principalId`,
`jh_enterprise_v2_data_repository`.`enterprise_group`.`headId` AS `headId`,
`jh_enterprise_v2_data_repository`.`enterprise_group`.`leadId` AS `leadId`,
`jh_enterprise_v2_data_repository`.`enterprise_group`.`groupDesc` AS `groupDesc`,
`jh_enterprise_v2_data_repository`.`enterprise_group`.`operation` AS `operation`,
`jh_enterprise_v2_data_repository`.`enterprise_group`.`operationByUserId` AS `operationByUserId`,
`jh_enterprise_v2_data_repository`.`enterprise_group`.`operationByUser` AS `operationByUser`,
`jh_enterprise_v2_data_repository`.`enterprise_group`.`operationAt` AS `operationAt`
from
`jh_enterprise_v2_data_repository`.`enterprise_group`
_role
CREATE ALGORITHM = UNDEFINED DEFINER = `root` @`localhost` SQL SECURITY DEFINER VIEW `_role` AS
select
`jh_enterprise_v2_data_repository`.`enterprise_role`.`id` AS `id`,
`jh_enterprise_v2_data_repository`.`enterprise_role`.`roleId` AS `roleId`,
`jh_enterprise_v2_data_repository`.`enterprise_role`.`roleName` AS `roleName`,
`jh_enterprise_v2_data_repository`.`enterprise_role`.`roleType` AS `roleType`,
`jh_enterprise_v2_data_repository`.`enterprise_role`.`roleDesc` AS `roleDesc`,
`jh_enterprise_v2_data_repository`.`enterprise_role`.`operation` AS `operation`,
`jh_enterprise_v2_data_repository`.`enterprise_role`.`operationByUserId` AS `operationByUserId`,
`jh_enterprise_v2_data_repository`.`enterprise_role`.`operationByUser` AS `operationByUser`,
`jh_enterprise_v2_data_repository`.`enterprise_role`.`operationAt` AS `operationAt`
from
`jh_enterprise_v2_data_repository`.`enterprise_role`
_user_group_role
CREATE ALGORITHM = UNDEFINED DEFINER = `root` @`localhost` SQL SECURITY DEFINER VIEW `_user_group_role` AS
select
`jh_enterprise_v2_data_repository`.`enterprise_user_group_role`.`id` AS `id`,
`jh_enterprise_v2_data_repository`.`enterprise_user_group_role`.`userId` AS `userId`,
`jh_enterprise_v2_data_repository`.`enterprise_user_group_role`.`groupId` AS `groupId`,
`jh_enterprise_v2_data_repository`.`enterprise_user_group_role`.`roleId` AS `roleId`,
`jh_enterprise_v2_data_repository`.`enterprise_user_group_role`.`roleDeadline` AS `roleDeadline`,
`jh_enterprise_v2_data_repository`.`enterprise_user_group_role`.`operation` AS `operation`,
`jh_enterprise_v2_data_repository`.`enterprise_user_group_role`.`operationByUserId` AS `operationByUserId`,
`jh_enterprise_v2_data_repository`.`enterprise_user_group_role`.`operationByUser` AS `operationByUser`,
`jh_enterprise_v2_data_repository`.`enterprise_user_group_role`.`operationAt` AS `operationAt`
from
`jh_enterprise_v2_data_repository`.`enterprise_user_group_role`
_user_group_role_page
CREATE ALGORITHM = UNDEFINED DEFINER = `root` @`localhost` SQL SECURITY DEFINER VIEW `_user_group_role_page` AS
select
`jh_enterprise_v2_data_repository`.`enterprise_user_group_role_page`.`id` AS `id`,
`jh_enterprise_v2_data_repository`.`enterprise_user_group_role_page`.`appId` AS `appId`,
`jh_enterprise_v2_data_repository`.`enterprise_user_group_role_page`.`user` AS `user`,
`jh_enterprise_v2_data_repository`.`enterprise_user_group_role_page`.`group` AS `group`,
`jh_enterprise_v2_data_repository`.`enterprise_user_group_role_page`.`role` AS `role`,
`jh_enterprise_v2_data_repository`.`enterprise_user_group_role_page`.`page` AS `page`,
`jh_enterprise_v2_data_repository`.`enterprise_user_group_role_page`.`allowOrDeny` AS `allowOrDeny`,
`jh_enterprise_v2_data_repository`.`enterprise_user_group_role_page`.`desc` AS `desc`,
`jh_enterprise_v2_data_repository`.`enterprise_user_group_role_page`.`source` AS `source`,
`jh_enterprise_v2_data_repository`.`enterprise_user_group_role_page`.`operation` AS `operation`,
`jh_enterprise_v2_data_repository`.`enterprise_user_group_role_page`.`operationByUserId` AS `operationByUserId`,
`jh_enterprise_v2_data_repository`.`enterprise_user_group_role_page`.`operationByUser` AS `operationByUser`,
`jh_enterprise_v2_data_repository`.`enterprise_user_group_role_page`.`operationAt` AS `operationAt`
from
`jh_enterprise_v2_data_repository`.`enterprise_user_group_role_page`
where
(
(
`jh_enterprise_v2_data_repository`.`enterprise_user_group_role_page`.`appId` = 'jianghu-bi'
)
or (
`jh_enterprise_v2_data_repository`.`enterprise_user_group_role_page`.`appId` = '*'
)
)
_user_group_role_resource
CREATE ALGORITHM = UNDEFINED DEFINER = `root` @`localhost` SQL SECURITY DEFINER VIEW `_user_group_role_resource` AS
select
`jh_enterprise_v2_data_repository`.`enterprise_user_group_role_resource`.`id` AS `id`,
`jh_enterprise_v2_data_repository`.`enterprise_user_group_role_resource`.`appId` AS `appId`,
`jh_enterprise_v2_data_repository`.`enterprise_user_group_role_resource`.`user` AS `user`,
`jh_enterprise_v2_data_repository`.`enterprise_user_group_role_resource`.`group` AS `group`,
`jh_enterprise_v2_data_repository`.`enterprise_user_group_role_resource`.`role` AS `role`,
`jh_enterprise_v2_data_repository`.`enterprise_user_group_role_resource`.`resource` AS `resource`,
`jh_enterprise_v2_data_repository`.`enterprise_user_group_role_resource`.`allowOrDeny` AS `allowOrDeny`,
`jh_enterprise_v2_data_repository`.`enterprise_user_group_role_resource`.`desc` AS `desc`,
`jh_enterprise_v2_data_repository`.`enterprise_user_group_role_resource`.`source` AS `source`,
`jh_enterprise_v2_data_repository`.`enterprise_user_group_role_resource`.`operation` AS `operation`,
`jh_enterprise_v2_data_repository`.`enterprise_user_group_role_resource`.`operationByUserId` AS `operationByUserId`,
`jh_enterprise_v2_data_repository`.`enterprise_user_group_role_resource`.`operationByUser` AS `operationByUser`,
`jh_enterprise_v2_data_repository`.`enterprise_user_group_role_resource`.`operationAt` AS `operationAt`
from
`jh_enterprise_v2_data_repository`.`enterprise_user_group_role_resource`
where
(
(
`jh_enterprise_v2_data_repository`.`enterprise_user_group_role_resource`.`appId` = 'jianghu-bi'
)
or (
`jh_enterprise_v2_data_repository`.`enterprise_user_group_role_resource`.`appId` = '*'
)
)
_view01_user
CREATE ALGORITHM = UNDEFINED DEFINER = `root` @`localhost` SQL SECURITY DEFINER VIEW `_view01_user` AS
select
`jh_enterprise_v2_data_repository`.`enterprise_view01_user`.`id` AS `id`,
`jh_enterprise_v2_data_repository`.`enterprise_view01_user`.`idSequence` AS `idSequence`,
`jh_enterprise_v2_data_repository`.`enterprise_view01_user`.`userId` AS `userId`,
`jh_enterprise_v2_data_repository`.`enterprise_view01_user`.`username` AS `username`,
`jh_enterprise_v2_data_repository`.`enterprise_view01_user`.`phoneNumber` AS `phoneNumber`,
`jh_enterprise_v2_data_repository`.`enterprise_view01_user`.`email` AS `email`,
`jh_enterprise_v2_data_repository`.`enterprise_view01_user`.`userStatus` AS `userStatus`,
`jh_enterprise_v2_data_repository`.`enterprise_view01_user`.`hrOrgRoleList` AS `hrOrgRoleList`,
`jh_enterprise_v2_data_repository`.`enterprise_view01_user`.`qiweiId` AS `qiweiId`,
`jh_enterprise_v2_data_repository`.`enterprise_view01_user`.`wechatId` AS `wechatId`,
`jh_enterprise_v2_data_repository`.`enterprise_view01_user`.`userConfig` AS `userConfig`,
`jh_enterprise_v2_data_repository`.`enterprise_view01_user`.`password` AS `password`,
`jh_enterprise_v2_data_repository`.`enterprise_view01_user`.`md5Salt` AS `md5Salt`,
`jh_enterprise_v2_data_repository`.`enterprise_view01_user`.`clearTextPassword` AS `clearTextPassword`,
`jh_enterprise_v2_data_repository`.`enterprise_view01_user`.`operation` AS `operation`,
`jh_enterprise_v2_data_repository`.`enterprise_view01_user`.`operationByUserId` AS `operationByUserId`,
`jh_enterprise_v2_data_repository`.`enterprise_view01_user`.`operationByUser` AS `operationByUser`,
`jh_enterprise_v2_data_repository`.`enterprise_view01_user`.`operationAt` AS `operationAt`
from
`jh_enterprise_v2_data_repository`.`enterprise_view01_user`
_view02_user_app
CREATE ALGORITHM = UNDEFINED DEFINER = `root` @`localhost` SQL SECURITY DEFINER VIEW `_view02_user_app` AS
select
`jh_enterprise_v2_data_repository`.`enterprise_view02_user_app`.`id` AS `id`,
`jh_enterprise_v2_data_repository`.`enterprise_view02_user_app`.`userId` AS `userId`,
`jh_enterprise_v2_data_repository`.`enterprise_view02_user_app`.`appId` AS `appId`
from
`jh_enterprise_v2_data_repository`.`enterprise_view02_user_app`
where
(
`jh_enterprise_v2_data_repository`.`enterprise_view02_user_app`.`appId` = 'jianghu-bi'
)