增加属于自己的cursorrules

This commit is contained in:
dengqichen 2024-12-02 17:22:31 +08:00
parent 4742437fe7
commit adb072fe52
3 changed files with 1473 additions and 8 deletions

File diff suppressed because it is too large Load Diff

View File

@ -38,7 +38,6 @@ public class SecurityConfig {
.requestMatchers(
"/api/v1/user/login",
"/api/v1/user/register",
"/api/v1/tenant/1/enabled",
"/api/v1/tenant/list",
"/swagger-ui/**",
"/v3/api-docs/**",

View File

@ -160,13 +160,6 @@ CREATE TABLE sys_role_tag_relation (
-- 用户角色关联表
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',
role_id BIGINT NOT NULL COMMENT '角色ID',