增加属于自己的cursorrules
This commit is contained in:
parent
4742437fe7
commit
adb072fe52
1473
backend/docs/deploy-ease-workflow.md
Normal file
1473
backend/docs/deploy-ease-workflow.md
Normal file
File diff suppressed because it is too large
Load Diff
@ -38,7 +38,6 @@ public class SecurityConfig {
|
|||||||
.requestMatchers(
|
.requestMatchers(
|
||||||
"/api/v1/user/login",
|
"/api/v1/user/login",
|
||||||
"/api/v1/user/register",
|
"/api/v1/user/register",
|
||||||
"/api/v1/tenant/1/enabled",
|
|
||||||
"/api/v1/tenant/list",
|
"/api/v1/tenant/list",
|
||||||
"/swagger-ui/**",
|
"/swagger-ui/**",
|
||||||
"/v3/api-docs/**",
|
"/v3/api-docs/**",
|
||||||
|
|||||||
@ -160,13 +160,6 @@ CREATE TABLE sys_role_tag_relation (
|
|||||||
|
|
||||||
-- 用户角色关联表
|
-- 用户角色关联表
|
||||||
CREATE TABLE sys_user_role (
|
CREATE TABLE sys_user_role (
|
||||||
id BIGINT AUTO_INCREMENT PRIMARY KEY COMMENT '主键ID',
|
|
||||||
create_by VARCHAR(255) NULL COMMENT '创建人',
|
|
||||||
create_time DATETIME(6) NULL COMMENT '创建时间',
|
|
||||||
deleted BIT NOT NULL DEFAULT 0 COMMENT '是否删除(0:未删除,1:已删除)',
|
|
||||||
update_by VARCHAR(255) NULL COMMENT '更新人',
|
|
||||||
update_time DATETIME(6) NULL COMMENT '更新时间',
|
|
||||||
version INT NOT NULL DEFAULT 0 COMMENT '乐观锁版本号',
|
|
||||||
|
|
||||||
user_id BIGINT NOT NULL COMMENT '用户ID',
|
user_id BIGINT NOT NULL COMMENT '用户ID',
|
||||||
role_id BIGINT NOT NULL COMMENT '角色ID',
|
role_id BIGINT NOT NULL COMMENT '角色ID',
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user