This repository has been archived by the owner on Oct 31, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
9 changed files
with
204 additions
and
51 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
-- Code generated by protoc-gen-saber-seaql. DO NOT EDIT. | ||
-- versions: | ||
-- - protoc-gen-saber-seaql v0.1.0 | ||
-- - protoc v4.24.0 | ||
-- source: seaql.proto | ||
|
||
-- 字典表 | ||
CREATE TABLE | ||
`dict_annote` ( | ||
`id` bigint NOT NULL AUTO_INCREMENT COMMENT '系统序号', | ||
`key` varchar(64) NOT NULL DEFAULT '' COMMENT '键', | ||
`name` varchar(64) NOT NULL DEFAULT '' COMMENT '名称', | ||
`is_pin` tinyint(1) NOT NULL COMMENT '是否锁定', | ||
`created_at` datetime NOT NULL COMMENT '创建时间', | ||
`updated_at` datetime NOT NULL COMMENT '更新时间', | ||
PRIMARY KEY (`id`) | ||
) ENGINE = InnoDB DEFAULT CHARSET = utf8mb4 COLLATE = utf8mb4_general_ci COMMENT = '字典表'; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
-- Code generated by protoc-gen-saber-seaql. DO NOT EDIT. | ||
-- versions: | ||
-- - protoc-gen-saber-seaql v0.1.0 | ||
-- - protoc v4.24.0 | ||
-- source: seaql.proto | ||
|
||
-- 字典项表 | ||
CREATE TABLE | ||
`dict_item_annote` ( | ||
`id` bigint NOT NULL AUTO_INCREMENT COMMENT '系统序号', | ||
`key` varchar(64) NOT NULL DEFAULT '' COMMENT '键', | ||
`name` varchar(64) NOT NULL DEFAULT '' COMMENT '名称', | ||
`status` tinyint(3) unsigned NOT NULL COMMENT '状态,这是状态,[0:unspecified,1:nested1,2:关闭,3:左,4:右]', | ||
`created_at` datetime NOT NULL COMMENT '创建时间', | ||
`updated_at` datetime NOT NULL COMMENT '更新时间' | ||
) ENGINE = InnoDB DEFAULT CHARSET = utf8mb4 COLLATE = utf8mb4_general_ci COMMENT = '字典项表'; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.