We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
建议相应业务模型如下:
CREATE TABLE `t_biz_visible_range` ( `biz_type` varchar(100) NOT NULL COMMENT '业务类型,如:消息通知,企业管理', `biz_id` bigint(20) NOT NULL COMMENT '业务id', `data_type` tinyint(4) NOT NULL COMMENT '数据类型1员工 2部门', `data_id` bigint(20) NOT NULL COMMENT '员工or部门id', `create_time` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP, UNIQUE KEY `uk_notice_data` (`biz_id`,`data_type`,`data_id`) USING BTREE ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='可见范围';
The text was updated successfully, but these errors were encountered:
No branches or pull requests
建议相应业务模型如下:
The text was updated successfully, but these errors were encountered: