-
Notifications
You must be signed in to change notification settings - Fork 10
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'feature/AncientApparition' into develop
- Loading branch information
Showing
221 changed files
with
6,554 additions
and
4,018 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
4 changes: 2 additions & 2 deletions
4
example/winx-common/src/main/resources/wings-conf/spring-sentry.properties
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
2 changes: 1 addition & 1 deletion
2
...e/winx-common/src/main/resources/wings-flywave/master/00-init/9999-99-99u01-demo-init.sql
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 |
---|---|---|
@@ -1 +1 @@ | ||
DROP TABLE IF EXISTS `winx_user_detail`; -- 210/用户详情; | ||
DROP TABLE IF EXISTS `winx_user_detail`; -- 210/User Detail; |
28 changes: 14 additions & 14 deletions
28
...e/winx-common/src/main/resources/wings-flywave/master/00-init/9999-99-99v01-demo-init.sql
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 |
---|---|---|
@@ -1,28 +1,28 @@ | ||
-- 时区统一(GMT+8),编码统一(utf8mb4) | ||
-- Unify timezone (GMT+8), Unify charset (utf8mb4) | ||
-- CREATE DATABASE `wings_example` /*!40100 DEFAULT CHARACTER SET utf8mb4 */; | ||
|
||
CREATE TABLE `winx_user_detail` ( | ||
`id` BIGINT(20) NOT NULL COMMENT '主键', | ||
`create_dt` DATETIME(3) NOT NULL DEFAULT NOW(3) COMMENT '创建日时(系统)', | ||
`modify_dt` DATETIME(3) NOT NULL DEFAULT '1000-01-01' ON UPDATE NOW(3) COMMENT '修改日时(系统)', | ||
`delete_dt` DATETIME(3) NOT NULL DEFAULT '1000-01-01' COMMENT '标记删除', | ||
`commit_id` BIGINT(20) NOT NULL COMMENT '提交id', | ||
`id` BIGINT(20) NOT NULL COMMENT 'primary key', | ||
`create_dt` DATETIME(3) NOT NULL DEFAULT NOW(3) COMMENT 'created datetime(sys)', | ||
`modify_dt` DATETIME(3) NOT NULL DEFAULT '1000-01-01' ON UPDATE NOW(3) COMMENT 'modified datetime(sys)', | ||
`delete_dt` DATETIME(3) NOT NULL DEFAULT '1000-01-01' COMMENT 'logic deleted datetime', | ||
`commit_id` BIGINT(20) NOT NULL COMMENT 'commit id', | ||
`user_id` BIGINT(20) NOT NULL COMMENT 'win_user_basis.id', | ||
`user_type` INT(11) NOT NULL DEFAULT '0' COMMENT '用户类型/21001##:用户|运营|客服', | ||
`email` VARCHAR(100) NOT NULL DEFAULT '' COMMENT '用户邮箱', | ||
`user_type` INT(11) NOT NULL DEFAULT '0' COMMENT 'user type/21001##:customer|operator|helpdesk', | ||
`email` VARCHAR(100) NOT NULL DEFAULT '' COMMENT 'user email', | ||
PRIMARY KEY (`id`), | ||
UNIQUE INDEX uq_user_id (`user_id`), | ||
UNIQUE INDEX ix_email (`email`) | ||
) ENGINE = InnoDB | ||
DEFAULT CHARSET = utf8mb4 COMMENT ='210/用户详情'; | ||
DEFAULT CHARSET = utf8mb4 COMMENT ='210/User Detail'; | ||
|
||
-- ----------- | ||
|
||
INSERT IGNORE INTO `sys_light_sequence` (`seq_name`, `block_id`, `next_val`, `step_val`, `comments`) | ||
VALUES ('winx_user_detail', 0, 1000, 100, '动态插入5位起,静态5位'); | ||
VALUES ('winx_user_detail', 0, 1000, 100, 'dynamic 5+ digits, static 5 digits'); | ||
|
||
REPLACE INTO `sys_constant_enum` (`id`, `type`, `code`, `hint`, `info`) | ||
VALUES (2100100, 'user_type', 'user_type', '用户类型', 'classpath:/wings-tmpl/ConstantEnumTemplate.java'), | ||
(2100101, 'user_type', 'customer', '用户', '用户'), | ||
(2100102, 'user_type', 'operator', '运营', '运营'), | ||
(2100103, 'user_type', 'helpdesk', '客服', '客服'); | ||
VALUES (2100100, 'user_type', 'user_type', 'User Type', 'classpath:/wings-tmpl/ConstantEnumTemplate.java'), | ||
(2100101, 'user_type', 'customer', 'customer', 'customer'), | ||
(2100102, 'user_type', 'operator', 'operator', 'operator'), | ||
(2100103, 'user_type', 'helpdesk', 'helpdesk', 'helpdesk'); |
2 changes: 1 addition & 1 deletion
2
example/winx-devops/src/main/resources/wings-conf/wings-boot-admin.properties
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
Submodule docs
updated
22 files
Submodule mirana
updated
from e9215f to 25c2ba
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
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.