Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

gray-guo/springbootadmin

Folders and files

NameName
Last commit message
Last commit date

Latest commit

History

6 Commits

Repository files navigation

base on spring boot3 and mybatis plus

include drools rule engine

DDL SET NAMES utf8mb4; SET FOREIGN_KEY_CHECKS = 0;


-- Table structure for rules


DROP TABLE IF EXISTS rules; CREATE TABLE rules ( id int(11) NOT NULL AUTO_INCREMENT, key varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL, condition varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL, value varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL, group_id int(11) NULL DEFAULT NULL, PRIMARY KEY (id) USING BTREE ) ENGINE = InnoDB AUTO_INCREMENT = 5 CHARACTER SET = utf8mb4 COLLATE = utf8mb4_general_ci ROW_FORMAT = Dynamic;


-- Records of rules


INSERT INTO rules VALUES (1, 'age', '==', '25', 1); INSERT INTO rules VALUES (2, 'weight', '>=', '100', 1); INSERT INTO rules VALUES (3, 'age', '==', '30', 2); INSERT INTO rules VALUES (4, 'weight', '<=', '100', 2);

SET FOREIGN_KEY_CHECKS = 1;

About

base on spring boot3 and mybatis plus

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

AltStyle によって変換されたページ (->オリジナル) /