You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
2000 lines
446 KiB
2000 lines
446 KiB
/*
|
|
Navicat Premium Dump SQL
|
|
|
|
Source Server : coin-local
|
|
Source Server Type : MySQL
|
|
Source Server Version : 80021 (8.0.21)
|
|
Source Host : 192.168.0.160:3306
|
|
Source Schema : ry-vue
|
|
|
|
Target Server Type : MySQL
|
|
Target Server Version : 80021 (8.0.21)
|
|
File Encoding : 65001
|
|
|
|
Date: 22/02/2025 15:34:12
|
|
*/
|
|
|
|
SET NAMES utf8mb4;
|
|
SET FOREIGN_KEY_CHECKS = 0;
|
|
|
|
-- ----------------------------
|
|
-- Table structure for aaaa表结构
|
|
-- ----------------------------
|
|
DROP TABLE IF EXISTS `aaaa表结构`;
|
|
CREATE TABLE `aaaa表结构` (
|
|
`模块` varchar(255) CHARACTER SET utf8 COLLATE utf8_general_ci DEFAULT NULL,
|
|
`名称结构` varchar(255) DEFAULT NULL,
|
|
`说明` varchar(255) DEFAULT NULL,
|
|
`时间` datetime DEFAULT NULL
|
|
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
|
|
|
|
-- ----------------------------
|
|
-- Records of aaaa表结构
|
|
-- ----------------------------
|
|
BEGIN;
|
|
INSERT INTO `aaaa表结构` (`模块`, `名称结构`, `说明`, `时间`) VALUES ('系统模块', 'sys_*', NULL, '2025-02-20 09:46:51');
|
|
INSERT INTO `aaaa表结构` (`模块`, `名称结构`, `说明`, `时间`) VALUES ('资金相关', 't_account_*', NULL, '2025-02-20 09:46:51');
|
|
INSERT INTO `aaaa表结构` (`模块`, `名称结构`, `说明`, `时间`) VALUES ('转账', 't_account_migrate_*', NULL, '2025-02-20 09:48:09');
|
|
INSERT INTO `aaaa表结构` (`模块`, `名称结构`, `说明`, `时间`) VALUES ('提现', 't_account_take_*', NULL, '2025-02-20 09:48:09');
|
|
INSERT INTO `aaaa表结构` (`模块`, `名称结构`, `说明`, `时间`) VALUES ('充值', 't_account_put_*', NULL, '2025-02-20 09:48:09');
|
|
INSERT INTO `aaaa表结构` (`模块`, `名称结构`, `说明`, `时间`) VALUES ('公共模块', 't_public_*', NULL, '2025-02-20 09:51:13');
|
|
INSERT INTO `aaaa表结构` (`模块`, `名称结构`, `说明`, `时间`) VALUES ('商户相关', 't_mch_*', NULL, '2025-02-20 09:51:49');
|
|
INSERT INTO `aaaa表结构` (`模块`, `名称结构`, `说明`, `时间`) VALUES ('客户相关', 't_customer_*', NULL, '2025-02-20 09:52:42');
|
|
INSERT INTO `aaaa表结构` (`模块`, `名称结构`, `说明`, `时间`) VALUES ('付款', 't_account_pay_*', NULL, '2025-02-20 09:48:09');
|
|
INSERT INTO `aaaa表结构` (`模块`, `名称结构`, `说明`, `时间`) VALUES ('表名结构说明', '业务类型+功能模块+功能+详情', '业务类型:系统=sys,业务=t 等', '2025-02-19 10:37:15');
|
|
COMMIT;
|
|
|
|
-- ----------------------------
|
|
-- Table structure for gen_table
|
|
-- ----------------------------
|
|
DROP TABLE IF EXISTS `gen_table`;
|
|
CREATE TABLE `gen_table` (
|
|
`table_id` bigint NOT NULL COMMENT '编号',
|
|
`table_name` varchar(200) DEFAULT '' COMMENT '表名称',
|
|
`table_comment` varchar(500) DEFAULT '' COMMENT '表描述',
|
|
`sub_table_name` varchar(64) DEFAULT NULL COMMENT '关联子表的表名',
|
|
`sub_table_fk_name` varchar(64) DEFAULT NULL COMMENT '子表关联的外键名',
|
|
`class_name` varchar(100) DEFAULT '' COMMENT '实体类名称',
|
|
`tpl_category` varchar(200) DEFAULT 'crud' COMMENT '使用的模板(crud单表操作 tree树表操作)',
|
|
`package_name` varchar(100) DEFAULT NULL COMMENT '生成包路径',
|
|
`module_name` varchar(30) DEFAULT NULL COMMENT '生成模块名',
|
|
`business_name` varchar(30) DEFAULT NULL COMMENT '生成业务名',
|
|
`function_name` varchar(50) DEFAULT NULL COMMENT '生成功能名',
|
|
`function_author` varchar(50) DEFAULT NULL COMMENT '生成功能作者',
|
|
`gen_type` char(1) DEFAULT '0' COMMENT '生成代码方式(0zip压缩包 1自定义路径)',
|
|
`gen_path` varchar(200) DEFAULT '/' COMMENT '生成路径(不填默认项目路径)',
|
|
`options` varchar(1000) DEFAULT NULL COMMENT '其它生成选项',
|
|
`create_by` varchar(64) DEFAULT '' COMMENT '创建者',
|
|
`create_time` datetime DEFAULT NULL COMMENT '创建时间',
|
|
`update_by` varchar(64) DEFAULT '' COMMENT '更新者',
|
|
`update_time` datetime DEFAULT NULL COMMENT '更新时间',
|
|
`remark` varchar(500) DEFAULT NULL COMMENT '备注',
|
|
PRIMARY KEY (`table_id`)
|
|
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='代码生成业务表';
|
|
|
|
-- ----------------------------
|
|
-- Records of gen_table
|
|
-- ----------------------------
|
|
BEGIN;
|
|
INSERT INTO `gen_table` (`table_id`, `table_name`, `table_comment`, `sub_table_name`, `sub_table_fk_name`, `class_name`, `tpl_category`, `package_name`, `module_name`, `business_name`, `function_name`, `function_author`, `gen_type`, `gen_path`, `options`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1892760073114521601, 't_user_account', '用户账户表', NULL, NULL, 'UserAccount', 'crud', 'com.coin.business', 'business', 'userAccount', '用户账户', 'coin', '0', '/', '{\"treeCode\":null,\"treeName\":null,\"treeParentCode\":null,\"parentMenuId\":null}', 'admin', '2025-02-20 20:57:48', 'admin', '2025-02-21 10:40:20', NULL);
|
|
INSERT INTO `gen_table` (`table_id`, `table_name`, `table_comment`, `sub_table_name`, `sub_table_fk_name`, `class_name`, `tpl_category`, `package_name`, `module_name`, `business_name`, `function_name`, `function_author`, `gen_type`, `gen_path`, `options`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1892760073324236802, 't_user_card', '用户银行卡表', NULL, NULL, 'UserCard', 'crud', 'com.coin.business', 'business', 'userCard', '用户银行卡', 'coin', '0', '/', '{\"treeCode\":null,\"treeName\":null,\"treeParentCode\":null,\"parentMenuId\":null}', 'admin', '2025-02-20 20:57:48', 'admin', '2025-02-21 10:39:57', NULL);
|
|
INSERT INTO `gen_table` (`table_id`, `table_name`, `table_comment`, `sub_table_name`, `sub_table_fk_name`, `class_name`, `tpl_category`, `package_name`, `module_name`, `business_name`, `function_name`, `function_author`, `gen_type`, `gen_path`, `options`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1892760073458454530, 't_user_friend', '用户好友表', NULL, NULL, 'UserFriend', 'crud', 'com.coin.business', 'business', 'userFriend', '用户好友', 'coin', '0', '/', '{\"treeCode\":null,\"treeName\":null,\"treeParentCode\":null,\"parentMenuId\":null}', 'admin', '2025-02-20 20:57:48', 'admin', '2025-02-21 10:40:33', NULL);
|
|
INSERT INTO `gen_table` (`table_id`, `table_name`, `table_comment`, `sub_table_name`, `sub_table_fk_name`, `class_name`, `tpl_category`, `package_name`, `module_name`, `business_name`, `function_name`, `function_author`, `gen_type`, `gen_path`, `options`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1892760073559117825, 't_user_info', '用户信息表', NULL, NULL, 'UserInfo', 'crud', 'com.coin.business', 'business', 'userInfo', '用户信息', 'coin', '0', '/', '{\"treeCode\":null,\"treeName\":null,\"treeParentCode\":null,\"parentMenuId\":null}', 'admin', '2025-02-20 20:57:48', 'admin', '2025-02-21 10:40:56', NULL);
|
|
INSERT INTO `gen_table` (`table_id`, `table_name`, `table_comment`, `sub_table_name`, `sub_table_fk_name`, `class_name`, `tpl_category`, `package_name`, `module_name`, `business_name`, `function_name`, `function_author`, `gen_type`, `gen_path`, `options`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1892760073663975425, 't_user_passwd', '用户密码表', NULL, NULL, 'UserPasswd', 'crud', 'com.coin.business', 'business', 'userPasswd', '用户密码', 'coin', '0', '/', '{\"treeCode\":null,\"treeName\":null,\"treeParentCode\":null,\"parentMenuId\":null}', 'admin', '2025-02-20 20:57:48', 'admin', '2025-02-21 10:41:08', NULL);
|
|
INSERT INTO `gen_table` (`table_id`, `table_name`, `table_comment`, `sub_table_name`, `sub_table_fk_name`, `class_name`, `tpl_category`, `package_name`, `module_name`, `business_name`, `function_name`, `function_author`, `gen_type`, `gen_path`, `options`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1892760073735278594, 't_user_register', '用户注册表', NULL, NULL, 'UserRegister', 'crud', 'com.coin.business', 'business', 'userRegister', '用户注册', 'coin', '0', '/', '{\"treeCode\":null,\"treeName\":null,\"treeParentCode\":null,\"parentMenuId\":null}', 'admin', '2025-02-20 20:57:48', 'admin', '2025-02-21 10:41:33', NULL);
|
|
INSERT INTO `gen_table` (`table_id`, `table_name`, `table_comment`, `sub_table_name`, `sub_table_fk_name`, `class_name`, `tpl_category`, `package_name`, `module_name`, `business_name`, `function_name`, `function_author`, `gen_type`, `gen_path`, `options`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1892771858244812801, 't_deal_cashout', '提现表', NULL, NULL, 'DealCashout', 'crud', 'com.coin.business', 'business', 'dealCashout', '提现', 'coin', '0', '/', '{\"treeCode\":null,\"treeName\":null,\"treeParentCode\":null,\"parentMenuId\":null}', 'admin', '2025-02-20 20:57:48', 'admin', '2025-02-21 11:13:25', NULL);
|
|
INSERT INTO `gen_table` (`table_id`, `table_name`, `table_comment`, `sub_table_name`, `sub_table_fk_name`, `class_name`, `tpl_category`, `package_name`, `module_name`, `business_name`, `function_name`, `function_author`, `gen_type`, `gen_path`, `options`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1892771858400002050, 't_deal_pay', '付款表', NULL, NULL, 'DealPay', 'crud', 'com.coin.business', 'business', 'dealPay', '付款', 'coin', '0', '/', '{\"treeCode\":null,\"treeName\":null,\"treeParentCode\":null,\"parentMenuId\":null}', 'admin', '2025-02-20 20:57:48', 'admin', '2025-02-21 11:15:09', NULL);
|
|
INSERT INTO `gen_table` (`table_id`, `table_name`, `table_comment`, `sub_table_name`, `sub_table_fk_name`, `class_name`, `tpl_category`, `package_name`, `module_name`, `business_name`, `function_name`, `function_author`, `gen_type`, `gen_path`, `options`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1892771858496471041, 't_deal_receive', '收款表', NULL, NULL, 'DealReceive', 'crud', 'com.coin.business', 'business', 'dealReceive', '收款', 'coin', '0', '/', '{\"treeCode\":null,\"treeName\":null,\"treeParentCode\":null,\"parentMenuId\":null}', 'admin', '2025-02-20 20:57:48', 'admin', '2025-02-21 11:16:46', NULL);
|
|
INSERT INTO `gen_table` (`table_id`, `table_name`, `table_comment`, `sub_table_name`, `sub_table_fk_name`, `class_name`, `tpl_category`, `package_name`, `module_name`, `business_name`, `function_name`, `function_author`, `gen_type`, `gen_path`, `options`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1892771858584551426, 't_deal_transfer', '转账表', NULL, NULL, 'DealTransfer', 'crud', 'com.coin.business', 'business', 'dealTransfer', '转账', 'coin', '0', '/', '{\"treeCode\":null,\"treeName\":null,\"treeParentCode\":null,\"parentMenuId\":null}', 'admin', '2025-02-20 20:57:48', 'admin', '2025-02-21 11:17:51', NULL);
|
|
INSERT INTO `gen_table` (`table_id`, `table_name`, `table_comment`, `sub_table_name`, `sub_table_fk_name`, `class_name`, `tpl_category`, `package_name`, `module_name`, `business_name`, `function_name`, `function_author`, `gen_type`, `gen_path`, `options`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1892829078860410882, 't_common_feedback', '反馈信息表', NULL, NULL, 'CommonFeedback', 'crud', 'com.coin.business', 'business', 'commonFeedback', '反馈信息', 'coin', '0', '/', '{\"treeCode\":null,\"treeName\":null,\"treeParentCode\":null,\"parentMenuId\":null}', 'admin', '2025-02-21 01:47:02', 'admin', '2025-02-21 14:58:15', NULL);
|
|
INSERT INTO `gen_table` (`table_id`, `table_name`, `table_comment`, `sub_table_name`, `sub_table_fk_name`, `class_name`, `tpl_category`, `package_name`, `module_name`, `business_name`, `function_name`, `function_author`, `gen_type`, `gen_path`, `options`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1892829079103680514, 't_common_info', '关于信息表', NULL, NULL, 'CommonInfo', 'crud', 'com.coin.business', 'business', 'commonInfo', '关于信息', 'coin', '0', '/', '{\"treeCode\":null,\"treeName\":null,\"treeParentCode\":null,\"parentMenuId\":null}', 'admin', '2025-02-21 01:47:02', 'admin', '2025-02-21 14:57:11', NULL);
|
|
INSERT INTO `gen_table` (`table_id`, `table_name`, `table_comment`, `sub_table_name`, `sub_table_fk_name`, `class_name`, `tpl_category`, `package_name`, `module_name`, `business_name`, `function_name`, `function_author`, `gen_type`, `gen_path`, `options`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1892829079284035585, 't_common_notify', '消息通知表', NULL, NULL, 'CommonNotify', 'crud', 'com.coin.business', 'business', 'commonNotify', '消息通知', 'coin', '0', '/', '{\"treeCode\":null,\"treeName\":null,\"treeParentCode\":null,\"parentMenuId\":null}', 'admin', '2025-02-21 01:47:02', 'admin', '2025-02-21 14:58:55', NULL);
|
|
INSERT INTO `gen_table` (`table_id`, `table_name`, `table_comment`, `sub_table_name`, `sub_table_fk_name`, `class_name`, `tpl_category`, `package_name`, `module_name`, `business_name`, `function_name`, `function_author`, `gen_type`, `gen_path`, `options`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1893194816032911361, 't_record_transaction', '交易动账记录表', NULL, NULL, 'RecordTransaction', 'crud', 'com.coin.business', 'business', 'recordTransaction', '交易动账记录', 'coin', '0', '/', '{\"treeCode\":null,\"treeName\":null,\"treeParentCode\":null,\"parentMenuId\":null}', 'admin', '2025-02-22 01:58:56', 'admin', '2025-02-22 15:04:40', NULL);
|
|
COMMIT;
|
|
|
|
-- ----------------------------
|
|
-- Table structure for gen_table_column
|
|
-- ----------------------------
|
|
DROP TABLE IF EXISTS `gen_table_column`;
|
|
CREATE TABLE `gen_table_column` (
|
|
`column_id` bigint NOT NULL COMMENT '编号',
|
|
`table_id` bigint DEFAULT NULL COMMENT '归属表编号',
|
|
`column_name` varchar(200) DEFAULT NULL COMMENT '列名称',
|
|
`column_comment` varchar(500) DEFAULT NULL COMMENT '列描述',
|
|
`column_type` varchar(100) DEFAULT NULL COMMENT '列类型',
|
|
`java_type` varchar(500) DEFAULT NULL COMMENT 'JAVA类型',
|
|
`java_field` varchar(200) DEFAULT NULL COMMENT 'JAVA字段名',
|
|
`is_pk` char(1) DEFAULT NULL COMMENT '是否主键(1是)',
|
|
`is_increment` char(1) DEFAULT NULL COMMENT '是否自增(1是)',
|
|
`is_required` char(1) DEFAULT NULL COMMENT '是否必填(1是)',
|
|
`is_insert` char(1) DEFAULT NULL COMMENT '是否为插入字段(1是)',
|
|
`is_edit` char(1) DEFAULT NULL COMMENT '是否编辑字段(1是)',
|
|
`is_list` char(1) DEFAULT NULL COMMENT '是否列表字段(1是)',
|
|
`is_query` char(1) DEFAULT NULL COMMENT '是否查询字段(1是)',
|
|
`query_type` varchar(200) DEFAULT 'EQ' COMMENT '查询方式(等于、不等于、大于、小于、范围)',
|
|
`html_type` varchar(200) DEFAULT NULL COMMENT '显示类型(文本框、文本域、下拉框、复选框、单选框、日期控件)',
|
|
`dict_type` varchar(200) DEFAULT '' COMMENT '字典类型',
|
|
`sort` int DEFAULT NULL COMMENT '排序',
|
|
`create_by` varchar(64) DEFAULT '' COMMENT '创建者',
|
|
`create_time` datetime DEFAULT NULL COMMENT '创建时间',
|
|
`update_by` varchar(64) DEFAULT '' COMMENT '更新者',
|
|
`update_time` datetime DEFAULT NULL COMMENT '更新时间',
|
|
PRIMARY KEY (`column_id`)
|
|
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='代码生成业务表字段';
|
|
|
|
-- ----------------------------
|
|
-- Records of gen_table_column
|
|
-- ----------------------------
|
|
BEGIN;
|
|
INSERT INTO `gen_table_column` (`column_id`, `table_id`, `column_name`, `column_comment`, `column_type`, `java_type`, `java_field`, `is_pk`, `is_increment`, `is_required`, `is_insert`, `is_edit`, `is_list`, `is_query`, `query_type`, `html_type`, `dict_type`, `sort`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1892760073206796290, 1892760073114521601, 'id', '唯一ID', 'bigint', 'Long', 'id', '1', '1', '0', NULL, '1', '1', NULL, 'EQ', 'input', '', 1, 'admin', '2025-02-21 10:15:42', 'admin', '2025-02-21 10:40:20');
|
|
INSERT INTO `gen_table_column` (`column_id`, `table_id`, `column_name`, `column_comment`, `column_type`, `java_type`, `java_field`, `is_pk`, `is_increment`, `is_required`, `is_insert`, `is_edit`, `is_list`, `is_query`, `query_type`, `html_type`, `dict_type`, `sort`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1892760073215184898, 1892760073114521601, 'user_id', '用户id', 'varchar(255)', 'String', 'userId', '0', '0', '0', '1', '1', '1', '1', 'EQ', 'input', '', 2, 'admin', '2025-02-21 10:15:42', 'admin', '2025-02-21 10:40:20');
|
|
INSERT INTO `gen_table_column` (`column_id`, `table_id`, `column_name`, `column_comment`, `column_type`, `java_type`, `java_field`, `is_pk`, `is_increment`, `is_required`, `is_insert`, `is_edit`, `is_list`, `is_query`, `query_type`, `html_type`, `dict_type`, `sort`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1892760073223573505, 1892760073114521601, 'account_id', '账户唯一ID', 'varchar(255)', 'String', 'accountId', '0', '0', '0', '1', '1', '1', '1', 'EQ', 'input', '', 3, 'admin', '2025-02-21 10:15:42', 'admin', '2025-02-21 10:40:20');
|
|
INSERT INTO `gen_table_column` (`column_id`, `table_id`, `column_name`, `column_comment`, `column_type`, `java_type`, `java_field`, `is_pk`, `is_increment`, `is_required`, `is_insert`, `is_edit`, `is_list`, `is_query`, `query_type`, `html_type`, `dict_type`, `sort`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1892760073231962114, 1892760073114521601, 'account_code', '账户唯一编号', 'varchar(255)', 'String', 'accountCode', '0', '0', '0', '1', '1', '1', '1', 'EQ', 'input', '', 4, 'admin', '2025-02-21 10:15:42', 'admin', '2025-02-21 10:40:20');
|
|
INSERT INTO `gen_table_column` (`column_id`, `table_id`, `column_name`, `column_comment`, `column_type`, `java_type`, `java_field`, `is_pk`, `is_increment`, `is_required`, `is_insert`, `is_edit`, `is_list`, `is_query`, `query_type`, `html_type`, `dict_type`, `sort`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1892760073236156418, 1892760073114521601, 'account_name', '账户名称', 'varchar(255)', 'String', 'accountName', '0', '0', '0', '1', '1', '1', '1', 'LIKE', 'input', '', 5, 'admin', '2025-02-21 10:15:42', 'admin', '2025-02-21 10:40:20');
|
|
INSERT INTO `gen_table_column` (`column_id`, `table_id`, `column_name`, `column_comment`, `column_type`, `java_type`, `java_field`, `is_pk`, `is_increment`, `is_required`, `is_insert`, `is_edit`, `is_list`, `is_query`, `query_type`, `html_type`, `dict_type`, `sort`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1892760073240350722, 1892760073114521601, 'account_amount', '账户余额', 'decimal(22,6)', 'BigDecimal', 'accountAmount', '0', '0', '0', '1', '1', '1', '1', 'EQ', 'input', '', 6, 'admin', '2025-02-21 10:15:42', 'admin', '2025-02-21 10:40:20');
|
|
INSERT INTO `gen_table_column` (`column_id`, `table_id`, `column_name`, `column_comment`, `column_type`, `java_type`, `java_field`, `is_pk`, `is_increment`, `is_required`, `is_insert`, `is_edit`, `is_list`, `is_query`, `query_type`, `html_type`, `dict_type`, `sort`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1892760073244545025, 1892760073114521601, 'status', '状态(0正常,1冻结)', 'int', 'String', 'status', '0', '0', '0', '1', '1', '1', '1', 'EQ', 'radio', '', 7, 'admin', '2025-02-21 10:15:42', 'admin', '2025-02-21 10:40:20');
|
|
INSERT INTO `gen_table_column` (`column_id`, `table_id`, `column_name`, `column_comment`, `column_type`, `java_type`, `java_field`, `is_pk`, `is_increment`, `is_required`, `is_insert`, `is_edit`, `is_list`, `is_query`, `query_type`, `html_type`, `dict_type`, `sort`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1892760073248739329, 1892760073114521601, 'del_flag', '删除标志(0代表存在 2代表删除)', 'char(1)', 'String', 'delFlag', '0', '0', '0', NULL, NULL, '1', NULL, 'EQ', 'input', '', 8, 'admin', '2025-02-21 10:15:42', 'admin', '2025-02-21 10:40:20');
|
|
INSERT INTO `gen_table_column` (`column_id`, `table_id`, `column_name`, `column_comment`, `column_type`, `java_type`, `java_field`, `is_pk`, `is_increment`, `is_required`, `is_insert`, `is_edit`, `is_list`, `is_query`, `query_type`, `html_type`, `dict_type`, `sort`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1892760073257127938, 1892760073114521601, 'create_by', '创建者', 'varchar(64)', 'String', 'createBy', '0', '0', '0', NULL, NULL, NULL, NULL, 'EQ', 'input', '', 9, 'admin', '2025-02-21 10:15:42', 'admin', '2025-02-21 10:40:20');
|
|
INSERT INTO `gen_table_column` (`column_id`, `table_id`, `column_name`, `column_comment`, `column_type`, `java_type`, `java_field`, `is_pk`, `is_increment`, `is_required`, `is_insert`, `is_edit`, `is_list`, `is_query`, `query_type`, `html_type`, `dict_type`, `sort`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1892760073261322242, 1892760073114521601, 'create_time', '创建时间', 'datetime', 'Date', 'createTime', '0', '0', '0', NULL, NULL, '1', '1', 'BETWEEN', 'datetime', '', 10, 'admin', '2025-02-21 10:15:42', 'admin', '2025-02-21 10:40:20');
|
|
INSERT INTO `gen_table_column` (`column_id`, `table_id`, `column_name`, `column_comment`, `column_type`, `java_type`, `java_field`, `is_pk`, `is_increment`, `is_required`, `is_insert`, `is_edit`, `is_list`, `is_query`, `query_type`, `html_type`, `dict_type`, `sort`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1892760073265516546, 1892760073114521601, 'update_by', '更新者', 'varchar(64)', 'String', 'updateBy', '0', '0', '0', NULL, NULL, NULL, NULL, 'EQ', 'input', '', 11, 'admin', '2025-02-21 10:15:42', 'admin', '2025-02-21 10:40:20');
|
|
INSERT INTO `gen_table_column` (`column_id`, `table_id`, `column_name`, `column_comment`, `column_type`, `java_type`, `java_field`, `is_pk`, `is_increment`, `is_required`, `is_insert`, `is_edit`, `is_list`, `is_query`, `query_type`, `html_type`, `dict_type`, `sort`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1892760073273905154, 1892760073114521601, 'update_time', '更新时间', 'datetime', 'Date', 'updateTime', '0', '0', '0', NULL, NULL, '1', '1', 'BETWEEN', 'datetime', '', 12, 'admin', '2025-02-21 10:15:42', 'admin', '2025-02-21 10:40:20');
|
|
INSERT INTO `gen_table_column` (`column_id`, `table_id`, `column_name`, `column_comment`, `column_type`, `java_type`, `java_field`, `is_pk`, `is_increment`, `is_required`, `is_insert`, `is_edit`, `is_list`, `is_query`, `query_type`, `html_type`, `dict_type`, `sort`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1892760073366179842, 1892760073324236802, 'id', '唯一ID', 'bigint', 'Long', 'id', '1', '1', '0', NULL, '1', '1', NULL, 'EQ', 'input', '', 1, 'admin', '2025-02-21 10:15:42', 'admin', '2025-02-21 10:39:57');
|
|
INSERT INTO `gen_table_column` (`column_id`, `table_id`, `column_name`, `column_comment`, `column_type`, `java_type`, `java_field`, `is_pk`, `is_increment`, `is_required`, `is_insert`, `is_edit`, `is_list`, `is_query`, `query_type`, `html_type`, `dict_type`, `sort`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1892760073374568449, 1892760073324236802, 'user_id', '用户ID', 'varchar(255)', 'String', 'userId', '0', '0', '1', '1', '1', '1', '1', 'EQ', 'input', '', 2, 'admin', '2025-02-21 10:15:42', 'admin', '2025-02-21 10:39:57');
|
|
INSERT INTO `gen_table_column` (`column_id`, `table_id`, `column_name`, `column_comment`, `column_type`, `java_type`, `java_field`, `is_pk`, `is_increment`, `is_required`, `is_insert`, `is_edit`, `is_list`, `is_query`, `query_type`, `html_type`, `dict_type`, `sort`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1892760073378762753, 1892760073324236802, 'card_num', '银行卡号', 'varchar(64)', 'String', 'cardNum', '0', '0', '1', '1', '1', '1', '1', 'EQ', 'input', '', 3, 'admin', '2025-02-21 10:15:42', 'admin', '2025-02-21 10:39:57');
|
|
INSERT INTO `gen_table_column` (`column_id`, `table_id`, `column_name`, `column_comment`, `column_type`, `java_type`, `java_field`, `is_pk`, `is_increment`, `is_required`, `is_insert`, `is_edit`, `is_list`, `is_query`, `query_type`, `html_type`, `dict_type`, `sort`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1892760073382957058, 1892760073324236802, 'card_amount', '银行卡余额', 'decimal(22,6)', 'BigDecimal', 'cardAmount', '0', '0', '0', '1', '1', '1', '1', 'EQ', 'input', '', 4, 'admin', '2025-02-21 10:15:42', 'admin', '2025-02-21 10:39:57');
|
|
INSERT INTO `gen_table_column` (`column_id`, `table_id`, `column_name`, `column_comment`, `column_type`, `java_type`, `java_field`, `is_pk`, `is_increment`, `is_required`, `is_insert`, `is_edit`, `is_list`, `is_query`, `query_type`, `html_type`, `dict_type`, `sort`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1892760073391345666, 1892760073324236802, 'bank_name', '银行名称', 'varchar(256)', 'String', 'bankName', '0', '0', '0', '1', '1', '1', '1', 'LIKE', 'input', '', 5, 'admin', '2025-02-21 10:15:42', 'admin', '2025-02-21 10:39:57');
|
|
INSERT INTO `gen_table_column` (`column_id`, `table_id`, `column_name`, `column_comment`, `column_type`, `java_type`, `java_field`, `is_pk`, `is_increment`, `is_required`, `is_insert`, `is_edit`, `is_list`, `is_query`, `query_type`, `html_type`, `dict_type`, `sort`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1892760073395539969, 1892760073324236802, 'dept_name', '具体分行', 'varchar(256)', 'String', 'deptName', '0', '0', '0', '1', '1', '1', '1', 'LIKE', 'input', '', 6, 'admin', '2025-02-21 10:15:42', 'admin', '2025-02-21 10:39:57');
|
|
INSERT INTO `gen_table_column` (`column_id`, `table_id`, `column_name`, `column_comment`, `column_type`, `java_type`, `java_field`, `is_pk`, `is_increment`, `is_required`, `is_insert`, `is_edit`, `is_list`, `is_query`, `query_type`, `html_type`, `dict_type`, `sort`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1892760073399734274, 1892760073324236802, 'status', '卡状态(0正常 1停用)', 'char(1)', 'String', 'status', '0', '0', '0', '1', '1', '1', '1', 'EQ', 'radio', '', 7, 'admin', '2025-02-21 10:15:42', 'admin', '2025-02-21 10:39:57');
|
|
INSERT INTO `gen_table_column` (`column_id`, `table_id`, `column_name`, `column_comment`, `column_type`, `java_type`, `java_field`, `is_pk`, `is_increment`, `is_required`, `is_insert`, `is_edit`, `is_list`, `is_query`, `query_type`, `html_type`, `dict_type`, `sort`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1892760073403928577, 1892760073324236802, 'del_flag', '删除标志(0代表存在 2代表删除)', 'char(1)', 'String', 'delFlag', '0', '0', '0', NULL, NULL, NULL, NULL, 'EQ', 'input', '', 8, 'admin', '2025-02-21 10:15:42', 'admin', '2025-02-21 10:39:57');
|
|
INSERT INTO `gen_table_column` (`column_id`, `table_id`, `column_name`, `column_comment`, `column_type`, `java_type`, `java_field`, `is_pk`, `is_increment`, `is_required`, `is_insert`, `is_edit`, `is_list`, `is_query`, `query_type`, `html_type`, `dict_type`, `sort`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1892760073408122881, 1892760073324236802, 'create_by', '创建者', 'varchar(64)', 'String', 'createBy', '0', '0', '0', NULL, NULL, NULL, NULL, 'EQ', 'input', '', 9, 'admin', '2025-02-21 10:15:42', 'admin', '2025-02-21 10:39:57');
|
|
INSERT INTO `gen_table_column` (`column_id`, `table_id`, `column_name`, `column_comment`, `column_type`, `java_type`, `java_field`, `is_pk`, `is_increment`, `is_required`, `is_insert`, `is_edit`, `is_list`, `is_query`, `query_type`, `html_type`, `dict_type`, `sort`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1892760073412317185, 1892760073324236802, 'create_time', '创建时间', 'datetime', 'Date', 'createTime', '0', '0', '0', NULL, NULL, '1', '1', 'BETWEEN', 'datetime', '', 10, 'admin', '2025-02-21 10:15:42', 'admin', '2025-02-21 10:39:57');
|
|
INSERT INTO `gen_table_column` (`column_id`, `table_id`, `column_name`, `column_comment`, `column_type`, `java_type`, `java_field`, `is_pk`, `is_increment`, `is_required`, `is_insert`, `is_edit`, `is_list`, `is_query`, `query_type`, `html_type`, `dict_type`, `sort`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1892760073416511489, 1892760073324236802, 'update_by', '更新者', 'varchar(64)', 'String', 'updateBy', '0', '0', '0', NULL, NULL, NULL, NULL, 'EQ', 'input', '', 11, 'admin', '2025-02-21 10:15:42', 'admin', '2025-02-21 10:39:57');
|
|
INSERT INTO `gen_table_column` (`column_id`, `table_id`, `column_name`, `column_comment`, `column_type`, `java_type`, `java_field`, `is_pk`, `is_increment`, `is_required`, `is_insert`, `is_edit`, `is_list`, `is_query`, `query_type`, `html_type`, `dict_type`, `sort`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1892760073420705793, 1892760073324236802, 'update_time', '更新时间', 'datetime', 'Date', 'updateTime', '0', '0', '0', NULL, NULL, '1', '1', 'BETWEEN', 'datetime', '', 12, 'admin', '2025-02-21 10:15:42', 'admin', '2025-02-21 10:39:57');
|
|
INSERT INTO `gen_table_column` (`column_id`, `table_id`, `column_name`, `column_comment`, `column_type`, `java_type`, `java_field`, `is_pk`, `is_increment`, `is_required`, `is_insert`, `is_edit`, `is_list`, `is_query`, `query_type`, `html_type`, `dict_type`, `sort`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1892760073492008961, 1892760073458454530, 'id', '唯一ID', 'bigint', 'Long', 'id', '1', '1', '0', NULL, '1', '1', NULL, 'EQ', 'input', '', 1, 'admin', '2025-02-21 10:15:42', 'admin', '2025-02-21 10:40:33');
|
|
INSERT INTO `gen_table_column` (`column_id`, `table_id`, `column_name`, `column_comment`, `column_type`, `java_type`, `java_field`, `is_pk`, `is_increment`, `is_required`, `is_insert`, `is_edit`, `is_list`, `is_query`, `query_type`, `html_type`, `dict_type`, `sort`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1892760073500397570, 1892760073458454530, 'user_id', '用户id', 'varchar(255)', 'String', 'userId', '0', '0', '0', '1', '1', '1', '1', 'EQ', 'input', '', 2, 'admin', '2025-02-21 10:15:42', 'admin', '2025-02-21 10:40:33');
|
|
INSERT INTO `gen_table_column` (`column_id`, `table_id`, `column_name`, `column_comment`, `column_type`, `java_type`, `java_field`, `is_pk`, `is_increment`, `is_required`, `is_insert`, `is_edit`, `is_list`, `is_query`, `query_type`, `html_type`, `dict_type`, `sort`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1892760073504591874, 1892760073458454530, 'friend_id', '好友id', 'varchar(255)', 'String', 'friendId', '0', '0', '0', '1', '1', '1', '1', 'EQ', 'input', '', 3, 'admin', '2025-02-21 10:15:42', 'admin', '2025-02-21 10:40:33');
|
|
INSERT INTO `gen_table_column` (`column_id`, `table_id`, `column_name`, `column_comment`, `column_type`, `java_type`, `java_field`, `is_pk`, `is_increment`, `is_required`, `is_insert`, `is_edit`, `is_list`, `is_query`, `query_type`, `html_type`, `dict_type`, `sort`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1892760073508786178, 1892760073458454530, 'status', '状态(0正常,1拉黑)', 'int', 'String', 'status', '0', '0', '0', '1', '1', '1', '1', 'EQ', 'radio', '', 4, 'admin', '2025-02-21 10:15:42', 'admin', '2025-02-21 10:40:33');
|
|
INSERT INTO `gen_table_column` (`column_id`, `table_id`, `column_name`, `column_comment`, `column_type`, `java_type`, `java_field`, `is_pk`, `is_increment`, `is_required`, `is_insert`, `is_edit`, `is_list`, `is_query`, `query_type`, `html_type`, `dict_type`, `sort`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1892760073508786179, 1892760073458454530, 'del_flag', '删除标志(0代表存在 2代表删除)', 'char(1)', 'String', 'delFlag', '0', '0', '0', '1', '1', '1', '1', 'EQ', 'input', '', 5, 'admin', '2025-02-21 10:15:42', 'admin', '2025-02-21 10:40:33');
|
|
INSERT INTO `gen_table_column` (`column_id`, `table_id`, `column_name`, `column_comment`, `column_type`, `java_type`, `java_field`, `is_pk`, `is_increment`, `is_required`, `is_insert`, `is_edit`, `is_list`, `is_query`, `query_type`, `html_type`, `dict_type`, `sort`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1892760073512980481, 1892760073458454530, 'create_by', '创建者', 'varchar(64)', 'String', 'createBy', '0', '0', '0', NULL, NULL, NULL, NULL, 'EQ', 'input', '', 6, 'admin', '2025-02-21 10:15:42', 'admin', '2025-02-21 10:40:33');
|
|
INSERT INTO `gen_table_column` (`column_id`, `table_id`, `column_name`, `column_comment`, `column_type`, `java_type`, `java_field`, `is_pk`, `is_increment`, `is_required`, `is_insert`, `is_edit`, `is_list`, `is_query`, `query_type`, `html_type`, `dict_type`, `sort`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1892760073517174786, 1892760073458454530, 'create_time', '创建时间', 'datetime', 'Date', 'createTime', '0', '0', '0', NULL, NULL, '1', '1', 'BETWEEN', 'datetime', '', 7, 'admin', '2025-02-21 10:15:42', 'admin', '2025-02-21 10:40:33');
|
|
INSERT INTO `gen_table_column` (`column_id`, `table_id`, `column_name`, `column_comment`, `column_type`, `java_type`, `java_field`, `is_pk`, `is_increment`, `is_required`, `is_insert`, `is_edit`, `is_list`, `is_query`, `query_type`, `html_type`, `dict_type`, `sort`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1892760073521369090, 1892760073458454530, 'update_by', '更新者', 'varchar(64)', 'String', 'updateBy', '0', '0', '0', NULL, NULL, NULL, NULL, 'EQ', 'input', '', 8, 'admin', '2025-02-21 10:15:42', 'admin', '2025-02-21 10:40:33');
|
|
INSERT INTO `gen_table_column` (`column_id`, `table_id`, `column_name`, `column_comment`, `column_type`, `java_type`, `java_field`, `is_pk`, `is_increment`, `is_required`, `is_insert`, `is_edit`, `is_list`, `is_query`, `query_type`, `html_type`, `dict_type`, `sort`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1892760073521369091, 1892760073458454530, 'update_time', '更新时间', 'datetime', 'Date', 'updateTime', '0', '0', '0', NULL, NULL, NULL, NULL, 'EQ', 'datetime', '', 9, 'admin', '2025-02-21 10:15:42', 'admin', '2025-02-21 10:40:33');
|
|
INSERT INTO `gen_table_column` (`column_id`, `table_id`, `column_name`, `column_comment`, `column_type`, `java_type`, `java_field`, `is_pk`, `is_increment`, `is_required`, `is_insert`, `is_edit`, `is_list`, `is_query`, `query_type`, `html_type`, `dict_type`, `sort`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1892760073596866562, 1892760073559117825, 'id', '唯一ID', 'bigint', 'Long', 'id', '1', '1', '0', NULL, '1', '1', NULL, 'EQ', 'input', '', 1, 'admin', '2025-02-21 10:15:42', 'admin', '2025-02-21 10:40:56');
|
|
INSERT INTO `gen_table_column` (`column_id`, `table_id`, `column_name`, `column_comment`, `column_type`, `java_type`, `java_field`, `is_pk`, `is_increment`, `is_required`, `is_insert`, `is_edit`, `is_list`, `is_query`, `query_type`, `html_type`, `dict_type`, `sort`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1892760073601060866, 1892760073559117825, 'user_id', '用户ID', 'varchar(255)', 'String', 'userId', '0', '0', '0', '1', '1', '1', '1', 'EQ', 'input', '', 2, 'admin', '2025-02-21 10:15:42', 'admin', '2025-02-21 10:40:56');
|
|
INSERT INTO `gen_table_column` (`column_id`, `table_id`, `column_name`, `column_comment`, `column_type`, `java_type`, `java_field`, `is_pk`, `is_increment`, `is_required`, `is_insert`, `is_edit`, `is_list`, `is_query`, `query_type`, `html_type`, `dict_type`, `sort`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1892760073605255170, 1892760073559117825, 'user_code', '用户唯一编码', 'varchar(255)', 'String', 'userCode', '0', '0', '0', '1', '1', '1', '1', 'EQ', 'input', '', 3, 'admin', '2025-02-21 10:15:42', 'admin', '2025-02-21 10:40:56');
|
|
INSERT INTO `gen_table_column` (`column_id`, `table_id`, `column_name`, `column_comment`, `column_type`, `java_type`, `java_field`, `is_pk`, `is_increment`, `is_required`, `is_insert`, `is_edit`, `is_list`, `is_query`, `query_type`, `html_type`, `dict_type`, `sort`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1892760073605255171, 1892760073559117825, 'name', '姓名', 'varchar(255)', 'String', 'name', '0', '0', '0', '1', '1', '1', '1', 'LIKE', 'input', '', 4, 'admin', '2025-02-21 10:15:42', 'admin', '2025-02-21 10:40:56');
|
|
INSERT INTO `gen_table_column` (`column_id`, `table_id`, `column_name`, `column_comment`, `column_type`, `java_type`, `java_field`, `is_pk`, `is_increment`, `is_required`, `is_insert`, `is_edit`, `is_list`, `is_query`, `query_type`, `html_type`, `dict_type`, `sort`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1892760073609449474, 1892760073559117825, 'gender', '性别', 'varchar(255)', 'String', 'gender', '0', '0', '0', '1', '1', '1', '1', 'EQ', 'input', '', 5, 'admin', '2025-02-21 10:15:42', 'admin', '2025-02-21 10:40:56');
|
|
INSERT INTO `gen_table_column` (`column_id`, `table_id`, `column_name`, `column_comment`, `column_type`, `java_type`, `java_field`, `is_pk`, `is_increment`, `is_required`, `is_insert`, `is_edit`, `is_list`, `is_query`, `query_type`, `html_type`, `dict_type`, `sort`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1892760073609449475, 1892760073559117825, 'id_card', '唯一ID(身份证)', 'varchar(255)', 'String', 'idCard', '0', '0', '0', '1', '1', '1', '1', 'EQ', 'input', '', 6, 'admin', '2025-02-21 10:15:42', 'admin', '2025-02-21 10:40:56');
|
|
INSERT INTO `gen_table_column` (`column_id`, `table_id`, `column_name`, `column_comment`, `column_type`, `java_type`, `java_field`, `is_pk`, `is_increment`, `is_required`, `is_insert`, `is_edit`, `is_list`, `is_query`, `query_type`, `html_type`, `dict_type`, `sort`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1892760073613643777, 1892760073559117825, 'phone', '手机号', 'varchar(255)', 'String', 'phone', '0', '0', '0', '1', '1', '1', '1', 'EQ', 'input', '', 7, 'admin', '2025-02-21 10:15:42', 'admin', '2025-02-21 10:40:56');
|
|
INSERT INTO `gen_table_column` (`column_id`, `table_id`, `column_name`, `column_comment`, `column_type`, `java_type`, `java_field`, `is_pk`, `is_increment`, `is_required`, `is_insert`, `is_edit`, `is_list`, `is_query`, `query_type`, `html_type`, `dict_type`, `sort`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1892760073613643778, 1892760073559117825, 'age', '年龄', 'varchar(255)', 'String', 'age', '0', '0', '0', '1', '1', '1', '1', 'BETWEEN', 'input', '', 8, 'admin', '2025-02-21 10:15:42', 'admin', '2025-02-21 10:40:56');
|
|
INSERT INTO `gen_table_column` (`column_id`, `table_id`, `column_name`, `column_comment`, `column_type`, `java_type`, `java_field`, `is_pk`, `is_increment`, `is_required`, `is_insert`, `is_edit`, `is_list`, `is_query`, `query_type`, `html_type`, `dict_type`, `sort`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1892760073617838081, 1892760073559117825, 'addr', '地址', 'varchar(255)', 'String', 'addr', '0', '0', '0', '1', '1', '1', '1', 'EQ', 'input', '', 9, 'admin', '2025-02-21 10:15:42', 'admin', '2025-02-21 10:40:56');
|
|
INSERT INTO `gen_table_column` (`column_id`, `table_id`, `column_name`, `column_comment`, `column_type`, `java_type`, `java_field`, `is_pk`, `is_increment`, `is_required`, `is_insert`, `is_edit`, `is_list`, `is_query`, `query_type`, `html_type`, `dict_type`, `sort`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1892760073622032385, 1892760073559117825, 'status', '用户状态(0正常 1停用)', 'char(1)', 'String', 'status', '0', '0', '0', '1', '1', '1', '1', 'EQ', 'radio', '', 10, 'admin', '2025-02-21 10:15:42', 'admin', '2025-02-21 10:40:56');
|
|
INSERT INTO `gen_table_column` (`column_id`, `table_id`, `column_name`, `column_comment`, `column_type`, `java_type`, `java_field`, `is_pk`, `is_increment`, `is_required`, `is_insert`, `is_edit`, `is_list`, `is_query`, `query_type`, `html_type`, `dict_type`, `sort`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1892760073622032386, 1892760073559117825, 'del_flag', '删除标志(0代表存在 2代表删除)', 'char(1)', 'String', 'delFlag', '0', '0', '0', NULL, NULL, '1', '1', 'EQ', 'input', '', 11, 'admin', '2025-02-21 10:15:42', 'admin', '2025-02-21 10:40:56');
|
|
INSERT INTO `gen_table_column` (`column_id`, `table_id`, `column_name`, `column_comment`, `column_type`, `java_type`, `java_field`, `is_pk`, `is_increment`, `is_required`, `is_insert`, `is_edit`, `is_list`, `is_query`, `query_type`, `html_type`, `dict_type`, `sort`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1892760073626226689, 1892760073559117825, 'create_by', '创建者', 'varchar(64)', 'String', 'createBy', '0', '0', '0', NULL, NULL, NULL, NULL, 'EQ', 'input', '', 12, 'admin', '2025-02-21 10:15:42', 'admin', '2025-02-21 10:40:56');
|
|
INSERT INTO `gen_table_column` (`column_id`, `table_id`, `column_name`, `column_comment`, `column_type`, `java_type`, `java_field`, `is_pk`, `is_increment`, `is_required`, `is_insert`, `is_edit`, `is_list`, `is_query`, `query_type`, `html_type`, `dict_type`, `sort`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1892760073626226690, 1892760073559117825, 'create_time', '创建时间', 'datetime', 'Date', 'createTime', '0', '0', '0', NULL, NULL, '1', '1', 'BETWEEN', 'datetime', '', 13, 'admin', '2025-02-21 10:15:42', 'admin', '2025-02-21 10:40:56');
|
|
INSERT INTO `gen_table_column` (`column_id`, `table_id`, `column_name`, `column_comment`, `column_type`, `java_type`, `java_field`, `is_pk`, `is_increment`, `is_required`, `is_insert`, `is_edit`, `is_list`, `is_query`, `query_type`, `html_type`, `dict_type`, `sort`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1892760073626226691, 1892760073559117825, 'update_by', '更新者', 'varchar(64)', 'String', 'updateBy', '0', '0', '0', NULL, NULL, NULL, NULL, 'EQ', 'input', '', 14, 'admin', '2025-02-21 10:15:42', 'admin', '2025-02-21 10:40:56');
|
|
INSERT INTO `gen_table_column` (`column_id`, `table_id`, `column_name`, `column_comment`, `column_type`, `java_type`, `java_field`, `is_pk`, `is_increment`, `is_required`, `is_insert`, `is_edit`, `is_list`, `is_query`, `query_type`, `html_type`, `dict_type`, `sort`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1892760073630420993, 1892760073559117825, 'update_time', '更新时间', 'datetime', 'Date', 'updateTime', '0', '0', '0', NULL, NULL, '1', NULL, 'EQ', 'datetime', '', 15, 'admin', '2025-02-21 10:15:42', 'admin', '2025-02-21 10:40:56');
|
|
INSERT INTO `gen_table_column` (`column_id`, `table_id`, `column_name`, `column_comment`, `column_type`, `java_type`, `java_field`, `is_pk`, `is_increment`, `is_required`, `is_insert`, `is_edit`, `is_list`, `is_query`, `query_type`, `html_type`, `dict_type`, `sort`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1892760073693335554, 1892760073663975425, 'id', '唯一ID', 'bigint', 'Long', 'id', '1', '1', '0', NULL, '1', '1', NULL, 'EQ', 'input', '', 1, 'admin', '2025-02-21 10:15:42', 'admin', '2025-02-21 10:41:08');
|
|
INSERT INTO `gen_table_column` (`column_id`, `table_id`, `column_name`, `column_comment`, `column_type`, `java_type`, `java_field`, `is_pk`, `is_increment`, `is_required`, `is_insert`, `is_edit`, `is_list`, `is_query`, `query_type`, `html_type`, `dict_type`, `sort`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1892760073697529857, 1892760073663975425, 'user_id', '用户id', 'varchar(64)', 'String', 'userId', '0', '0', '0', '1', '1', '1', '1', 'EQ', 'input', '', 2, 'admin', '2025-02-21 10:15:42', 'admin', '2025-02-21 10:41:08');
|
|
INSERT INTO `gen_table_column` (`column_id`, `table_id`, `column_name`, `column_comment`, `column_type`, `java_type`, `java_field`, `is_pk`, `is_increment`, `is_required`, `is_insert`, `is_edit`, `is_list`, `is_query`, `query_type`, `html_type`, `dict_type`, `sort`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1892760073697529858, 1892760073663975425, 'pay_passwd', '支付密码(数字组合)', 'varchar(64)', 'String', 'payPasswd', '0', '0', '0', '1', '1', '1', '1', 'EQ', 'input', '', 3, 'admin', '2025-02-21 10:15:42', 'admin', '2025-02-21 10:41:08');
|
|
INSERT INTO `gen_table_column` (`column_id`, `table_id`, `column_name`, `column_comment`, `column_type`, `java_type`, `java_field`, `is_pk`, `is_increment`, `is_required`, `is_insert`, `is_edit`, `is_list`, `is_query`, `query_type`, `html_type`, `dict_type`, `sort`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1892760073701724162, 1892760073663975425, 'phone_lock', '设备锁(九宫)', 'varchar(256)', 'String', 'phoneLock', '0', '0', '0', '1', '1', '1', '0', 'EQ', 'input', '', 4, 'admin', '2025-02-21 10:15:42', 'admin', '2025-02-21 10:41:08');
|
|
INSERT INTO `gen_table_column` (`column_id`, `table_id`, `column_name`, `column_comment`, `column_type`, `java_type`, `java_field`, `is_pk`, `is_increment`, `is_required`, `is_insert`, `is_edit`, `is_list`, `is_query`, `query_type`, `html_type`, `dict_type`, `sort`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1892760073701724163, 1892760073663975425, 'login_passwd', '登录密码(数字组合)', 'varchar(255)', 'String', 'loginPasswd', '0', '0', '0', '1', '1', '1', '1', 'EQ', 'input', '', 5, 'admin', '2025-02-21 10:15:42', 'admin', '2025-02-21 10:41:08');
|
|
INSERT INTO `gen_table_column` (`column_id`, `table_id`, `column_name`, `column_comment`, `column_type`, `java_type`, `java_field`, `is_pk`, `is_increment`, `is_required`, `is_insert`, `is_edit`, `is_list`, `is_query`, `query_type`, `html_type`, `dict_type`, `sort`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1892760073701724164, 1892760073663975425, 'pay_status', '支付状态(0正常,1仅收款,2冻结)', 'int', 'String', 'payStatus', '0', '0', '0', '1', '1', '1', '1', 'EQ', 'radio', '', 6, 'admin', '2025-02-21 10:15:42', 'admin', '2025-02-21 10:41:08');
|
|
INSERT INTO `gen_table_column` (`column_id`, `table_id`, `column_name`, `column_comment`, `column_type`, `java_type`, `java_field`, `is_pk`, `is_increment`, `is_required`, `is_insert`, `is_edit`, `is_list`, `is_query`, `query_type`, `html_type`, `dict_type`, `sort`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1892760073705918466, 1892760073663975425, 'del_flag', '删除标志(0代表存在 2代表删除)', 'char(1)', 'String', 'delFlag', '0', '0', '0', NULL, NULL, '1', '1', 'EQ', 'select', '', 7, 'admin', '2025-02-21 10:15:42', 'admin', '2025-02-21 10:41:08');
|
|
INSERT INTO `gen_table_column` (`column_id`, `table_id`, `column_name`, `column_comment`, `column_type`, `java_type`, `java_field`, `is_pk`, `is_increment`, `is_required`, `is_insert`, `is_edit`, `is_list`, `is_query`, `query_type`, `html_type`, `dict_type`, `sort`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1892760073705918467, 1892760073663975425, 'create_by', '创建者', 'varchar(64)', 'String', 'createBy', '0', '0', '0', NULL, NULL, NULL, NULL, 'EQ', 'input', '', 8, 'admin', '2025-02-21 10:15:42', 'admin', '2025-02-21 10:41:08');
|
|
INSERT INTO `gen_table_column` (`column_id`, `table_id`, `column_name`, `column_comment`, `column_type`, `java_type`, `java_field`, `is_pk`, `is_increment`, `is_required`, `is_insert`, `is_edit`, `is_list`, `is_query`, `query_type`, `html_type`, `dict_type`, `sort`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1892760073710112770, 1892760073663975425, 'create_time', '创建时间', 'datetime', 'Date', 'createTime', '0', '0', '0', NULL, NULL, '1', '1', 'BETWEEN', 'datetime', '', 9, 'admin', '2025-02-21 10:15:42', 'admin', '2025-02-21 10:41:08');
|
|
INSERT INTO `gen_table_column` (`column_id`, `table_id`, `column_name`, `column_comment`, `column_type`, `java_type`, `java_field`, `is_pk`, `is_increment`, `is_required`, `is_insert`, `is_edit`, `is_list`, `is_query`, `query_type`, `html_type`, `dict_type`, `sort`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1892760073710112771, 1892760073663975425, 'update_by', '更新者', 'varchar(64)', 'String', 'updateBy', '0', '0', '0', NULL, NULL, NULL, NULL, 'EQ', 'input', '', 10, 'admin', '2025-02-21 10:15:42', 'admin', '2025-02-21 10:41:08');
|
|
INSERT INTO `gen_table_column` (`column_id`, `table_id`, `column_name`, `column_comment`, `column_type`, `java_type`, `java_field`, `is_pk`, `is_increment`, `is_required`, `is_insert`, `is_edit`, `is_list`, `is_query`, `query_type`, `html_type`, `dict_type`, `sort`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1892760073710112772, 1892760073663975425, 'update_time', '更新时间', 'datetime', 'Date', 'updateTime', '0', '0', '0', NULL, NULL, '1', '1', 'BETWEEN', 'datetime', '', 11, 'admin', '2025-02-21 10:15:42', 'admin', '2025-02-21 10:41:08');
|
|
INSERT INTO `gen_table_column` (`column_id`, `table_id`, `column_name`, `column_comment`, `column_type`, `java_type`, `java_field`, `is_pk`, `is_increment`, `is_required`, `is_insert`, `is_edit`, `is_list`, `is_query`, `query_type`, `html_type`, `dict_type`, `sort`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1892760073764638722, 1892760073735278594, 'id', '唯一ID', 'bigint', 'Long', 'id', '1', '1', '0', NULL, '1', '1', NULL, 'EQ', 'input', '', 1, 'admin', '2025-02-21 10:15:42', 'admin', '2025-02-21 10:41:33');
|
|
INSERT INTO `gen_table_column` (`column_id`, `table_id`, `column_name`, `column_comment`, `column_type`, `java_type`, `java_field`, `is_pk`, `is_increment`, `is_required`, `is_insert`, `is_edit`, `is_list`, `is_query`, `query_type`, `html_type`, `dict_type`, `sort`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1892760073768833025, 1892760073735278594, 'user_id', '用户id', 'varchar(255)', 'String', 'userId', '0', '0', '0', '1', '1', '1', '1', 'EQ', 'input', '', 2, 'admin', '2025-02-21 10:15:42', 'admin', '2025-02-21 10:41:33');
|
|
INSERT INTO `gen_table_column` (`column_id`, `table_id`, `column_name`, `column_comment`, `column_type`, `java_type`, `java_field`, `is_pk`, `is_increment`, `is_required`, `is_insert`, `is_edit`, `is_list`, `is_query`, `query_type`, `html_type`, `dict_type`, `sort`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1892760073768833026, 1892760073735278594, 'name', '名字', 'varchar(255)', 'String', 'name', '0', '0', '1', '1', '1', '1', '1', 'LIKE', 'input', '', 3, 'admin', '2025-02-21 10:15:42', 'admin', '2025-02-21 10:41:33');
|
|
INSERT INTO `gen_table_column` (`column_id`, `table_id`, `column_name`, `column_comment`, `column_type`, `java_type`, `java_field`, `is_pk`, `is_increment`, `is_required`, `is_insert`, `is_edit`, `is_list`, `is_query`, `query_type`, `html_type`, `dict_type`, `sort`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1892760073768833027, 1892760073735278594, 'phone', '电话', 'varchar(255)', 'String', 'phone', '0', '0', '0', '1', '1', '1', '1', 'EQ', 'input', '', 4, 'admin', '2025-02-21 10:15:42', 'admin', '2025-02-21 10:41:33');
|
|
INSERT INTO `gen_table_column` (`column_id`, `table_id`, `column_name`, `column_comment`, `column_type`, `java_type`, `java_field`, `is_pk`, `is_increment`, `is_required`, `is_insert`, `is_edit`, `is_list`, `is_query`, `query_type`, `html_type`, `dict_type`, `sort`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1892760073773027330, 1892760073735278594, 'passwd', '密码', 'varchar(255)', 'String', 'passwd', '0', '0', '0', '1', '1', '1', '1', 'EQ', 'input', '', 5, 'admin', '2025-02-21 10:15:42', 'admin', '2025-02-21 10:41:33');
|
|
INSERT INTO `gen_table_column` (`column_id`, `table_id`, `column_name`, `column_comment`, `column_type`, `java_type`, `java_field`, `is_pk`, `is_increment`, `is_required`, `is_insert`, `is_edit`, `is_list`, `is_query`, `query_type`, `html_type`, `dict_type`, `sort`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1892760073773027331, 1892760073735278594, 'verify_code', '验证码', 'varchar(255)', 'String', 'verifyCode', '0', '0', '0', '1', '1', '1', '1', 'EQ', 'input', '', 6, 'admin', '2025-02-21 10:15:42', 'admin', '2025-02-21 10:41:33');
|
|
INSERT INTO `gen_table_column` (`column_id`, `table_id`, `column_name`, `column_comment`, `column_type`, `java_type`, `java_field`, `is_pk`, `is_increment`, `is_required`, `is_insert`, `is_edit`, `is_list`, `is_query`, `query_type`, `html_type`, `dict_type`, `sort`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1892760073777221633, 1892760073735278594, 'status', '状态(0发起,1拒绝,2通过)', 'int', 'String', 'status', '0', '0', '0', '1', '1', '1', '1', 'EQ', 'radio', '', 7, 'admin', '2025-02-21 10:15:42', 'admin', '2025-02-21 10:41:33');
|
|
INSERT INTO `gen_table_column` (`column_id`, `table_id`, `column_name`, `column_comment`, `column_type`, `java_type`, `java_field`, `is_pk`, `is_increment`, `is_required`, `is_insert`, `is_edit`, `is_list`, `is_query`, `query_type`, `html_type`, `dict_type`, `sort`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1892760073777221634, 1892760073735278594, 'del_flag', '删除标志(0代表存在 2代表删除)', 'char(1)', 'String', 'delFlag', '0', '0', '0', NULL, NULL, NULL, NULL, 'EQ', 'input', '', 8, 'admin', '2025-02-21 10:15:42', 'admin', '2025-02-21 10:41:33');
|
|
INSERT INTO `gen_table_column` (`column_id`, `table_id`, `column_name`, `column_comment`, `column_type`, `java_type`, `java_field`, `is_pk`, `is_increment`, `is_required`, `is_insert`, `is_edit`, `is_list`, `is_query`, `query_type`, `html_type`, `dict_type`, `sort`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1892760073777221635, 1892760073735278594, 'create_by', '创建者', 'varchar(64)', 'String', 'createBy', '0', '0', '0', NULL, NULL, NULL, NULL, 'EQ', 'input', '', 9, 'admin', '2025-02-21 10:15:42', 'admin', '2025-02-21 10:41:33');
|
|
INSERT INTO `gen_table_column` (`column_id`, `table_id`, `column_name`, `column_comment`, `column_type`, `java_type`, `java_field`, `is_pk`, `is_increment`, `is_required`, `is_insert`, `is_edit`, `is_list`, `is_query`, `query_type`, `html_type`, `dict_type`, `sort`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1892760073781415937, 1892760073735278594, 'create_time', '创建时间', 'datetime', 'Date', 'createTime', '0', '0', '0', NULL, NULL, '1', '1', 'BETWEEN', 'datetime', '', 10, 'admin', '2025-02-21 10:15:42', 'admin', '2025-02-21 10:41:33');
|
|
INSERT INTO `gen_table_column` (`column_id`, `table_id`, `column_name`, `column_comment`, `column_type`, `java_type`, `java_field`, `is_pk`, `is_increment`, `is_required`, `is_insert`, `is_edit`, `is_list`, `is_query`, `query_type`, `html_type`, `dict_type`, `sort`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1892760073781415938, 1892760073735278594, 'update_by', '更新者', 'varchar(64)', 'String', 'updateBy', '0', '0', '0', NULL, NULL, NULL, NULL, 'EQ', 'input', '', 11, 'admin', '2025-02-21 10:15:42', 'admin', '2025-02-21 10:41:33');
|
|
INSERT INTO `gen_table_column` (`column_id`, `table_id`, `column_name`, `column_comment`, `column_type`, `java_type`, `java_field`, `is_pk`, `is_increment`, `is_required`, `is_insert`, `is_edit`, `is_list`, `is_query`, `query_type`, `html_type`, `dict_type`, `sort`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1892760073785610241, 1892760073735278594, 'update_time', '更新时间', 'datetime', 'Date', 'updateTime', '0', '0', '0', NULL, NULL, '1', '1', 'BETWEEN', 'datetime', '', 12, 'admin', '2025-02-21 10:15:42', 'admin', '2025-02-21 10:41:33');
|
|
INSERT INTO `gen_table_column` (`column_id`, `table_id`, `column_name`, `column_comment`, `column_type`, `java_type`, `java_field`, `is_pk`, `is_increment`, `is_required`, `is_insert`, `is_edit`, `is_list`, `is_query`, `query_type`, `html_type`, `dict_type`, `sort`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1892771858320310274, 1892771858244812801, 'id', '唯一ID', 'bigint', 'Long', 'id', '1', '1', '0', NULL, '1', '1', NULL, 'EQ', 'input', '', 1, 'admin', '2025-02-21 11:02:32', 'admin', '2025-02-21 11:13:25');
|
|
INSERT INTO `gen_table_column` (`column_id`, `table_id`, `column_name`, `column_comment`, `column_type`, `java_type`, `java_field`, `is_pk`, `is_increment`, `is_required`, `is_insert`, `is_edit`, `is_list`, `is_query`, `query_type`, `html_type`, `dict_type`, `sort`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1892771858328698881, 1892771858244812801, 'user_id', '提现ID', 'varchar(255)', 'String', 'userId', '0', '0', '1', '1', '1', '1', '1', 'EQ', 'input', '', 2, 'admin', '2025-02-21 11:02:32', 'admin', '2025-02-21 11:13:25');
|
|
INSERT INTO `gen_table_column` (`column_id`, `table_id`, `column_name`, `column_comment`, `column_type`, `java_type`, `java_field`, `is_pk`, `is_increment`, `is_required`, `is_insert`, `is_edit`, `is_list`, `is_query`, `query_type`, `html_type`, `dict_type`, `sort`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1892771858332893185, 1892771858244812801, 'user_account', '提现账户', 'varchar(255)', 'String', 'userAccount', '0', '0', '1', '1', '1', '1', '1', 'EQ', 'input', '', 3, 'admin', '2025-02-21 11:02:32', 'admin', '2025-02-21 11:13:25');
|
|
INSERT INTO `gen_table_column` (`column_id`, `table_id`, `column_name`, `column_comment`, `column_type`, `java_type`, `java_field`, `is_pk`, `is_increment`, `is_required`, `is_insert`, `is_edit`, `is_list`, `is_query`, `query_type`, `html_type`, `dict_type`, `sort`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1892771858332893186, 1892771858244812801, 'to_id', '目标ID', 'varchar(255)', 'String', 'toId', '0', '0', '1', '1', '1', '1', '1', 'EQ', 'input', '', 4, 'admin', '2025-02-21 11:02:32', 'admin', '2025-02-21 11:13:25');
|
|
INSERT INTO `gen_table_column` (`column_id`, `table_id`, `column_name`, `column_comment`, `column_type`, `java_type`, `java_field`, `is_pk`, `is_increment`, `is_required`, `is_insert`, `is_edit`, `is_list`, `is_query`, `query_type`, `html_type`, `dict_type`, `sort`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1892771858337087489, 1892771858244812801, 'to_account', '目标账户', 'varchar(255)', 'String', 'toAccount', '0', '0', '0', '1', '1', '1', '1', 'EQ', 'input', '', 5, 'admin', '2025-02-21 11:02:32', 'admin', '2025-02-21 11:13:25');
|
|
INSERT INTO `gen_table_column` (`column_id`, `table_id`, `column_name`, `column_comment`, `column_type`, `java_type`, `java_field`, `is_pk`, `is_increment`, `is_required`, `is_insert`, `is_edit`, `is_list`, `is_query`, `query_type`, `html_type`, `dict_type`, `sort`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1892771858337087490, 1892771858244812801, 'bill_code', '账单唯一编号', 'varchar(255)', 'String', 'billCode', '0', '0', '0', '1', '1', '1', '1', 'EQ', 'input', '', 6, 'admin', '2025-02-21 11:02:32', 'admin', '2025-02-21 11:13:25');
|
|
INSERT INTO `gen_table_column` (`column_id`, `table_id`, `column_name`, `column_comment`, `column_type`, `java_type`, `java_field`, `is_pk`, `is_increment`, `is_required`, `is_insert`, `is_edit`, `is_list`, `is_query`, `query_type`, `html_type`, `dict_type`, `sort`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1892771858341281793, 1892771858244812801, 'amount', '提现金额', 'decimal(22,6)', 'BigDecimal', 'amount', '0', '0', '1', '1', '1', '1', '1', 'BETWEEN', 'input', '', 7, 'admin', '2025-02-21 11:02:32', 'admin', '2025-02-21 11:13:25');
|
|
INSERT INTO `gen_table_column` (`column_id`, `table_id`, `column_name`, `column_comment`, `column_type`, `java_type`, `java_field`, `is_pk`, `is_increment`, `is_required`, `is_insert`, `is_edit`, `is_list`, `is_query`, `query_type`, `html_type`, `dict_type`, `sort`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1892771858341281794, 1892771858244812801, 'transfer_type', '提现类型(0直接提,1审核)', 'varchar(255)', 'String', 'transferType', '0', '0', '0', '1', '1', '1', '1', 'EQ', 'select', '', 8, 'admin', '2025-02-21 11:02:32', 'admin', '2025-02-21 11:13:25');
|
|
INSERT INTO `gen_table_column` (`column_id`, `table_id`, `column_name`, `column_comment`, `column_type`, `java_type`, `java_field`, `is_pk`, `is_increment`, `is_required`, `is_insert`, `is_edit`, `is_list`, `is_query`, `query_type`, `html_type`, `dict_type`, `sort`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1892771858345476097, 1892771858244812801, 'remark', '提现备注', 'varchar(255)', 'String', 'remark', '0', '0', '0', '1', '1', '1', NULL, 'EQ', 'input', '', 9, 'admin', '2025-02-21 11:02:32', 'admin', '2025-02-21 11:13:25');
|
|
INSERT INTO `gen_table_column` (`column_id`, `table_id`, `column_name`, `column_comment`, `column_type`, `java_type`, `java_field`, `is_pk`, `is_increment`, `is_required`, `is_insert`, `is_edit`, `is_list`, `is_query`, `query_type`, `html_type`, `dict_type`, `sort`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1892771858345476098, 1892771858244812801, 'status', '状态(0发起,1拒绝,2通过)', 'int', 'String', 'status', '0', '0', '0', '1', '1', '1', '1', 'EQ', 'radio', '', 10, 'admin', '2025-02-21 11:02:32', 'admin', '2025-02-21 11:13:25');
|
|
INSERT INTO `gen_table_column` (`column_id`, `table_id`, `column_name`, `column_comment`, `column_type`, `java_type`, `java_field`, `is_pk`, `is_increment`, `is_required`, `is_insert`, `is_edit`, `is_list`, `is_query`, `query_type`, `html_type`, `dict_type`, `sort`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1892771858349670401, 1892771858244812801, 'del_flag', '删除标志(0代表存在 2代表删除)', 'char(1)', 'String', 'delFlag', '0', '0', '0', NULL, NULL, NULL, NULL, 'EQ', 'input', '', 11, 'admin', '2025-02-21 11:02:32', 'admin', '2025-02-21 11:13:25');
|
|
INSERT INTO `gen_table_column` (`column_id`, `table_id`, `column_name`, `column_comment`, `column_type`, `java_type`, `java_field`, `is_pk`, `is_increment`, `is_required`, `is_insert`, `is_edit`, `is_list`, `is_query`, `query_type`, `html_type`, `dict_type`, `sort`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1892771858349670402, 1892771858244812801, 'create_by', '创建者', 'varchar(64)', 'String', 'createBy', '0', '0', '0', NULL, NULL, '1', '1', 'EQ', 'input', '', 12, 'admin', '2025-02-21 11:02:32', 'admin', '2025-02-21 11:13:25');
|
|
INSERT INTO `gen_table_column` (`column_id`, `table_id`, `column_name`, `column_comment`, `column_type`, `java_type`, `java_field`, `is_pk`, `is_increment`, `is_required`, `is_insert`, `is_edit`, `is_list`, `is_query`, `query_type`, `html_type`, `dict_type`, `sort`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1892771858353864706, 1892771858244812801, 'create_time', '创建时间', 'datetime', 'Date', 'createTime', '0', '0', '0', NULL, NULL, '1', '1', 'BETWEEN', 'datetime', '', 13, 'admin', '2025-02-21 11:02:32', 'admin', '2025-02-21 11:13:25');
|
|
INSERT INTO `gen_table_column` (`column_id`, `table_id`, `column_name`, `column_comment`, `column_type`, `java_type`, `java_field`, `is_pk`, `is_increment`, `is_required`, `is_insert`, `is_edit`, `is_list`, `is_query`, `query_type`, `html_type`, `dict_type`, `sort`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1892771858353864707, 1892771858244812801, 'update_by', '更新者', 'varchar(64)', 'String', 'updateBy', '0', '0', '0', NULL, NULL, NULL, NULL, 'EQ', 'input', '', 14, 'admin', '2025-02-21 11:02:32', 'admin', '2025-02-21 11:13:25');
|
|
INSERT INTO `gen_table_column` (`column_id`, `table_id`, `column_name`, `column_comment`, `column_type`, `java_type`, `java_field`, `is_pk`, `is_increment`, `is_required`, `is_insert`, `is_edit`, `is_list`, `is_query`, `query_type`, `html_type`, `dict_type`, `sort`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1892771858353864708, 1892771858244812801, 'update_time', '更新时间', 'datetime', 'Date', 'updateTime', '0', '0', '0', NULL, NULL, '1', NULL, 'EQ', 'datetime', '', 15, 'admin', '2025-02-21 11:02:32', 'admin', '2025-02-21 11:13:25');
|
|
INSERT INTO `gen_table_column` (`column_id`, `table_id`, `column_name`, `column_comment`, `column_type`, `java_type`, `java_field`, `is_pk`, `is_increment`, `is_required`, `is_insert`, `is_edit`, `is_list`, `is_query`, `query_type`, `html_type`, `dict_type`, `sort`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1892771858429362178, 1892771858400002050, 'id', '唯一ID', 'bigint', 'Long', 'id', '1', '1', '0', NULL, '1', '1', NULL, 'EQ', 'input', '', 1, 'admin', '2025-02-21 11:02:32', 'admin', '2025-02-21 11:15:09');
|
|
INSERT INTO `gen_table_column` (`column_id`, `table_id`, `column_name`, `column_comment`, `column_type`, `java_type`, `java_field`, `is_pk`, `is_increment`, `is_required`, `is_insert`, `is_edit`, `is_list`, `is_query`, `query_type`, `html_type`, `dict_type`, `sort`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1892771858437750786, 1892771858400002050, 'user_id', '付款ID', 'varchar(255)', 'String', 'userId', '0', '0', '1', '1', '1', '1', '1', 'EQ', 'input', '', 2, 'admin', '2025-02-21 11:02:32', 'admin', '2025-02-21 11:15:09');
|
|
INSERT INTO `gen_table_column` (`column_id`, `table_id`, `column_name`, `column_comment`, `column_type`, `java_type`, `java_field`, `is_pk`, `is_increment`, `is_required`, `is_insert`, `is_edit`, `is_list`, `is_query`, `query_type`, `html_type`, `dict_type`, `sort`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1892771858441945090, 1892771858400002050, 'user_account', '付款账户', 'varchar(255)', 'String', 'userAccount', '0', '0', '1', '1', '1', '1', '1', 'EQ', 'input', '', 3, 'admin', '2025-02-21 11:02:32', 'admin', '2025-02-21 11:15:09');
|
|
INSERT INTO `gen_table_column` (`column_id`, `table_id`, `column_name`, `column_comment`, `column_type`, `java_type`, `java_field`, `is_pk`, `is_increment`, `is_required`, `is_insert`, `is_edit`, `is_list`, `is_query`, `query_type`, `html_type`, `dict_type`, `sort`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1892771858441945091, 1892771858400002050, 'to_id', '目标ID', 'varchar(255)', 'String', 'toId', '0', '0', '1', '1', '1', '1', '1', 'EQ', 'input', '', 4, 'admin', '2025-02-21 11:02:32', 'admin', '2025-02-21 11:15:09');
|
|
INSERT INTO `gen_table_column` (`column_id`, `table_id`, `column_name`, `column_comment`, `column_type`, `java_type`, `java_field`, `is_pk`, `is_increment`, `is_required`, `is_insert`, `is_edit`, `is_list`, `is_query`, `query_type`, `html_type`, `dict_type`, `sort`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1892771858441945092, 1892771858400002050, 'to_account', '目标账户', 'varchar(255)', 'String', 'toAccount', '0', '0', '1', '1', '1', '1', '1', 'EQ', 'input', '', 5, 'admin', '2025-02-21 11:02:32', 'admin', '2025-02-21 11:15:09');
|
|
INSERT INTO `gen_table_column` (`column_id`, `table_id`, `column_name`, `column_comment`, `column_type`, `java_type`, `java_field`, `is_pk`, `is_increment`, `is_required`, `is_insert`, `is_edit`, `is_list`, `is_query`, `query_type`, `html_type`, `dict_type`, `sort`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1892771858446139394, 1892771858400002050, 'bill_code', '账单唯一编号', 'varchar(255)', 'String', 'billCode', '0', '0', '0', '1', '1', '1', '1', 'EQ', 'input', '', 6, 'admin', '2025-02-21 11:02:32', 'admin', '2025-02-21 11:15:09');
|
|
INSERT INTO `gen_table_column` (`column_id`, `table_id`, `column_name`, `column_comment`, `column_type`, `java_type`, `java_field`, `is_pk`, `is_increment`, `is_required`, `is_insert`, `is_edit`, `is_list`, `is_query`, `query_type`, `html_type`, `dict_type`, `sort`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1892771858446139395, 1892771858400002050, 'amount', '付款金额', 'decimal(22,6)', 'BigDecimal', 'amount', '0', '0', '1', '1', '1', '1', '1', 'LIKE', 'input', '', 7, 'admin', '2025-02-21 11:02:32', 'admin', '2025-02-21 11:15:09');
|
|
INSERT INTO `gen_table_column` (`column_id`, `table_id`, `column_name`, `column_comment`, `column_type`, `java_type`, `java_field`, `is_pk`, `is_increment`, `is_required`, `is_insert`, `is_edit`, `is_list`, `is_query`, `query_type`, `html_type`, `dict_type`, `sort`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1892771858446139396, 1892771858400002050, 'transfer_type', '付款类型(0直接付,1审核)', 'varchar(255)', 'String', 'transferType', '0', '0', '0', '1', '1', '1', '1', 'EQ', 'select', '', 8, 'admin', '2025-02-21 11:02:32', 'admin', '2025-02-21 11:15:09');
|
|
INSERT INTO `gen_table_column` (`column_id`, `table_id`, `column_name`, `column_comment`, `column_type`, `java_type`, `java_field`, `is_pk`, `is_increment`, `is_required`, `is_insert`, `is_edit`, `is_list`, `is_query`, `query_type`, `html_type`, `dict_type`, `sort`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1892771858450333697, 1892771858400002050, 'qr_code', '二维码解析', 'varchar(255)', 'String', 'qrCode', '0', '0', '0', '1', '1', '1', '1', 'EQ', 'input', '', 9, 'admin', '2025-02-21 11:02:32', 'admin', '2025-02-21 11:15:09');
|
|
INSERT INTO `gen_table_column` (`column_id`, `table_id`, `column_name`, `column_comment`, `column_type`, `java_type`, `java_field`, `is_pk`, `is_increment`, `is_required`, `is_insert`, `is_edit`, `is_list`, `is_query`, `query_type`, `html_type`, `dict_type`, `sort`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1892771858450333698, 1892771858400002050, 'remark', '付款备注', 'varchar(255)', 'String', 'remark', '0', '0', '0', '1', '1', '1', '1', 'LIKE', 'input', '', 10, 'admin', '2025-02-21 11:02:32', 'admin', '2025-02-21 11:15:09');
|
|
INSERT INTO `gen_table_column` (`column_id`, `table_id`, `column_name`, `column_comment`, `column_type`, `java_type`, `java_field`, `is_pk`, `is_increment`, `is_required`, `is_insert`, `is_edit`, `is_list`, `is_query`, `query_type`, `html_type`, `dict_type`, `sort`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1892771858454528001, 1892771858400002050, 'status', '状态(0发起,1拒绝,2通过)', 'int', 'String', 'status', '0', '0', '0', '1', '1', '1', '1', 'EQ', 'radio', '', 11, 'admin', '2025-02-21 11:02:32', 'admin', '2025-02-21 11:15:09');
|
|
INSERT INTO `gen_table_column` (`column_id`, `table_id`, `column_name`, `column_comment`, `column_type`, `java_type`, `java_field`, `is_pk`, `is_increment`, `is_required`, `is_insert`, `is_edit`, `is_list`, `is_query`, `query_type`, `html_type`, `dict_type`, `sort`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1892771858454528002, 1892771858400002050, 'del_flag', '删除标志(0代表存在 2代表删除)', 'char(1)', 'String', 'delFlag', '0', '0', '0', NULL, NULL, NULL, NULL, 'EQ', 'input', '', 12, 'admin', '2025-02-21 11:02:32', 'admin', '2025-02-21 11:15:09');
|
|
INSERT INTO `gen_table_column` (`column_id`, `table_id`, `column_name`, `column_comment`, `column_type`, `java_type`, `java_field`, `is_pk`, `is_increment`, `is_required`, `is_insert`, `is_edit`, `is_list`, `is_query`, `query_type`, `html_type`, `dict_type`, `sort`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1892771858458722305, 1892771858400002050, 'create_by', '创建者', 'varchar(64)', 'String', 'createBy', '0', '0', '0', NULL, NULL, NULL, NULL, 'EQ', 'input', '', 13, 'admin', '2025-02-21 11:02:32', 'admin', '2025-02-21 11:15:09');
|
|
INSERT INTO `gen_table_column` (`column_id`, `table_id`, `column_name`, `column_comment`, `column_type`, `java_type`, `java_field`, `is_pk`, `is_increment`, `is_required`, `is_insert`, `is_edit`, `is_list`, `is_query`, `query_type`, `html_type`, `dict_type`, `sort`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1892771858458722306, 1892771858400002050, 'create_time', '创建时间', 'datetime', 'Date', 'createTime', '0', '0', '0', NULL, NULL, '1', '1', 'BETWEEN', 'datetime', '', 14, 'admin', '2025-02-21 11:02:32', 'admin', '2025-02-21 11:15:09');
|
|
INSERT INTO `gen_table_column` (`column_id`, `table_id`, `column_name`, `column_comment`, `column_type`, `java_type`, `java_field`, `is_pk`, `is_increment`, `is_required`, `is_insert`, `is_edit`, `is_list`, `is_query`, `query_type`, `html_type`, `dict_type`, `sort`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1892771858458722307, 1892771858400002050, 'update_by', '更新者', 'varchar(64)', 'String', 'updateBy', '0', '0', '0', NULL, NULL, NULL, NULL, 'EQ', 'input', '', 15, 'admin', '2025-02-21 11:02:32', 'admin', '2025-02-21 11:15:09');
|
|
INSERT INTO `gen_table_column` (`column_id`, `table_id`, `column_name`, `column_comment`, `column_type`, `java_type`, `java_field`, `is_pk`, `is_increment`, `is_required`, `is_insert`, `is_edit`, `is_list`, `is_query`, `query_type`, `html_type`, `dict_type`, `sort`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1892771858462916610, 1892771858400002050, 'update_time', '更新时间', 'datetime', 'Date', 'updateTime', '0', '0', '0', NULL, NULL, NULL, NULL, 'EQ', 'datetime', '', 16, 'admin', '2025-02-21 11:02:32', 'admin', '2025-02-21 11:15:09');
|
|
INSERT INTO `gen_table_column` (`column_id`, `table_id`, `column_name`, `column_comment`, `column_type`, `java_type`, `java_field`, `is_pk`, `is_increment`, `is_required`, `is_insert`, `is_edit`, `is_list`, `is_query`, `query_type`, `html_type`, `dict_type`, `sort`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1892771858521636866, 1892771858496471041, 'id', '唯一ID', 'bigint', 'Long', 'id', '1', '1', '0', NULL, '1', '1', NULL, 'EQ', 'input', '', 1, 'admin', '2025-02-21 11:02:32', 'admin', '2025-02-21 11:16:46');
|
|
INSERT INTO `gen_table_column` (`column_id`, `table_id`, `column_name`, `column_comment`, `column_type`, `java_type`, `java_field`, `is_pk`, `is_increment`, `is_required`, `is_insert`, `is_edit`, `is_list`, `is_query`, `query_type`, `html_type`, `dict_type`, `sort`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1892771858525831169, 1892771858496471041, 'user_id', '收款ID', 'varchar(255)', 'String', 'userId', '0', '0', '1', '1', '1', '1', '1', 'EQ', 'input', '', 2, 'admin', '2025-02-21 11:02:32', 'admin', '2025-02-21 11:16:46');
|
|
INSERT INTO `gen_table_column` (`column_id`, `table_id`, `column_name`, `column_comment`, `column_type`, `java_type`, `java_field`, `is_pk`, `is_increment`, `is_required`, `is_insert`, `is_edit`, `is_list`, `is_query`, `query_type`, `html_type`, `dict_type`, `sort`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1892771858525831170, 1892771858496471041, 'user_account', '收款账户', 'varchar(255)', 'String', 'userAccount', '0', '0', '1', '1', '1', '1', '1', 'EQ', 'input', '', 3, 'admin', '2025-02-21 11:02:32', 'admin', '2025-02-21 11:16:46');
|
|
INSERT INTO `gen_table_column` (`column_id`, `table_id`, `column_name`, `column_comment`, `column_type`, `java_type`, `java_field`, `is_pk`, `is_increment`, `is_required`, `is_insert`, `is_edit`, `is_list`, `is_query`, `query_type`, `html_type`, `dict_type`, `sort`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1892771858530025473, 1892771858496471041, 'to_id', '目标ID', 'varchar(255)', 'String', 'toId', '0', '0', '1', '1', '1', '1', '1', 'EQ', 'input', '', 4, 'admin', '2025-02-21 11:02:32', 'admin', '2025-02-21 11:16:46');
|
|
INSERT INTO `gen_table_column` (`column_id`, `table_id`, `column_name`, `column_comment`, `column_type`, `java_type`, `java_field`, `is_pk`, `is_increment`, `is_required`, `is_insert`, `is_edit`, `is_list`, `is_query`, `query_type`, `html_type`, `dict_type`, `sort`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1892771858530025474, 1892771858496471041, 'to_account', '目标账户', 'varchar(255)', 'String', 'toAccount', '0', '0', '1', '1', '1', '1', '1', 'EQ', 'input', '', 5, 'admin', '2025-02-21 11:02:32', 'admin', '2025-02-21 11:16:46');
|
|
INSERT INTO `gen_table_column` (`column_id`, `table_id`, `column_name`, `column_comment`, `column_type`, `java_type`, `java_field`, `is_pk`, `is_increment`, `is_required`, `is_insert`, `is_edit`, `is_list`, `is_query`, `query_type`, `html_type`, `dict_type`, `sort`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1892771858534219777, 1892771858496471041, 'bill_code', '账单唯一编号', 'varchar(255)', 'String', 'billCode', '0', '0', '0', '1', '1', '1', '1', 'EQ', 'input', '', 6, 'admin', '2025-02-21 11:02:32', 'admin', '2025-02-21 11:16:46');
|
|
INSERT INTO `gen_table_column` (`column_id`, `table_id`, `column_name`, `column_comment`, `column_type`, `java_type`, `java_field`, `is_pk`, `is_increment`, `is_required`, `is_insert`, `is_edit`, `is_list`, `is_query`, `query_type`, `html_type`, `dict_type`, `sort`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1892771858534219778, 1892771858496471041, 'amount', '收款金额', 'decimal(22,6)', 'BigDecimal', 'amount', '0', '0', '0', '1', '1', '1', '1', 'BETWEEN', 'input', '', 7, 'admin', '2025-02-21 11:02:32', 'admin', '2025-02-21 11:16:46');
|
|
INSERT INTO `gen_table_column` (`column_id`, `table_id`, `column_name`, `column_comment`, `column_type`, `java_type`, `java_field`, `is_pk`, `is_increment`, `is_required`, `is_insert`, `is_edit`, `is_list`, `is_query`, `query_type`, `html_type`, `dict_type`, `sort`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1892771858534219779, 1892771858496471041, 'transfer_type', '提现类型(0直接提,1审核)', 'varchar(255)', 'String', 'transferType', '0', '0', '0', '1', '1', '1', '1', 'EQ', 'select', '', 8, 'admin', '2025-02-21 11:02:32', 'admin', '2025-02-21 11:16:46');
|
|
INSERT INTO `gen_table_column` (`column_id`, `table_id`, `column_name`, `column_comment`, `column_type`, `java_type`, `java_field`, `is_pk`, `is_increment`, `is_required`, `is_insert`, `is_edit`, `is_list`, `is_query`, `query_type`, `html_type`, `dict_type`, `sort`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1892771858534219780, 1892771858496471041, 'qr_code', '二维码解析', 'varchar(255)', 'String', 'qrCode', '0', '0', '0', '1', '1', '1', '1', 'EQ', 'input', '', 9, 'admin', '2025-02-21 11:02:32', 'admin', '2025-02-21 11:16:46');
|
|
INSERT INTO `gen_table_column` (`column_id`, `table_id`, `column_name`, `column_comment`, `column_type`, `java_type`, `java_field`, `is_pk`, `is_increment`, `is_required`, `is_insert`, `is_edit`, `is_list`, `is_query`, `query_type`, `html_type`, `dict_type`, `sort`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1892771858538414082, 1892771858496471041, 'remark', '提现备注', 'varchar(255)', 'String', 'remark', '0', '0', '0', '1', '1', '1', '1', 'LIKE', 'input', '', 10, 'admin', '2025-02-21 11:02:32', 'admin', '2025-02-21 11:16:46');
|
|
INSERT INTO `gen_table_column` (`column_id`, `table_id`, `column_name`, `column_comment`, `column_type`, `java_type`, `java_field`, `is_pk`, `is_increment`, `is_required`, `is_insert`, `is_edit`, `is_list`, `is_query`, `query_type`, `html_type`, `dict_type`, `sort`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1892771858542608385, 1892771858496471041, 'status', '状态(0发起,1拒绝,2通过)', 'int', 'String', 'status', '0', '0', '0', '1', '1', '1', '1', 'EQ', 'radio', '', 11, 'admin', '2025-02-21 11:02:32', 'admin', '2025-02-21 11:16:46');
|
|
INSERT INTO `gen_table_column` (`column_id`, `table_id`, `column_name`, `column_comment`, `column_type`, `java_type`, `java_field`, `is_pk`, `is_increment`, `is_required`, `is_insert`, `is_edit`, `is_list`, `is_query`, `query_type`, `html_type`, `dict_type`, `sort`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1892771858542608386, 1892771858496471041, 'del_flag', '删除标志(0代表存在 2代表删除)', 'char(1)', 'String', 'delFlag', '0', '0', '0', NULL, NULL, NULL, NULL, 'EQ', 'input', '', 12, 'admin', '2025-02-21 11:02:32', 'admin', '2025-02-21 11:16:46');
|
|
INSERT INTO `gen_table_column` (`column_id`, `table_id`, `column_name`, `column_comment`, `column_type`, `java_type`, `java_field`, `is_pk`, `is_increment`, `is_required`, `is_insert`, `is_edit`, `is_list`, `is_query`, `query_type`, `html_type`, `dict_type`, `sort`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1892771858546802690, 1892771858496471041, 'create_by', '创建者', 'varchar(64)', 'String', 'createBy', '0', '0', '0', NULL, NULL, NULL, NULL, 'EQ', 'input', '', 13, 'admin', '2025-02-21 11:02:32', 'admin', '2025-02-21 11:16:46');
|
|
INSERT INTO `gen_table_column` (`column_id`, `table_id`, `column_name`, `column_comment`, `column_type`, `java_type`, `java_field`, `is_pk`, `is_increment`, `is_required`, `is_insert`, `is_edit`, `is_list`, `is_query`, `query_type`, `html_type`, `dict_type`, `sort`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1892771858546802691, 1892771858496471041, 'create_time', '创建时间', 'datetime', 'Date', 'createTime', '0', '0', '0', NULL, NULL, '1', '1', 'EQ', 'datetime', '', 14, 'admin', '2025-02-21 11:02:32', 'admin', '2025-02-21 11:16:46');
|
|
INSERT INTO `gen_table_column` (`column_id`, `table_id`, `column_name`, `column_comment`, `column_type`, `java_type`, `java_field`, `is_pk`, `is_increment`, `is_required`, `is_insert`, `is_edit`, `is_list`, `is_query`, `query_type`, `html_type`, `dict_type`, `sort`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1892771858550996993, 1892771858496471041, 'update_by', '更新者', 'varchar(64)', 'String', 'updateBy', '0', '0', '0', NULL, NULL, NULL, NULL, 'EQ', 'input', '', 15, 'admin', '2025-02-21 11:02:32', 'admin', '2025-02-21 11:16:46');
|
|
INSERT INTO `gen_table_column` (`column_id`, `table_id`, `column_name`, `column_comment`, `column_type`, `java_type`, `java_field`, `is_pk`, `is_increment`, `is_required`, `is_insert`, `is_edit`, `is_list`, `is_query`, `query_type`, `html_type`, `dict_type`, `sort`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1892771858550996994, 1892771858496471041, 'update_time', '更新时间', 'datetime', 'Date', 'updateTime', '0', '0', '0', NULL, NULL, NULL, NULL, 'EQ', 'datetime', '', 16, 'admin', '2025-02-21 11:02:32', 'admin', '2025-02-21 11:16:46');
|
|
INSERT INTO `gen_table_column` (`column_id`, `table_id`, `column_name`, `column_comment`, `column_type`, `java_type`, `java_field`, `is_pk`, `is_increment`, `is_required`, `is_insert`, `is_edit`, `is_list`, `is_query`, `query_type`, `html_type`, `dict_type`, `sort`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1892771858609717249, 1892771858584551426, 'id', '唯一ID', 'bigint', 'Long', 'id', '1', '1', '0', NULL, '1', '1', NULL, 'EQ', 'input', '', 1, 'admin', '2025-02-21 11:02:32', 'admin', '2025-02-21 11:17:51');
|
|
INSERT INTO `gen_table_column` (`column_id`, `table_id`, `column_name`, `column_comment`, `column_type`, `java_type`, `java_field`, `is_pk`, `is_increment`, `is_required`, `is_insert`, `is_edit`, `is_list`, `is_query`, `query_type`, `html_type`, `dict_type`, `sort`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1892771858613911553, 1892771858584551426, 'user_id', '转账ID', 'varchar(255)', 'String', 'userId', '0', '0', '1', '1', '1', '1', '1', 'EQ', 'input', '', 2, 'admin', '2025-02-21 11:02:32', 'admin', '2025-02-21 11:17:51');
|
|
INSERT INTO `gen_table_column` (`column_id`, `table_id`, `column_name`, `column_comment`, `column_type`, `java_type`, `java_field`, `is_pk`, `is_increment`, `is_required`, `is_insert`, `is_edit`, `is_list`, `is_query`, `query_type`, `html_type`, `dict_type`, `sort`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1892771858613911554, 1892771858584551426, 'user_account', '转账账户', 'varchar(255)', 'String', 'userAccount', '0', '0', '1', '1', '1', '1', '1', 'EQ', 'input', '', 3, 'admin', '2025-02-21 11:02:32', 'admin', '2025-02-21 11:17:51');
|
|
INSERT INTO `gen_table_column` (`column_id`, `table_id`, `column_name`, `column_comment`, `column_type`, `java_type`, `java_field`, `is_pk`, `is_increment`, `is_required`, `is_insert`, `is_edit`, `is_list`, `is_query`, `query_type`, `html_type`, `dict_type`, `sort`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1892771858613911555, 1892771858584551426, 'to_id', '接收ID', 'varchar(255)', 'String', 'toId', '0', '0', '1', '1', '1', '1', '1', 'EQ', 'input', '', 4, 'admin', '2025-02-21 11:02:32', 'admin', '2025-02-21 11:17:51');
|
|
INSERT INTO `gen_table_column` (`column_id`, `table_id`, `column_name`, `column_comment`, `column_type`, `java_type`, `java_field`, `is_pk`, `is_increment`, `is_required`, `is_insert`, `is_edit`, `is_list`, `is_query`, `query_type`, `html_type`, `dict_type`, `sort`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1892771858618105858, 1892771858584551426, 'to_account', '接收账户', 'varchar(255)', 'String', 'toAccount', '0', '0', '1', '1', '1', '1', '1', 'EQ', 'input', '', 5, 'admin', '2025-02-21 11:02:32', 'admin', '2025-02-21 11:17:51');
|
|
INSERT INTO `gen_table_column` (`column_id`, `table_id`, `column_name`, `column_comment`, `column_type`, `java_type`, `java_field`, `is_pk`, `is_increment`, `is_required`, `is_insert`, `is_edit`, `is_list`, `is_query`, `query_type`, `html_type`, `dict_type`, `sort`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1892771858618105859, 1892771858584551426, 'bill_code', '账单唯一编号', 'varchar(255)', 'String', 'billCode', '0', '0', '0', '1', '1', '1', '1', 'EQ', 'input', '', 6, 'admin', '2025-02-21 11:02:32', 'admin', '2025-02-21 11:17:51');
|
|
INSERT INTO `gen_table_column` (`column_id`, `table_id`, `column_name`, `column_comment`, `column_type`, `java_type`, `java_field`, `is_pk`, `is_increment`, `is_required`, `is_insert`, `is_edit`, `is_list`, `is_query`, `query_type`, `html_type`, `dict_type`, `sort`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1892771858618105860, 1892771858584551426, 'amount', '转账金额', 'decimal(22,6)', 'BigDecimal', 'amount', '0', '0', '0', '1', '1', '1', '1', 'BETWEEN', 'input', '', 7, 'admin', '2025-02-21 11:02:32', 'admin', '2025-02-21 11:17:51');
|
|
INSERT INTO `gen_table_column` (`column_id`, `table_id`, `column_name`, `column_comment`, `column_type`, `java_type`, `java_field`, `is_pk`, `is_increment`, `is_required`, `is_insert`, `is_edit`, `is_list`, `is_query`, `query_type`, `html_type`, `dict_type`, `sort`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1892771858618105861, 1892771858584551426, 'transfer_type', '转账类型(0直接转,1审核)', 'varchar(255)', 'String', 'transferType', '0', '0', '0', '1', '1', '1', '1', 'EQ', 'select', '', 8, 'admin', '2025-02-21 11:02:32', 'admin', '2025-02-21 11:17:51');
|
|
INSERT INTO `gen_table_column` (`column_id`, `table_id`, `column_name`, `column_comment`, `column_type`, `java_type`, `java_field`, `is_pk`, `is_increment`, `is_required`, `is_insert`, `is_edit`, `is_list`, `is_query`, `query_type`, `html_type`, `dict_type`, `sort`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1892771858622300161, 1892771858584551426, 'remark', '转账备注', 'varchar(255)', 'String', 'remark', '0', '0', '0', '1', '1', '1', '1', 'LIKE', 'input', '', 9, 'admin', '2025-02-21 11:02:32', 'admin', '2025-02-21 11:17:51');
|
|
INSERT INTO `gen_table_column` (`column_id`, `table_id`, `column_name`, `column_comment`, `column_type`, `java_type`, `java_field`, `is_pk`, `is_increment`, `is_required`, `is_insert`, `is_edit`, `is_list`, `is_query`, `query_type`, `html_type`, `dict_type`, `sort`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1892771858622300162, 1892771858584551426, 'status', '状态(0发起,1拒绝,2通过)', 'int', 'String', 'status', '0', '0', '0', '1', '1', '1', '1', 'EQ', 'radio', '', 10, 'admin', '2025-02-21 11:02:32', 'admin', '2025-02-21 11:17:51');
|
|
INSERT INTO `gen_table_column` (`column_id`, `table_id`, `column_name`, `column_comment`, `column_type`, `java_type`, `java_field`, `is_pk`, `is_increment`, `is_required`, `is_insert`, `is_edit`, `is_list`, `is_query`, `query_type`, `html_type`, `dict_type`, `sort`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1892771858626494465, 1892771858584551426, 'del_flag', '删除标志(0代表存在 2代表删除)', 'char(1)', 'String', 'delFlag', '0', '0', '0', NULL, NULL, NULL, NULL, 'EQ', 'input', '', 11, 'admin', '2025-02-21 11:02:32', 'admin', '2025-02-21 11:17:51');
|
|
INSERT INTO `gen_table_column` (`column_id`, `table_id`, `column_name`, `column_comment`, `column_type`, `java_type`, `java_field`, `is_pk`, `is_increment`, `is_required`, `is_insert`, `is_edit`, `is_list`, `is_query`, `query_type`, `html_type`, `dict_type`, `sort`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1892771858626494466, 1892771858584551426, 'create_by', '创建者', 'varchar(64)', 'String', 'createBy', '0', '0', '0', NULL, NULL, NULL, NULL, 'EQ', 'input', '', 12, 'admin', '2025-02-21 11:02:32', 'admin', '2025-02-21 11:17:51');
|
|
INSERT INTO `gen_table_column` (`column_id`, `table_id`, `column_name`, `column_comment`, `column_type`, `java_type`, `java_field`, `is_pk`, `is_increment`, `is_required`, `is_insert`, `is_edit`, `is_list`, `is_query`, `query_type`, `html_type`, `dict_type`, `sort`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1892771858630688769, 1892771858584551426, 'create_time', '创建时间', 'datetime', 'Date', 'createTime', '0', '0', '0', NULL, NULL, '1', '1', 'BETWEEN', 'datetime', '', 13, 'admin', '2025-02-21 11:02:32', 'admin', '2025-02-21 11:17:51');
|
|
INSERT INTO `gen_table_column` (`column_id`, `table_id`, `column_name`, `column_comment`, `column_type`, `java_type`, `java_field`, `is_pk`, `is_increment`, `is_required`, `is_insert`, `is_edit`, `is_list`, `is_query`, `query_type`, `html_type`, `dict_type`, `sort`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1892771858630688770, 1892771858584551426, 'update_by', '更新者', 'varchar(64)', 'String', 'updateBy', '0', '0', '0', NULL, NULL, NULL, NULL, 'EQ', 'input', '', 14, 'admin', '2025-02-21 11:02:32', 'admin', '2025-02-21 11:17:51');
|
|
INSERT INTO `gen_table_column` (`column_id`, `table_id`, `column_name`, `column_comment`, `column_type`, `java_type`, `java_field`, `is_pk`, `is_increment`, `is_required`, `is_insert`, `is_edit`, `is_list`, `is_query`, `query_type`, `html_type`, `dict_type`, `sort`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1892771858630688771, 1892771858584551426, 'update_time', '更新时间', 'datetime', 'Date', 'updateTime', '0', '0', '0', NULL, NULL, NULL, NULL, 'EQ', 'datetime', '', 15, 'admin', '2025-02-21 11:02:32', 'admin', '2025-02-21 11:17:51');
|
|
INSERT INTO `gen_table_column` (`column_id`, `table_id`, `column_name`, `column_comment`, `column_type`, `java_type`, `java_field`, `is_pk`, `is_increment`, `is_required`, `is_insert`, `is_edit`, `is_list`, `is_query`, `query_type`, `html_type`, `dict_type`, `sort`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1892829078977851393, 1892829078860410882, 'id', '唯一ID', 'bigint', 'Long', 'id', '1', '1', '0', NULL, '1', '1', NULL, 'EQ', 'input', '', 1, 'admin', '2025-02-21 14:49:54', 'admin', '2025-02-21 14:58:15');
|
|
INSERT INTO `gen_table_column` (`column_id`, `table_id`, `column_name`, `column_comment`, `column_type`, `java_type`, `java_field`, `is_pk`, `is_increment`, `is_required`, `is_insert`, `is_edit`, `is_list`, `is_query`, `query_type`, `html_type`, `dict_type`, `sort`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1892829078998822914, 1892829078860410882, 'user_id', '反馈人', 'varchar(255)', 'String', 'userId', '0', '0', '1', '1', '1', '1', '1', 'EQ', 'input', '', 2, 'admin', '2025-02-21 14:49:54', 'admin', '2025-02-21 14:58:15');
|
|
INSERT INTO `gen_table_column` (`column_id`, `table_id`, `column_name`, `column_comment`, `column_type`, `java_type`, `java_field`, `is_pk`, `is_increment`, `is_required`, `is_insert`, `is_edit`, `is_list`, `is_query`, `query_type`, `html_type`, `dict_type`, `sort`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1892829079007211521, 1892829078860410882, 'content', '反馈内容', 'varchar(255)', 'String', 'content', '0', '0', '1', '1', '1', '1', '1', 'LIKE', 'editor', '', 3, 'admin', '2025-02-21 14:49:54', 'admin', '2025-02-21 14:58:15');
|
|
INSERT INTO `gen_table_column` (`column_id`, `table_id`, `column_name`, `column_comment`, `column_type`, `java_type`, `java_field`, `is_pk`, `is_increment`, `is_required`, `is_insert`, `is_edit`, `is_list`, `is_query`, `query_type`, `html_type`, `dict_type`, `sort`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1892829079015600130, 1892829078860410882, 'star', '星级(程度1-5)', 'varchar(4)', 'String', 'star', '0', '0', '0', '1', '1', '1', '1', 'EQ', 'input', '', 4, 'admin', '2025-02-21 14:49:54', 'admin', '2025-02-21 14:58:15');
|
|
INSERT INTO `gen_table_column` (`column_id`, `table_id`, `column_name`, `column_comment`, `column_type`, `java_type`, `java_field`, `is_pk`, `is_increment`, `is_required`, `is_insert`, `is_edit`, `is_list`, `is_query`, `query_type`, `html_type`, `dict_type`, `sort`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1892829079019794433, 1892829078860410882, 'is_good', '是否正向(0正向,1负向)', 'varchar(4)', 'String', 'isGood', '0', '0', '0', '1', '1', '1', '1', 'EQ', 'input', '', 5, 'admin', '2025-02-21 14:49:54', 'admin', '2025-02-21 14:58:15');
|
|
INSERT INTO `gen_table_column` (`column_id`, `table_id`, `column_name`, `column_comment`, `column_type`, `java_type`, `java_field`, `is_pk`, `is_increment`, `is_required`, `is_insert`, `is_edit`, `is_list`, `is_query`, `query_type`, `html_type`, `dict_type`, `sort`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1892829079023988738, 1892829078860410882, 'status', '状态(0正常,1封禁)', 'varchar(16)', 'String', 'status', '0', '0', '0', '1', '1', '1', '1', 'EQ', 'radio', '', 6, 'admin', '2025-02-21 14:49:54', 'admin', '2025-02-21 14:58:15');
|
|
INSERT INTO `gen_table_column` (`column_id`, `table_id`, `column_name`, `column_comment`, `column_type`, `java_type`, `java_field`, `is_pk`, `is_increment`, `is_required`, `is_insert`, `is_edit`, `is_list`, `is_query`, `query_type`, `html_type`, `dict_type`, `sort`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1892829079028183042, 1892829078860410882, 'del_flag', '删除标志(0代表存在 2代表删除)', 'char(1)', 'String', 'delFlag', '0', '0', '0', NULL, NULL, NULL, NULL, 'EQ', 'input', '', 7, 'admin', '2025-02-21 14:49:54', 'admin', '2025-02-21 14:58:15');
|
|
INSERT INTO `gen_table_column` (`column_id`, `table_id`, `column_name`, `column_comment`, `column_type`, `java_type`, `java_field`, `is_pk`, `is_increment`, `is_required`, `is_insert`, `is_edit`, `is_list`, `is_query`, `query_type`, `html_type`, `dict_type`, `sort`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1892829079036571649, 1892829078860410882, 'create_by', '创建者', 'varchar(64)', 'String', 'createBy', '0', '0', '0', NULL, NULL, NULL, NULL, 'EQ', 'input', '', 8, 'admin', '2025-02-21 14:49:54', 'admin', '2025-02-21 14:58:15');
|
|
INSERT INTO `gen_table_column` (`column_id`, `table_id`, `column_name`, `column_comment`, `column_type`, `java_type`, `java_field`, `is_pk`, `is_increment`, `is_required`, `is_insert`, `is_edit`, `is_list`, `is_query`, `query_type`, `html_type`, `dict_type`, `sort`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1892829079040765953, 1892829078860410882, 'create_time', '创建时间', 'datetime', 'Date', 'createTime', '0', '0', '0', NULL, NULL, '1', '1', 'BETWEEN', 'datetime', '', 9, 'admin', '2025-02-21 14:49:54', 'admin', '2025-02-21 14:58:15');
|
|
INSERT INTO `gen_table_column` (`column_id`, `table_id`, `column_name`, `column_comment`, `column_type`, `java_type`, `java_field`, `is_pk`, `is_increment`, `is_required`, `is_insert`, `is_edit`, `is_list`, `is_query`, `query_type`, `html_type`, `dict_type`, `sort`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1892829079044960257, 1892829078860410882, 'update_by', '更新者', 'varchar(64)', 'String', 'updateBy', '0', '0', '0', NULL, NULL, NULL, NULL, 'EQ', 'input', '', 10, 'admin', '2025-02-21 14:49:54', 'admin', '2025-02-21 14:58:15');
|
|
INSERT INTO `gen_table_column` (`column_id`, `table_id`, `column_name`, `column_comment`, `column_type`, `java_type`, `java_field`, `is_pk`, `is_increment`, `is_required`, `is_insert`, `is_edit`, `is_list`, `is_query`, `query_type`, `html_type`, `dict_type`, `sort`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1892829079049154562, 1892829078860410882, 'update_time', '更新时间', 'datetime', 'Date', 'updateTime', '0', '0', '0', NULL, NULL, NULL, NULL, 'EQ', 'datetime', '', 11, 'admin', '2025-02-21 14:49:54', 'admin', '2025-02-21 14:58:15');
|
|
INSERT INTO `gen_table_column` (`column_id`, `table_id`, `column_name`, `column_comment`, `column_type`, `java_type`, `java_field`, `is_pk`, `is_increment`, `is_required`, `is_insert`, `is_edit`, `is_list`, `is_query`, `query_type`, `html_type`, `dict_type`, `sort`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1892829079149817858, 1892829079103680514, 'id', '唯一ID', 'bigint', 'Long', 'id', '1', '1', '0', NULL, '1', '1', NULL, 'EQ', 'input', '', 1, 'admin', '2025-02-21 14:49:54', 'admin', '2025-02-21 14:57:11');
|
|
INSERT INTO `gen_table_column` (`column_id`, `table_id`, `column_name`, `column_comment`, `column_type`, `java_type`, `java_field`, `is_pk`, `is_increment`, `is_required`, `is_insert`, `is_edit`, `is_list`, `is_query`, `query_type`, `html_type`, `dict_type`, `sort`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1892829079154012161, 1892829079103680514, 'version', '版本号', 'varchar(255)', 'String', 'version', '0', '0', '0', '1', '1', '1', '1', 'LIKE', 'input', '', 2, 'admin', '2025-02-21 14:49:54', 'admin', '2025-02-21 14:57:11');
|
|
INSERT INTO `gen_table_column` (`column_id`, `table_id`, `column_name`, `column_comment`, `column_type`, `java_type`, `java_field`, `is_pk`, `is_increment`, `is_required`, `is_insert`, `is_edit`, `is_list`, `is_query`, `query_type`, `html_type`, `dict_type`, `sort`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1892829079162400769, 1892829079103680514, 'release_date', '发版日期', 'datetime', 'Date', 'releaseDate', '0', '0', '0', '1', '1', '1', '1', 'BETWEEN', 'datetime', '', 3, 'admin', '2025-02-21 14:49:54', 'admin', '2025-02-21 14:57:11');
|
|
INSERT INTO `gen_table_column` (`column_id`, `table_id`, `column_name`, `column_comment`, `column_type`, `java_type`, `java_field`, `is_pk`, `is_increment`, `is_required`, `is_insert`, `is_edit`, `is_list`, `is_query`, `query_type`, `html_type`, `dict_type`, `sort`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1892829079170789378, 1892829079103680514, 'privacy_policy', '隐私政策', 'text', 'String', 'privacyPolicy', '0', '0', '0', '1', '1', '1', '1', 'LIKE', 'textarea', '', 4, 'admin', '2025-02-21 14:49:54', 'admin', '2025-02-21 14:57:11');
|
|
INSERT INTO `gen_table_column` (`column_id`, `table_id`, `column_name`, `column_comment`, `column_type`, `java_type`, `java_field`, `is_pk`, `is_increment`, `is_required`, `is_insert`, `is_edit`, `is_list`, `is_query`, `query_type`, `html_type`, `dict_type`, `sort`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1892829079174983681, 1892829079103680514, 'privacy_setting', '隐私设置', 'text', 'String', 'privacySetting', '0', '0', '0', '1', '1', '1', '1', 'LIKE', 'textarea', '', 5, 'admin', '2025-02-21 14:49:54', 'admin', '2025-02-21 14:57:11');
|
|
INSERT INTO `gen_table_column` (`column_id`, `table_id`, `column_name`, `column_comment`, `column_type`, `java_type`, `java_field`, `is_pk`, `is_increment`, `is_required`, `is_insert`, `is_edit`, `is_list`, `is_query`, `query_type`, `html_type`, `dict_type`, `sort`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1892829079183372290, 1892829079103680514, 'feature_desc', '功能说明', 'text', 'String', 'featureDesc', '0', '0', '0', '1', '1', '1', '1', 'LIKE', 'textarea', '', 6, 'admin', '2025-02-21 14:49:54', 'admin', '2025-02-21 14:57:11');
|
|
INSERT INTO `gen_table_column` (`column_id`, `table_id`, `column_name`, `column_comment`, `column_type`, `java_type`, `java_field`, `is_pk`, `is_increment`, `is_required`, `is_insert`, `is_edit`, `is_list`, `is_query`, `query_type`, `html_type`, `dict_type`, `sort`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1892829079191760898, 1892829079103680514, 'tech_desc', '技术说明', 'text', 'String', 'techDesc', '0', '0', '0', '1', '1', '1', '1', 'LIKE', 'textarea', '', 7, 'admin', '2025-02-21 14:49:54', 'admin', '2025-02-21 14:57:11');
|
|
INSERT INTO `gen_table_column` (`column_id`, `table_id`, `column_name`, `column_comment`, `column_type`, `java_type`, `java_field`, `is_pk`, `is_increment`, `is_required`, `is_insert`, `is_edit`, `is_list`, `is_query`, `query_type`, `html_type`, `dict_type`, `sort`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1892829079195955201, 1892829079103680514, 'user_agreement', '用户协议', 'text', 'String', 'userAgreement', '0', '0', '0', '1', '1', '1', '1', 'LIKE', 'textarea', '', 8, 'admin', '2025-02-21 14:49:54', 'admin', '2025-02-21 14:57:11');
|
|
INSERT INTO `gen_table_column` (`column_id`, `table_id`, `column_name`, `column_comment`, `column_type`, `java_type`, `java_field`, `is_pk`, `is_increment`, `is_required`, `is_insert`, `is_edit`, `is_list`, `is_query`, `query_type`, `html_type`, `dict_type`, `sort`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1892829079200149505, 1892829079103680514, 'disclaimer', '免责声明', 'text', 'String', 'disclaimer', '0', '0', '0', '1', '1', '1', '1', 'LIKE', 'textarea', '', 9, 'admin', '2025-02-21 14:49:54', 'admin', '2025-02-21 14:57:11');
|
|
INSERT INTO `gen_table_column` (`column_id`, `table_id`, `column_name`, `column_comment`, `column_type`, `java_type`, `java_field`, `is_pk`, `is_increment`, `is_required`, `is_insert`, `is_edit`, `is_list`, `is_query`, `query_type`, `html_type`, `dict_type`, `sort`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1892829079204343810, 1892829079103680514, 'about', '关于我们', 'varchar(255)', 'String', 'about', '0', '0', '0', '1', '1', '1', '1', 'LIKE', 'input', '', 10, 'admin', '2025-02-21 14:49:54', 'admin', '2025-02-21 14:57:11');
|
|
INSERT INTO `gen_table_column` (`column_id`, `table_id`, `column_name`, `column_comment`, `column_type`, `java_type`, `java_field`, `is_pk`, `is_increment`, `is_required`, `is_insert`, `is_edit`, `is_list`, `is_query`, `query_type`, `html_type`, `dict_type`, `sort`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1892829079208538113, 1892829079103680514, 'share_info_list', '个人信息共享清单', 'text', 'String', 'shareInfoList', '0', '0', '0', '1', '1', '1', '1', 'LIKE', 'textarea', '', 11, 'admin', '2025-02-21 14:49:54', 'admin', '2025-02-21 14:57:11');
|
|
INSERT INTO `gen_table_column` (`column_id`, `table_id`, `column_name`, `column_comment`, `column_type`, `java_type`, `java_field`, `is_pk`, `is_increment`, `is_required`, `is_insert`, `is_edit`, `is_list`, `is_query`, `query_type`, `html_type`, `dict_type`, `sort`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1892829079208538114, 1892829079103680514, 'collect_info_list', '个人信息已收集清单', 'text', 'String', 'collectInfoList', '0', '0', '0', '1', '1', '1', '1', 'BETWEEN', 'textarea', '', 12, 'admin', '2025-02-21 14:49:54', 'admin', '2025-02-21 14:57:11');
|
|
INSERT INTO `gen_table_column` (`column_id`, `table_id`, `column_name`, `column_comment`, `column_type`, `java_type`, `java_field`, `is_pk`, `is_increment`, `is_required`, `is_insert`, `is_edit`, `is_list`, `is_query`, `query_type`, `html_type`, `dict_type`, `sort`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1892829079212732418, 1892829079103680514, 'status', '状态(0正常,1停用)', 'varchar(16)', 'String', 'status', '0', '0', '0', '1', '1', '1', '1', 'EQ', 'radio', '', 13, 'admin', '2025-02-21 14:49:54', 'admin', '2025-02-21 14:57:11');
|
|
INSERT INTO `gen_table_column` (`column_id`, `table_id`, `column_name`, `column_comment`, `column_type`, `java_type`, `java_field`, `is_pk`, `is_increment`, `is_required`, `is_insert`, `is_edit`, `is_list`, `is_query`, `query_type`, `html_type`, `dict_type`, `sort`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1892829079216926721, 1892829079103680514, 'del_flag', '删除标志(0代表存在 2代表删除)', 'char(1)', 'String', 'delFlag', '0', '0', '0', NULL, NULL, NULL, NULL, 'EQ', 'input', '', 14, 'admin', '2025-02-21 14:49:54', 'admin', '2025-02-21 14:57:11');
|
|
INSERT INTO `gen_table_column` (`column_id`, `table_id`, `column_name`, `column_comment`, `column_type`, `java_type`, `java_field`, `is_pk`, `is_increment`, `is_required`, `is_insert`, `is_edit`, `is_list`, `is_query`, `query_type`, `html_type`, `dict_type`, `sort`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1892829079221121026, 1892829079103680514, 'create_by', '创建者', 'varchar(64)', 'String', 'createBy', '0', '0', '0', NULL, NULL, NULL, NULL, 'EQ', 'input', '', 15, 'admin', '2025-02-21 14:49:54', 'admin', '2025-02-21 14:57:11');
|
|
INSERT INTO `gen_table_column` (`column_id`, `table_id`, `column_name`, `column_comment`, `column_type`, `java_type`, `java_field`, `is_pk`, `is_increment`, `is_required`, `is_insert`, `is_edit`, `is_list`, `is_query`, `query_type`, `html_type`, `dict_type`, `sort`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1892829079225315330, 1892829079103680514, 'create_time', '创建时间', 'datetime', 'Date', 'createTime', '0', '0', '0', NULL, NULL, '1', '1', 'BETWEEN', 'datetime', '', 16, 'admin', '2025-02-21 14:49:54', 'admin', '2025-02-21 14:57:11');
|
|
INSERT INTO `gen_table_column` (`column_id`, `table_id`, `column_name`, `column_comment`, `column_type`, `java_type`, `java_field`, `is_pk`, `is_increment`, `is_required`, `is_insert`, `is_edit`, `is_list`, `is_query`, `query_type`, `html_type`, `dict_type`, `sort`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1892829079229509634, 1892829079103680514, 'update_by', '更新者', 'varchar(64)', 'String', 'updateBy', '0', '0', '0', NULL, NULL, NULL, NULL, 'EQ', 'input', '', 17, 'admin', '2025-02-21 14:49:54', 'admin', '2025-02-21 14:57:11');
|
|
INSERT INTO `gen_table_column` (`column_id`, `table_id`, `column_name`, `column_comment`, `column_type`, `java_type`, `java_field`, `is_pk`, `is_increment`, `is_required`, `is_insert`, `is_edit`, `is_list`, `is_query`, `query_type`, `html_type`, `dict_type`, `sort`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1892829079233703937, 1892829079103680514, 'update_time', '更新时间', 'datetime', 'Date', 'updateTime', '0', '0', '0', NULL, NULL, NULL, NULL, 'EQ', 'datetime', '', 18, 'admin', '2025-02-21 14:49:54', 'admin', '2025-02-21 14:57:11');
|
|
INSERT INTO `gen_table_column` (`column_id`, `table_id`, `column_name`, `column_comment`, `column_type`, `java_type`, `java_field`, `is_pk`, `is_increment`, `is_required`, `is_insert`, `is_edit`, `is_list`, `is_query`, `query_type`, `html_type`, `dict_type`, `sort`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1892829079317590018, 1892829079284035585, 'id', '唯一ID', 'bigint', 'Long', 'id', '1', '1', '0', NULL, '1', '1', NULL, 'EQ', 'input', '', 1, 'admin', '2025-02-21 14:49:54', 'admin', '2025-02-21 14:58:55');
|
|
INSERT INTO `gen_table_column` (`column_id`, `table_id`, `column_name`, `column_comment`, `column_type`, `java_type`, `java_field`, `is_pk`, `is_increment`, `is_required`, `is_insert`, `is_edit`, `is_list`, `is_query`, `query_type`, `html_type`, `dict_type`, `sort`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1892829079321784321, 1892829079284035585, 'event_id', '触发事务ID', 'varchar(255)', 'String', 'eventId', '0', '0', '0', '1', '1', '1', '1', 'EQ', 'input', '', 2, 'admin', '2025-02-21 14:49:54', 'admin', '2025-02-21 14:58:55');
|
|
INSERT INTO `gen_table_column` (`column_id`, `table_id`, `column_name`, `column_comment`, `column_type`, `java_type`, `java_field`, `is_pk`, `is_increment`, `is_required`, `is_insert`, `is_edit`, `is_list`, `is_query`, `query_type`, `html_type`, `dict_type`, `sort`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1892829079321784322, 1892829079284035585, 'message_type', '消息类型(系统、通知、活动等)', 'varchar(255)', 'String', 'messageType', '0', '0', '0', '1', '1', '1', '1', 'EQ', 'select', '', 3, 'admin', '2025-02-21 14:49:54', 'admin', '2025-02-21 14:58:55');
|
|
INSERT INTO `gen_table_column` (`column_id`, `table_id`, `column_name`, `column_comment`, `column_type`, `java_type`, `java_field`, `is_pk`, `is_increment`, `is_required`, `is_insert`, `is_edit`, `is_list`, `is_query`, `query_type`, `html_type`, `dict_type`, `sort`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1892829079325978625, 1892829079284035585, 'message_scene', '消息场景(支付、提现等)', 'varchar(255)', 'String', 'messageScene', '0', '0', '0', '1', '1', '1', '1', 'EQ', 'input', '', 4, 'admin', '2025-02-21 14:49:54', 'admin', '2025-02-21 14:58:55');
|
|
INSERT INTO `gen_table_column` (`column_id`, `table_id`, `column_name`, `column_comment`, `column_type`, `java_type`, `java_field`, `is_pk`, `is_increment`, `is_required`, `is_insert`, `is_edit`, `is_list`, `is_query`, `query_type`, `html_type`, `dict_type`, `sort`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1892829079325978626, 1892829079284035585, 'sender', '发送者', 'varchar(255)', 'String', 'sender', '0', '0', '0', '1', '1', '1', '1', 'EQ', 'input', '', 5, 'admin', '2025-02-21 14:49:54', 'admin', '2025-02-21 14:58:55');
|
|
INSERT INTO `gen_table_column` (`column_id`, `table_id`, `column_name`, `column_comment`, `column_type`, `java_type`, `java_field`, `is_pk`, `is_increment`, `is_required`, `is_insert`, `is_edit`, `is_list`, `is_query`, `query_type`, `html_type`, `dict_type`, `sort`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1892829079330172930, 1892829079284035585, 'receiver', '接收者', 'varchar(255)', 'String', 'receiver', '0', '0', '0', '1', '1', '1', '1', 'EQ', 'input', '', 6, 'admin', '2025-02-21 14:49:54', 'admin', '2025-02-21 14:58:55');
|
|
INSERT INTO `gen_table_column` (`column_id`, `table_id`, `column_name`, `column_comment`, `column_type`, `java_type`, `java_field`, `is_pk`, `is_increment`, `is_required`, `is_insert`, `is_edit`, `is_list`, `is_query`, `query_type`, `html_type`, `dict_type`, `sort`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1892829079330172931, 1892829079284035585, 'title', '标题', 'varchar(255)', 'String', 'title', '0', '0', '0', '1', '1', '1', '1', 'EQ', 'input', '', 7, 'admin', '2025-02-21 14:49:54', 'admin', '2025-02-21 14:58:55');
|
|
INSERT INTO `gen_table_column` (`column_id`, `table_id`, `column_name`, `column_comment`, `column_type`, `java_type`, `java_field`, `is_pk`, `is_increment`, `is_required`, `is_insert`, `is_edit`, `is_list`, `is_query`, `query_type`, `html_type`, `dict_type`, `sort`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1892829079334367233, 1892829079284035585, 'content', '内容', 'varchar(511)', 'String', 'content', '0', '0', '0', '1', '1', '1', '1', 'EQ', 'editor', '', 8, 'admin', '2025-02-21 14:49:54', 'admin', '2025-02-21 14:58:55');
|
|
INSERT INTO `gen_table_column` (`column_id`, `table_id`, `column_name`, `column_comment`, `column_type`, `java_type`, `java_field`, `is_pk`, `is_increment`, `is_required`, `is_insert`, `is_edit`, `is_list`, `is_query`, `query_type`, `html_type`, `dict_type`, `sort`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1892829079334367234, 1892829079284035585, 'status', '状态(0正常,1封禁)', 'varchar(16)', 'String', 'status', '0', '0', '0', '1', '1', '1', '1', 'EQ', 'radio', '', 9, 'admin', '2025-02-21 14:49:54', 'admin', '2025-02-21 14:58:55');
|
|
INSERT INTO `gen_table_column` (`column_id`, `table_id`, `column_name`, `column_comment`, `column_type`, `java_type`, `java_field`, `is_pk`, `is_increment`, `is_required`, `is_insert`, `is_edit`, `is_list`, `is_query`, `query_type`, `html_type`, `dict_type`, `sort`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1892829079334367235, 1892829079284035585, 'del_flag', '删除标志(0代表存在 2代表删除)', 'char(1)', 'String', 'delFlag', '0', '0', '0', NULL, NULL, NULL, NULL, 'EQ', 'input', '', 10, 'admin', '2025-02-21 14:49:54', 'admin', '2025-02-21 14:58:55');
|
|
INSERT INTO `gen_table_column` (`column_id`, `table_id`, `column_name`, `column_comment`, `column_type`, `java_type`, `java_field`, `is_pk`, `is_increment`, `is_required`, `is_insert`, `is_edit`, `is_list`, `is_query`, `query_type`, `html_type`, `dict_type`, `sort`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1892829079338561538, 1892829079284035585, 'create_by', '创建者', 'varchar(64)', 'String', 'createBy', '0', '0', '0', NULL, NULL, NULL, NULL, 'EQ', 'input', '', 11, 'admin', '2025-02-21 14:49:54', 'admin', '2025-02-21 14:58:55');
|
|
INSERT INTO `gen_table_column` (`column_id`, `table_id`, `column_name`, `column_comment`, `column_type`, `java_type`, `java_field`, `is_pk`, `is_increment`, `is_required`, `is_insert`, `is_edit`, `is_list`, `is_query`, `query_type`, `html_type`, `dict_type`, `sort`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1892829079342755842, 1892829079284035585, 'create_time', '创建时间', 'datetime', 'Date', 'createTime', '0', '0', '0', NULL, NULL, NULL, NULL, 'EQ', 'datetime', '', 12, 'admin', '2025-02-21 14:49:54', 'admin', '2025-02-21 14:58:55');
|
|
INSERT INTO `gen_table_column` (`column_id`, `table_id`, `column_name`, `column_comment`, `column_type`, `java_type`, `java_field`, `is_pk`, `is_increment`, `is_required`, `is_insert`, `is_edit`, `is_list`, `is_query`, `query_type`, `html_type`, `dict_type`, `sort`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1892829079342755843, 1892829079284035585, 'update_by', '更新者', 'varchar(64)', 'String', 'updateBy', '0', '0', '0', NULL, NULL, NULL, NULL, 'EQ', 'input', '', 13, 'admin', '2025-02-21 14:49:54', 'admin', '2025-02-21 14:58:55');
|
|
INSERT INTO `gen_table_column` (`column_id`, `table_id`, `column_name`, `column_comment`, `column_type`, `java_type`, `java_field`, `is_pk`, `is_increment`, `is_required`, `is_insert`, `is_edit`, `is_list`, `is_query`, `query_type`, `html_type`, `dict_type`, `sort`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1892829079346950145, 1892829079284035585, 'update_time', '更新时间', 'datetime', 'Date', 'updateTime', '0', '0', '0', NULL, NULL, NULL, NULL, 'EQ', 'datetime', '', 14, 'admin', '2025-02-21 14:49:54', 'admin', '2025-02-21 14:58:55');
|
|
INSERT INTO `gen_table_column` (`column_id`, `table_id`, `column_name`, `column_comment`, `column_type`, `java_type`, `java_field`, `is_pk`, `is_increment`, `is_required`, `is_insert`, `is_edit`, `is_list`, `is_query`, `query_type`, `html_type`, `dict_type`, `sort`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1893194816129380354, 1893194816032911361, 'id', 'ID', 'bigint', 'Long', 'id', '1', '1', '0', NULL, '1', '1', NULL, 'EQ', 'input', '', 1, 'admin', '2025-02-22 15:03:13', 'admin', '2025-02-22 15:04:40');
|
|
INSERT INTO `gen_table_column` (`column_id`, `table_id`, `column_name`, `column_comment`, `column_type`, `java_type`, `java_field`, `is_pk`, `is_increment`, `is_required`, `is_insert`, `is_edit`, `is_list`, `is_query`, `query_type`, `html_type`, `dict_type`, `sort`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1893194816141963265, 1893194816032911361, 'sender_id', '用户ID', 'varchar(255)', 'String', 'senderId', '0', '0', '0', '1', '1', '1', '1', 'EQ', 'input', '', 2, 'admin', '2025-02-22 15:03:13', 'admin', '2025-02-22 15:04:40');
|
|
INSERT INTO `gen_table_column` (`column_id`, `table_id`, `column_name`, `column_comment`, `column_type`, `java_type`, `java_field`, `is_pk`, `is_increment`, `is_required`, `is_insert`, `is_edit`, `is_list`, `is_query`, `query_type`, `html_type`, `dict_type`, `sort`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1893194816162934785, 1893194816032911361, 'sender_account', '账户编号', 'varchar(255)', 'String', 'senderAccount', '0', '0', '0', '1', '1', '1', '1', 'EQ', 'input', '', 3, 'admin', '2025-02-22 15:03:13', 'admin', '2025-02-22 15:04:40');
|
|
INSERT INTO `gen_table_column` (`column_id`, `table_id`, `column_name`, `column_comment`, `column_type`, `java_type`, `java_field`, `is_pk`, `is_increment`, `is_required`, `is_insert`, `is_edit`, `is_list`, `is_query`, `query_type`, `html_type`, `dict_type`, `sort`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1893194816171323394, 1893194816032911361, 'type', '交易类型', 'varchar(64)', 'String', 'type', '0', '0', '0', '1', '1', '1', '1', 'EQ', 'select', '', 4, 'admin', '2025-02-22 15:03:13', 'admin', '2025-02-22 15:04:40');
|
|
INSERT INTO `gen_table_column` (`column_id`, `table_id`, `column_name`, `column_comment`, `column_type`, `java_type`, `java_field`, `is_pk`, `is_increment`, `is_required`, `is_insert`, `is_edit`, `is_list`, `is_query`, `query_type`, `html_type`, `dict_type`, `sort`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1893194816175517697, 1893194816032911361, 'receiver_id', '目标用户ID', 'varchar(255)', 'String', 'receiverId', '0', '0', '0', '1', '1', '1', '1', 'EQ', 'input', '', 5, 'admin', '2025-02-22 15:03:13', 'admin', '2025-02-22 15:04:40');
|
|
INSERT INTO `gen_table_column` (`column_id`, `table_id`, `column_name`, `column_comment`, `column_type`, `java_type`, `java_field`, `is_pk`, `is_increment`, `is_required`, `is_insert`, `is_edit`, `is_list`, `is_query`, `query_type`, `html_type`, `dict_type`, `sort`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1893194816179712002, 1893194816032911361, 'receiver_account', '目标用户账户编号', 'varchar(255)', 'String', 'receiverAccount', '0', '0', '0', '1', '1', '1', '1', 'EQ', 'input', '', 6, 'admin', '2025-02-22 15:03:13', 'admin', '2025-02-22 15:04:40');
|
|
INSERT INTO `gen_table_column` (`column_id`, `table_id`, `column_name`, `column_comment`, `column_type`, `java_type`, `java_field`, `is_pk`, `is_increment`, `is_required`, `is_insert`, `is_edit`, `is_list`, `is_query`, `query_type`, `html_type`, `dict_type`, `sort`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1893194816188100609, 1893194816032911361, 'previous', '交易前金额', 'decimal(22,6)', 'BigDecimal', 'previous', '0', '0', '0', '1', '1', '1', '1', 'BETWEEN', 'input', '', 7, 'admin', '2025-02-22 15:03:13', 'admin', '2025-02-22 15:04:40');
|
|
INSERT INTO `gen_table_column` (`column_id`, `table_id`, `column_name`, `column_comment`, `column_type`, `java_type`, `java_field`, `is_pk`, `is_increment`, `is_required`, `is_insert`, `is_edit`, `is_list`, `is_query`, `query_type`, `html_type`, `dict_type`, `sort`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1893194816192294913, 1893194816032911361, 'change', '交易金额(负数为支出)', 'decimal(10,0)', 'Long', 'change', '0', '0', '0', '1', '1', '1', '1', 'BETWEEN', 'input', '', 8, 'admin', '2025-02-22 15:03:13', 'admin', '2025-02-22 15:04:40');
|
|
INSERT INTO `gen_table_column` (`column_id`, `table_id`, `column_name`, `column_comment`, `column_type`, `java_type`, `java_field`, `is_pk`, `is_increment`, `is_required`, `is_insert`, `is_edit`, `is_list`, `is_query`, `query_type`, `html_type`, `dict_type`, `sort`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1893194816196489217, 1893194816032911361, 'current', '当前金额', 'decimal(22,6)', 'BigDecimal', 'current', '0', '0', '0', '1', '1', '1', '1', 'BETWEEN', 'input', '', 9, 'admin', '2025-02-22 15:03:13', 'admin', '2025-02-22 15:04:40');
|
|
INSERT INTO `gen_table_column` (`column_id`, `table_id`, `column_name`, `column_comment`, `column_type`, `java_type`, `java_field`, `is_pk`, `is_increment`, `is_required`, `is_insert`, `is_edit`, `is_list`, `is_query`, `query_type`, `html_type`, `dict_type`, `sort`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1893194816200683522, 1893194816032911361, 'note', '交易备注', 'varchar(511)', 'String', 'note', '0', '0', '0', '1', '1', '1', '1', 'BETWEEN', 'textarea', '', 10, 'admin', '2025-02-22 15:03:13', 'admin', '2025-02-22 15:04:40');
|
|
INSERT INTO `gen_table_column` (`column_id`, `table_id`, `column_name`, `column_comment`, `column_type`, `java_type`, `java_field`, `is_pk`, `is_increment`, `is_required`, `is_insert`, `is_edit`, `is_list`, `is_query`, `query_type`, `html_type`, `dict_type`, `sort`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1893194816204877826, 1893194816032911361, 'time', '交易时间', 'datetime', 'Date', 'time', '0', '0', '0', '1', '1', '1', '1', 'BETWEEN', 'datetime', '', 11, 'admin', '2025-02-22 15:03:13', 'admin', '2025-02-22 15:04:40');
|
|
INSERT INTO `gen_table_column` (`column_id`, `table_id`, `column_name`, `column_comment`, `column_type`, `java_type`, `java_field`, `is_pk`, `is_increment`, `is_required`, `is_insert`, `is_edit`, `is_list`, `is_query`, `query_type`, `html_type`, `dict_type`, `sort`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1893194816209072130, 1893194816032911361, 'status', '状态(0正常,1封禁)', 'varchar(16)', 'String', 'status', '0', '0', '0', '1', '1', '1', '1', 'EQ', 'radio', '', 12, 'admin', '2025-02-22 15:03:13', 'admin', '2025-02-22 15:04:40');
|
|
INSERT INTO `gen_table_column` (`column_id`, `table_id`, `column_name`, `column_comment`, `column_type`, `java_type`, `java_field`, `is_pk`, `is_increment`, `is_required`, `is_insert`, `is_edit`, `is_list`, `is_query`, `query_type`, `html_type`, `dict_type`, `sort`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1893194816213266433, 1893194816032911361, 'del_flag', '删除标志(0代表存在 2代表删除)', 'char(1)', 'String', 'delFlag', '0', '0', '0', NULL, NULL, NULL, NULL, 'EQ', 'input', '', 13, 'admin', '2025-02-22 15:03:13', 'admin', '2025-02-22 15:04:40');
|
|
INSERT INTO `gen_table_column` (`column_id`, `table_id`, `column_name`, `column_comment`, `column_type`, `java_type`, `java_field`, `is_pk`, `is_increment`, `is_required`, `is_insert`, `is_edit`, `is_list`, `is_query`, `query_type`, `html_type`, `dict_type`, `sort`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1893194816221655041, 1893194816032911361, 'create_by', '创建者', 'varchar(64)', 'String', 'createBy', '0', '0', '0', NULL, NULL, NULL, NULL, 'EQ', 'input', '', 14, 'admin', '2025-02-22 15:03:13', 'admin', '2025-02-22 15:04:40');
|
|
INSERT INTO `gen_table_column` (`column_id`, `table_id`, `column_name`, `column_comment`, `column_type`, `java_type`, `java_field`, `is_pk`, `is_increment`, `is_required`, `is_insert`, `is_edit`, `is_list`, `is_query`, `query_type`, `html_type`, `dict_type`, `sort`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1893194816225849345, 1893194816032911361, 'create_time', '创建时间', 'datetime', 'Date', 'createTime', '0', '0', '0', NULL, NULL, '1', '1', 'BETWEEN', 'datetime', '', 15, 'admin', '2025-02-22 15:03:13', 'admin', '2025-02-22 15:04:40');
|
|
INSERT INTO `gen_table_column` (`column_id`, `table_id`, `column_name`, `column_comment`, `column_type`, `java_type`, `java_field`, `is_pk`, `is_increment`, `is_required`, `is_insert`, `is_edit`, `is_list`, `is_query`, `query_type`, `html_type`, `dict_type`, `sort`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1893194816230043649, 1893194816032911361, 'update_by', '更新者', 'varchar(64)', 'String', 'updateBy', '0', '0', '0', NULL, NULL, NULL, NULL, 'EQ', 'input', '', 16, 'admin', '2025-02-22 15:03:13', 'admin', '2025-02-22 15:04:40');
|
|
INSERT INTO `gen_table_column` (`column_id`, `table_id`, `column_name`, `column_comment`, `column_type`, `java_type`, `java_field`, `is_pk`, `is_increment`, `is_required`, `is_insert`, `is_edit`, `is_list`, `is_query`, `query_type`, `html_type`, `dict_type`, `sort`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1893194816238432257, 1893194816032911361, 'update_time', '更新时间', 'datetime', 'Date', 'updateTime', '0', '0', '0', NULL, NULL, NULL, NULL, 'EQ', 'datetime', '', 17, 'admin', '2025-02-22 15:03:13', 'admin', '2025-02-22 15:04:40');
|
|
COMMIT;
|
|
|
|
-- ----------------------------
|
|
-- Table structure for sys_config
|
|
-- ----------------------------
|
|
DROP TABLE IF EXISTS `sys_config`;
|
|
CREATE TABLE `sys_config` (
|
|
`config_id` bigint NOT NULL COMMENT '参数主键',
|
|
`config_name` varchar(100) DEFAULT '' COMMENT '参数名称',
|
|
`config_key` varchar(100) DEFAULT '' COMMENT '参数键名',
|
|
`config_value` varchar(500) DEFAULT '' COMMENT '参数键值',
|
|
`config_type` char(1) DEFAULT 'N' COMMENT '系统内置(Y是 N否)',
|
|
`create_by` varchar(64) DEFAULT '' COMMENT '创建者',
|
|
`create_time` datetime DEFAULT NULL COMMENT '创建时间',
|
|
`update_by` varchar(64) DEFAULT '' COMMENT '更新者',
|
|
`update_time` datetime DEFAULT NULL COMMENT '更新时间',
|
|
`remark` varchar(500) DEFAULT NULL COMMENT '备注',
|
|
PRIMARY KEY (`config_id`)
|
|
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='参数配置表';
|
|
|
|
-- ----------------------------
|
|
-- Records of sys_config
|
|
-- ----------------------------
|
|
BEGIN;
|
|
INSERT INTO `sys_config` (`config_id`, `config_name`, `config_key`, `config_value`, `config_type`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1, '主框架页-默认皮肤样式名称', 'sys.index.skinName', 'skin-blue', 'Y', 'admin', '2025-02-19 05:35:30', '', NULL, '蓝色 skin-blue、绿色 skin-green、紫色 skin-purple、红色 skin-red、黄色 skin-yellow');
|
|
INSERT INTO `sys_config` (`config_id`, `config_name`, `config_key`, `config_value`, `config_type`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (2, '用户管理-账号初始密码', 'sys.user.initPassword', '123456', 'Y', 'admin', '2025-02-19 05:35:30', '', NULL, '初始化密码 123456');
|
|
INSERT INTO `sys_config` (`config_id`, `config_name`, `config_key`, `config_value`, `config_type`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (3, '主框架页-侧边栏主题', 'sys.index.sideTheme', 'theme-dark', 'Y', 'admin', '2025-02-19 05:35:30', '', NULL, '深色主题theme-dark,浅色主题theme-light');
|
|
INSERT INTO `sys_config` (`config_id`, `config_name`, `config_key`, `config_value`, `config_type`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (4, '账号自助-验证码开关', 'sys.account.captchaEnabled', 'true', 'Y', 'admin', '2025-02-19 05:35:30', '', NULL, '是否开启验证码功能(true开启,false关闭)');
|
|
INSERT INTO `sys_config` (`config_id`, `config_name`, `config_key`, `config_value`, `config_type`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (5, '账号自助-是否开启用户注册功能', 'sys.account.registerUser', 'false', 'Y', 'admin', '2025-02-19 05:35:30', '', NULL, '是否开启注册用户功能(true开启,false关闭)');
|
|
INSERT INTO `sys_config` (`config_id`, `config_name`, `config_key`, `config_value`, `config_type`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (11, 'OSS预览列表资源开关', 'sys.oss.previewListResource', 'true', 'Y', 'admin', '2025-02-19 05:35:30', '', NULL, 'true:开启, false:关闭');
|
|
COMMIT;
|
|
|
|
-- ----------------------------
|
|
-- Table structure for sys_dept
|
|
-- ----------------------------
|
|
DROP TABLE IF EXISTS `sys_dept`;
|
|
CREATE TABLE `sys_dept` (
|
|
`dept_id` bigint NOT NULL COMMENT '部门id',
|
|
`parent_id` bigint DEFAULT '0' COMMENT '父部门id',
|
|
`ancestors` varchar(500) DEFAULT '' COMMENT '祖级列表',
|
|
`dept_name` varchar(30) DEFAULT '' COMMENT '部门名称',
|
|
`order_num` int DEFAULT '0' COMMENT '显示顺序',
|
|
`leader` varchar(20) DEFAULT NULL COMMENT '负责人',
|
|
`phone` varchar(11) DEFAULT NULL COMMENT '联系电话',
|
|
`email` varchar(50) DEFAULT NULL COMMENT '邮箱',
|
|
`status` char(1) DEFAULT '0' COMMENT '部门状态(0正常 1停用)',
|
|
`del_flag` char(1) DEFAULT '0' COMMENT '删除标志(0代表存在 2代表删除)',
|
|
`create_by` varchar(64) DEFAULT '' COMMENT '创建者',
|
|
`create_time` datetime DEFAULT NULL COMMENT '创建时间',
|
|
`update_by` varchar(64) DEFAULT '' COMMENT '更新者',
|
|
`update_time` datetime DEFAULT NULL COMMENT '更新时间',
|
|
PRIMARY KEY (`dept_id`)
|
|
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='部门表';
|
|
|
|
-- ----------------------------
|
|
-- Records of sys_dept
|
|
-- ----------------------------
|
|
BEGIN;
|
|
INSERT INTO `sys_dept` (`dept_id`, `parent_id`, `ancestors`, `dept_name`, `order_num`, `leader`, `phone`, `email`, `status`, `del_flag`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (100, 0, '0', 'Coin科技', 0, 'Mr Li', '15888888888', 'coin@qq.com', '0', '0', 'admin', '2025-02-19 05:35:30', 'admin', '2025-02-20 09:11:37');
|
|
INSERT INTO `sys_dept` (`dept_id`, `parent_id`, `ancestors`, `dept_name`, `order_num`, `leader`, `phone`, `email`, `status`, `del_flag`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (101, 100, '0,100', '云南总公司', 1, 'Mr Li', '15888888888', 'coin@qq.com', '0', '0', 'admin', '2025-02-19 05:35:30', 'admin', '2025-02-20 09:12:35');
|
|
INSERT INTO `sys_dept` (`dept_id`, `parent_id`, `ancestors`, `dept_name`, `order_num`, `leader`, `phone`, `email`, `status`, `del_flag`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (102, 100, '0,100', '成都分公司', 2, 'Jack', '15888888888', 'jack@qq.com', '0', '0', 'admin', '2025-02-19 05:35:30', 'admin', '2025-02-20 09:12:58');
|
|
INSERT INTO `sys_dept` (`dept_id`, `parent_id`, `ancestors`, `dept_name`, `order_num`, `leader`, `phone`, `email`, `status`, `del_flag`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (103, 101, '0,100,101', '研发部门', 1, '若依', '15888888888', 'ry@qq.com', '0', '0', 'admin', '2025-02-19 05:35:30', 'admin', '2025-02-20 09:12:35');
|
|
INSERT INTO `sys_dept` (`dept_id`, `parent_id`, `ancestors`, `dept_name`, `order_num`, `leader`, `phone`, `email`, `status`, `del_flag`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (104, 101, '0,100,101', '市场部门', 2, '若依', '15888888888', 'ry@qq.com', '0', '0', 'admin', '2025-02-19 05:35:30', 'admin', '2025-02-20 09:12:35');
|
|
INSERT INTO `sys_dept` (`dept_id`, `parent_id`, `ancestors`, `dept_name`, `order_num`, `leader`, `phone`, `email`, `status`, `del_flag`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (105, 101, '0,100,101', '测试部门', 3, '若依', '15888888888', 'ry@qq.com', '0', '0', 'admin', '2025-02-19 05:35:30', 'admin', '2025-02-20 09:12:35');
|
|
INSERT INTO `sys_dept` (`dept_id`, `parent_id`, `ancestors`, `dept_name`, `order_num`, `leader`, `phone`, `email`, `status`, `del_flag`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (106, 101, '0,100,101', '财务部门', 4, '若依', '15888888888', 'ry@qq.com', '0', '0', 'admin', '2025-02-19 05:35:30', 'admin', '2025-02-20 09:12:35');
|
|
INSERT INTO `sys_dept` (`dept_id`, `parent_id`, `ancestors`, `dept_name`, `order_num`, `leader`, `phone`, `email`, `status`, `del_flag`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (107, 101, '0,100,101', '运维部门', 5, '若依', '15888888888', 'ry@qq.com', '0', '0', 'admin', '2025-02-19 05:35:30', 'admin', '2025-02-20 09:12:35');
|
|
INSERT INTO `sys_dept` (`dept_id`, `parent_id`, `ancestors`, `dept_name`, `order_num`, `leader`, `phone`, `email`, `status`, `del_flag`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (108, 102, '0,100,102', '市场部门', 1, '若依', '15888888888', 'ry@qq.com', '0', '0', 'admin', '2025-02-19 05:35:30', 'admin', '2025-02-20 09:12:58');
|
|
INSERT INTO `sys_dept` (`dept_id`, `parent_id`, `ancestors`, `dept_name`, `order_num`, `leader`, `phone`, `email`, `status`, `del_flag`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (109, 102, '0,100,102', '财务部门', 2, '若依', '15888888888', 'ry@qq.com', '0', '0', 'admin', '2025-02-19 05:35:30', 'admin', '2025-02-20 09:12:58');
|
|
COMMIT;
|
|
|
|
-- ----------------------------
|
|
-- Table structure for sys_dict_data
|
|
-- ----------------------------
|
|
DROP TABLE IF EXISTS `sys_dict_data`;
|
|
CREATE TABLE `sys_dict_data` (
|
|
`dict_code` bigint NOT NULL COMMENT '字典编码',
|
|
`dict_sort` int DEFAULT '0' COMMENT '字典排序',
|
|
`dict_label` varchar(100) DEFAULT '' COMMENT '字典标签',
|
|
`dict_value` varchar(100) DEFAULT '' COMMENT '字典键值',
|
|
`dict_type` varchar(100) DEFAULT '' COMMENT '字典类型',
|
|
`css_class` varchar(100) DEFAULT NULL COMMENT '样式属性(其他样式扩展)',
|
|
`list_class` varchar(100) DEFAULT NULL COMMENT '表格回显样式',
|
|
`is_default` char(1) DEFAULT 'N' COMMENT '是否默认(Y是 N否)',
|
|
`status` char(1) DEFAULT '0' COMMENT '状态(0正常 1停用)',
|
|
`create_by` varchar(64) DEFAULT '' COMMENT '创建者',
|
|
`create_time` datetime DEFAULT NULL COMMENT '创建时间',
|
|
`update_by` varchar(64) DEFAULT '' COMMENT '更新者',
|
|
`update_time` datetime DEFAULT NULL COMMENT '更新时间',
|
|
`remark` varchar(500) DEFAULT NULL COMMENT '备注',
|
|
PRIMARY KEY (`dict_code`)
|
|
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='字典数据表';
|
|
|
|
-- ----------------------------
|
|
-- Records of sys_dict_data
|
|
-- ----------------------------
|
|
BEGIN;
|
|
INSERT INTO `sys_dict_data` (`dict_code`, `dict_sort`, `dict_label`, `dict_value`, `dict_type`, `css_class`, `list_class`, `is_default`, `status`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1, 1, '男', '0', 'sys_user_sex', '', '', 'Y', '0', 'admin', '2025-02-19 05:35:30', '', NULL, '性别男');
|
|
INSERT INTO `sys_dict_data` (`dict_code`, `dict_sort`, `dict_label`, `dict_value`, `dict_type`, `css_class`, `list_class`, `is_default`, `status`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (2, 2, '女', '1', 'sys_user_sex', '', '', 'N', '0', 'admin', '2025-02-19 05:35:30', '', NULL, '性别女');
|
|
INSERT INTO `sys_dict_data` (`dict_code`, `dict_sort`, `dict_label`, `dict_value`, `dict_type`, `css_class`, `list_class`, `is_default`, `status`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (3, 3, '未知', '2', 'sys_user_sex', '', '', 'N', '0', 'admin', '2025-02-19 05:35:30', '', NULL, '性别未知');
|
|
INSERT INTO `sys_dict_data` (`dict_code`, `dict_sort`, `dict_label`, `dict_value`, `dict_type`, `css_class`, `list_class`, `is_default`, `status`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (4, 1, '显示', '0', 'sys_show_hide', '', 'primary', 'Y', '0', 'admin', '2025-02-19 05:35:30', '', NULL, '显示菜单');
|
|
INSERT INTO `sys_dict_data` (`dict_code`, `dict_sort`, `dict_label`, `dict_value`, `dict_type`, `css_class`, `list_class`, `is_default`, `status`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (5, 2, '隐藏', '1', 'sys_show_hide', '', 'danger', 'N', '0', 'admin', '2025-02-19 05:35:30', '', NULL, '隐藏菜单');
|
|
INSERT INTO `sys_dict_data` (`dict_code`, `dict_sort`, `dict_label`, `dict_value`, `dict_type`, `css_class`, `list_class`, `is_default`, `status`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (6, 1, '正常', '0', 'sys_normal_disable', '', 'primary', 'Y', '0', 'admin', '2025-02-19 05:35:30', '', NULL, '正常状态');
|
|
INSERT INTO `sys_dict_data` (`dict_code`, `dict_sort`, `dict_label`, `dict_value`, `dict_type`, `css_class`, `list_class`, `is_default`, `status`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (7, 2, '停用', '1', 'sys_normal_disable', '', 'danger', 'N', '0', 'admin', '2025-02-19 05:35:30', '', NULL, '停用状态');
|
|
INSERT INTO `sys_dict_data` (`dict_code`, `dict_sort`, `dict_label`, `dict_value`, `dict_type`, `css_class`, `list_class`, `is_default`, `status`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (12, 1, '是', 'Y', 'sys_yes_no', '', 'primary', 'Y', '0', 'admin', '2025-02-19 05:35:30', '', NULL, '系统默认是');
|
|
INSERT INTO `sys_dict_data` (`dict_code`, `dict_sort`, `dict_label`, `dict_value`, `dict_type`, `css_class`, `list_class`, `is_default`, `status`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (13, 2, '否', 'N', 'sys_yes_no', '', 'danger', 'N', '0', 'admin', '2025-02-19 05:35:30', '', NULL, '系统默认否');
|
|
INSERT INTO `sys_dict_data` (`dict_code`, `dict_sort`, `dict_label`, `dict_value`, `dict_type`, `css_class`, `list_class`, `is_default`, `status`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (14, 1, '通知', '1', 'sys_notice_type', '', 'warning', 'Y', '0', 'admin', '2025-02-19 05:35:30', '', NULL, '通知');
|
|
INSERT INTO `sys_dict_data` (`dict_code`, `dict_sort`, `dict_label`, `dict_value`, `dict_type`, `css_class`, `list_class`, `is_default`, `status`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (15, 2, '公告', '2', 'sys_notice_type', '', 'success', 'N', '0', 'admin', '2025-02-19 05:35:30', '', NULL, '公告');
|
|
INSERT INTO `sys_dict_data` (`dict_code`, `dict_sort`, `dict_label`, `dict_value`, `dict_type`, `css_class`, `list_class`, `is_default`, `status`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (16, 1, '正常', '0', 'sys_notice_status', '', 'primary', 'Y', '0', 'admin', '2025-02-19 05:35:30', '', NULL, '正常状态');
|
|
INSERT INTO `sys_dict_data` (`dict_code`, `dict_sort`, `dict_label`, `dict_value`, `dict_type`, `css_class`, `list_class`, `is_default`, `status`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (17, 2, '关闭', '1', 'sys_notice_status', '', 'danger', 'N', '0', 'admin', '2025-02-19 05:35:30', '', NULL, '关闭状态');
|
|
INSERT INTO `sys_dict_data` (`dict_code`, `dict_sort`, `dict_label`, `dict_value`, `dict_type`, `css_class`, `list_class`, `is_default`, `status`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (18, 1, '新增', '1', 'sys_oper_type', '', 'info', 'N', '0', 'admin', '2025-02-19 05:35:30', '', NULL, '新增操作');
|
|
INSERT INTO `sys_dict_data` (`dict_code`, `dict_sort`, `dict_label`, `dict_value`, `dict_type`, `css_class`, `list_class`, `is_default`, `status`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (19, 2, '修改', '2', 'sys_oper_type', '', 'info', 'N', '0', 'admin', '2025-02-19 05:35:30', '', NULL, '修改操作');
|
|
INSERT INTO `sys_dict_data` (`dict_code`, `dict_sort`, `dict_label`, `dict_value`, `dict_type`, `css_class`, `list_class`, `is_default`, `status`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (20, 3, '删除', '3', 'sys_oper_type', '', 'danger', 'N', '0', 'admin', '2025-02-19 05:35:30', '', NULL, '删除操作');
|
|
INSERT INTO `sys_dict_data` (`dict_code`, `dict_sort`, `dict_label`, `dict_value`, `dict_type`, `css_class`, `list_class`, `is_default`, `status`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (21, 4, '授权', '4', 'sys_oper_type', '', 'primary', 'N', '0', 'admin', '2025-02-19 05:35:30', '', NULL, '授权操作');
|
|
INSERT INTO `sys_dict_data` (`dict_code`, `dict_sort`, `dict_label`, `dict_value`, `dict_type`, `css_class`, `list_class`, `is_default`, `status`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (22, 5, '导出', '5', 'sys_oper_type', '', 'warning', 'N', '0', 'admin', '2025-02-19 05:35:30', '', NULL, '导出操作');
|
|
INSERT INTO `sys_dict_data` (`dict_code`, `dict_sort`, `dict_label`, `dict_value`, `dict_type`, `css_class`, `list_class`, `is_default`, `status`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (23, 6, '导入', '6', 'sys_oper_type', '', 'warning', 'N', '0', 'admin', '2025-02-19 05:35:30', '', NULL, '导入操作');
|
|
INSERT INTO `sys_dict_data` (`dict_code`, `dict_sort`, `dict_label`, `dict_value`, `dict_type`, `css_class`, `list_class`, `is_default`, `status`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (24, 7, '强退', '7', 'sys_oper_type', '', 'danger', 'N', '0', 'admin', '2025-02-19 05:35:30', '', NULL, '强退操作');
|
|
INSERT INTO `sys_dict_data` (`dict_code`, `dict_sort`, `dict_label`, `dict_value`, `dict_type`, `css_class`, `list_class`, `is_default`, `status`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (25, 8, '生成代码', '8', 'sys_oper_type', '', 'warning', 'N', '0', 'admin', '2025-02-19 05:35:30', '', NULL, '生成操作');
|
|
INSERT INTO `sys_dict_data` (`dict_code`, `dict_sort`, `dict_label`, `dict_value`, `dict_type`, `css_class`, `list_class`, `is_default`, `status`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (26, 9, '清空数据', '9', 'sys_oper_type', '', 'danger', 'N', '0', 'admin', '2025-02-19 05:35:30', '', NULL, '清空操作');
|
|
INSERT INTO `sys_dict_data` (`dict_code`, `dict_sort`, `dict_label`, `dict_value`, `dict_type`, `css_class`, `list_class`, `is_default`, `status`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (27, 1, '成功', '0', 'sys_common_status', '', 'primary', 'N', '0', 'admin', '2025-02-19 05:35:30', '', NULL, '正常状态');
|
|
INSERT INTO `sys_dict_data` (`dict_code`, `dict_sort`, `dict_label`, `dict_value`, `dict_type`, `css_class`, `list_class`, `is_default`, `status`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (28, 2, '失败', '1', 'sys_common_status', '', 'danger', 'N', '0', 'admin', '2025-02-19 05:35:30', '', NULL, '停用状态');
|
|
INSERT INTO `sys_dict_data` (`dict_code`, `dict_sort`, `dict_label`, `dict_value`, `dict_type`, `css_class`, `list_class`, `is_default`, `status`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (29, 99, '其他', '0', 'sys_oper_type', '', 'info', 'N', '0', 'admin', '2025-02-19 05:35:30', '', NULL, '其他操作');
|
|
COMMIT;
|
|
|
|
-- ----------------------------
|
|
-- Table structure for sys_dict_type
|
|
-- ----------------------------
|
|
DROP TABLE IF EXISTS `sys_dict_type`;
|
|
CREATE TABLE `sys_dict_type` (
|
|
`dict_id` bigint NOT NULL COMMENT '字典主键',
|
|
`dict_name` varchar(100) DEFAULT '' COMMENT '字典名称',
|
|
`dict_type` varchar(100) DEFAULT '' COMMENT '字典类型',
|
|
`status` char(1) DEFAULT '0' COMMENT '状态(0正常 1停用)',
|
|
`create_by` varchar(64) DEFAULT '' COMMENT '创建者',
|
|
`create_time` datetime DEFAULT NULL COMMENT '创建时间',
|
|
`update_by` varchar(64) DEFAULT '' COMMENT '更新者',
|
|
`update_time` datetime DEFAULT NULL COMMENT '更新时间',
|
|
`remark` varchar(500) DEFAULT NULL COMMENT '备注',
|
|
PRIMARY KEY (`dict_id`),
|
|
UNIQUE KEY `dict_type` (`dict_type`)
|
|
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='字典类型表';
|
|
|
|
-- ----------------------------
|
|
-- Records of sys_dict_type
|
|
-- ----------------------------
|
|
BEGIN;
|
|
INSERT INTO `sys_dict_type` (`dict_id`, `dict_name`, `dict_type`, `status`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1, '用户性别', 'sys_user_sex', '0', 'admin', '2025-02-19 05:35:30', '', NULL, '用户性别列表');
|
|
INSERT INTO `sys_dict_type` (`dict_id`, `dict_name`, `dict_type`, `status`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (2, '菜单状态', 'sys_show_hide', '0', 'admin', '2025-02-19 05:35:30', '', NULL, '菜单状态列表');
|
|
INSERT INTO `sys_dict_type` (`dict_id`, `dict_name`, `dict_type`, `status`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (3, '系统开关', 'sys_normal_disable', '0', 'admin', '2025-02-19 05:35:30', '', NULL, '系统开关列表');
|
|
INSERT INTO `sys_dict_type` (`dict_id`, `dict_name`, `dict_type`, `status`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (6, '系统是否', 'sys_yes_no', '0', 'admin', '2025-02-19 05:35:30', '', NULL, '系统是否列表');
|
|
INSERT INTO `sys_dict_type` (`dict_id`, `dict_name`, `dict_type`, `status`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (7, '通知类型', 'sys_notice_type', '0', 'admin', '2025-02-19 05:35:30', '', NULL, '通知类型列表');
|
|
INSERT INTO `sys_dict_type` (`dict_id`, `dict_name`, `dict_type`, `status`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (8, '通知状态', 'sys_notice_status', '0', 'admin', '2025-02-19 05:35:30', '', NULL, '通知状态列表');
|
|
INSERT INTO `sys_dict_type` (`dict_id`, `dict_name`, `dict_type`, `status`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (9, '操作类型', 'sys_oper_type', '0', 'admin', '2025-02-19 05:35:30', '', NULL, '操作类型列表');
|
|
INSERT INTO `sys_dict_type` (`dict_id`, `dict_name`, `dict_type`, `status`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (10, '系统状态', 'sys_common_status', '0', 'admin', '2025-02-19 05:35:30', '', NULL, '登录状态列表');
|
|
COMMIT;
|
|
|
|
-- ----------------------------
|
|
-- Table structure for sys_logininfor
|
|
-- ----------------------------
|
|
DROP TABLE IF EXISTS `sys_logininfor`;
|
|
CREATE TABLE `sys_logininfor` (
|
|
`info_id` bigint NOT NULL COMMENT '访问ID',
|
|
`user_name` varchar(50) DEFAULT '' COMMENT '用户账号',
|
|
`ipaddr` varchar(128) DEFAULT '' COMMENT '登录IP地址',
|
|
`login_location` varchar(255) DEFAULT '' COMMENT '登录地点',
|
|
`browser` varchar(50) DEFAULT '' COMMENT '浏览器类型',
|
|
`os` varchar(50) DEFAULT '' COMMENT '操作系统',
|
|
`status` char(1) DEFAULT '0' COMMENT '登录状态(0成功 1失败)',
|
|
`msg` varchar(255) DEFAULT '' COMMENT '提示消息',
|
|
`login_time` datetime DEFAULT NULL COMMENT '访问时间',
|
|
PRIMARY KEY (`info_id`),
|
|
KEY `idx_sys_logininfor_s` (`status`),
|
|
KEY `idx_sys_logininfor_lt` (`login_time`)
|
|
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='系统访问记录';
|
|
|
|
-- ----------------------------
|
|
-- Records of sys_logininfor
|
|
-- ----------------------------
|
|
BEGIN;
|
|
INSERT INTO `sys_logininfor` (`info_id`, `user_name`, `ipaddr`, `login_location`, `browser`, `os`, `status`, `msg`, `login_time`) VALUES (1892163781019041794, 'admin', '127.0.0.1', '内网IP', 'Chrome', 'OSX', '1', '密码输入错误1次', '2025-02-19 18:46:15');
|
|
INSERT INTO `sys_logininfor` (`info_id`, `user_name`, `ipaddr`, `login_location`, `browser`, `os`, `status`, `msg`, `login_time`) VALUES (1892163795090931714, 'admin', '127.0.0.1', '内网IP', 'Chrome', 'OSX', '1', '密码输入错误2次', '2025-02-19 18:46:18');
|
|
INSERT INTO `sys_logininfor` (`info_id`, `user_name`, `ipaddr`, `login_location`, `browser`, `os`, `status`, `msg`, `login_time`) VALUES (1892163824157458434, 'admin', '127.0.0.1', '内网IP', 'Chrome', 'OSX', '1', '密码输入错误3次', '2025-02-19 18:46:25');
|
|
INSERT INTO `sys_logininfor` (`info_id`, `user_name`, `ipaddr`, `login_location`, `browser`, `os`, `status`, `msg`, `login_time`) VALUES (1892163862082355201, 'admin', '127.0.0.1', '内网IP', 'Chrome', 'OSX', '0', '登录成功', '2025-02-19 18:46:34');
|
|
INSERT INTO `sys_logininfor` (`info_id`, `user_name`, `ipaddr`, `login_location`, `browser`, `os`, `status`, `msg`, `login_time`) VALUES (1892172481498726401, 'admin', '127.0.0.1', '内网IP', 'Chrome', 'OSX', '0', '登录成功', '2025-02-19 19:20:49');
|
|
INSERT INTO `sys_logininfor` (`info_id`, `user_name`, `ipaddr`, `login_location`, `browser`, `os`, `status`, `msg`, `login_time`) VALUES (1892375485061545985, 'admin', '127.0.0.1', '内网IP', 'Chrome', 'OSX', '0', '登录成功', '2025-02-20 08:47:29');
|
|
INSERT INTO `sys_logininfor` (`info_id`, `user_name`, `ipaddr`, `login_location`, `browser`, `os`, `status`, `msg`, `login_time`) VALUES (1892381391811805185, 'admin', '127.0.0.1', '内网IP', 'Chrome', 'OSX', '0', '退出成功', '2025-02-20 09:10:57');
|
|
INSERT INTO `sys_logininfor` (`info_id`, `user_name`, `ipaddr`, `login_location`, `browser`, `os`, `status`, `msg`, `login_time`) VALUES (1892381425118773250, 'admin', '127.0.0.1', '内网IP', 'Chrome', 'OSX', '0', '登录成功', '2025-02-20 09:11:05');
|
|
INSERT INTO `sys_logininfor` (`info_id`, `user_name`, `ipaddr`, `login_location`, `browser`, `os`, `status`, `msg`, `login_time`) VALUES (1892411073206689793, 'admin', '127.0.0.1', '内网IP', 'MSEdge', 'Windows 10 or Windows Server 2016', '0', '登录成功', '2025-02-20 11:08:54');
|
|
INSERT INTO `sys_logininfor` (`info_id`, `user_name`, `ipaddr`, `login_location`, `browser`, `os`, `status`, `msg`, `login_time`) VALUES (1892741361212878849, 'admin', '127.0.0.1', '内网IP', 'Chrome', 'OSX', '0', '登录成功', '2025-02-21 09:01:21');
|
|
INSERT INTO `sys_logininfor` (`info_id`, `user_name`, `ipaddr`, `login_location`, `browser`, `os`, `status`, `msg`, `login_time`) VALUES (1892813472833056770, 'admin', '127.0.0.1', '内网IP', 'Chrome', 'OSX', '0', '登录成功', '2025-02-21 13:47:53');
|
|
INSERT INTO `sys_logininfor` (`info_id`, `user_name`, `ipaddr`, `login_location`, `browser`, `os`, `status`, `msg`, `login_time`) VALUES (1892822104308035586, 'admin', '127.0.0.1', '内网IP', 'Chrome', 'OSX', '0', '登录成功', '2025-02-21 14:22:11');
|
|
INSERT INTO `sys_logininfor` (`info_id`, `user_name`, `ipaddr`, `login_location`, `browser`, `os`, `status`, `msg`, `login_time`) VALUES (1892869536789594113, 'admin', '127.0.0.1', '内网IP', 'Chrome', 'OSX', '0', '登录成功', '2025-02-21 17:30:40');
|
|
INSERT INTO `sys_logininfor` (`info_id`, `user_name`, `ipaddr`, `login_location`, `browser`, `os`, `status`, `msg`, `login_time`) VALUES (1893145337360252929, 'admin', '127.0.0.1', '内网IP', 'Chrome', 'Windows 10 or Windows Server 2016', '1', '密码输入错误1次', '2025-02-22 11:46:36');
|
|
INSERT INTO `sys_logininfor` (`info_id`, `user_name`, `ipaddr`, `login_location`, `browser`, `os`, `status`, `msg`, `login_time`) VALUES (1893145437662838785, 'admin', '127.0.0.1', '内网IP', 'Chrome', 'Windows 10 or Windows Server 2016', '1', '密码输入错误2次', '2025-02-22 11:47:00');
|
|
INSERT INTO `sys_logininfor` (`info_id`, `user_name`, `ipaddr`, `login_location`, `browser`, `os`, `status`, `msg`, `login_time`) VALUES (1893145815158587394, 'admin', '127.0.0.1', '内网IP', 'Chrome', 'Windows 10 or Windows Server 2016', '1', '密码输入错误3次', '2025-02-22 11:48:30');
|
|
INSERT INTO `sys_logininfor` (`info_id`, `user_name`, `ipaddr`, `login_location`, `browser`, `os`, `status`, `msg`, `login_time`) VALUES (1893146498742059010, 'admin', '127.0.0.1', '内网IP', 'Chrome', 'Windows 10 or Windows Server 2016', '0', '登录成功', '2025-02-22 11:51:13');
|
|
INSERT INTO `sys_logininfor` (`info_id`, `user_name`, `ipaddr`, `login_location`, `browser`, `os`, `status`, `msg`, `login_time`) VALUES (1893194745858011138, 'admin', '127.0.0.1', '内网IP', 'Chrome', 'OSX', '0', '登录成功', '2025-02-22 15:02:56');
|
|
COMMIT;
|
|
|
|
-- ----------------------------
|
|
-- Table structure for sys_menu
|
|
-- ----------------------------
|
|
DROP TABLE IF EXISTS `sys_menu`;
|
|
CREATE TABLE `sys_menu` (
|
|
`menu_id` bigint NOT NULL COMMENT '菜单ID',
|
|
`menu_name` varchar(50) NOT NULL COMMENT '菜单名称',
|
|
`parent_id` bigint DEFAULT '0' COMMENT '父菜单ID',
|
|
`order_num` int DEFAULT '0' COMMENT '显示顺序',
|
|
`path` varchar(200) DEFAULT '' COMMENT '路由地址',
|
|
`component` varchar(255) DEFAULT NULL COMMENT '组件路径',
|
|
`query_param` varchar(255) DEFAULT NULL COMMENT '路由参数',
|
|
`is_frame` int DEFAULT '1' COMMENT '是否为外链(0是 1否)',
|
|
`is_cache` int DEFAULT '0' COMMENT '是否缓存(0缓存 1不缓存)',
|
|
`menu_type` char(1) DEFAULT '' COMMENT '菜单类型(M目录 C菜单 F按钮)',
|
|
`visible` char(1) DEFAULT '0' COMMENT '显示状态(0显示 1隐藏)',
|
|
`status` char(1) DEFAULT '0' COMMENT '菜单状态(0正常 1停用)',
|
|
`perms` varchar(100) DEFAULT NULL COMMENT '权限标识',
|
|
`icon` varchar(100) DEFAULT '#' COMMENT '菜单图标',
|
|
`create_by` varchar(64) DEFAULT '' COMMENT '创建者',
|
|
`create_time` datetime DEFAULT NULL COMMENT '创建时间',
|
|
`update_by` varchar(64) DEFAULT '' COMMENT '更新者',
|
|
`update_time` datetime DEFAULT NULL COMMENT '更新时间',
|
|
`remark` varchar(500) DEFAULT '' COMMENT '备注',
|
|
PRIMARY KEY (`menu_id`)
|
|
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='菜单权限表';
|
|
|
|
-- ----------------------------
|
|
-- Records of sys_menu
|
|
-- ----------------------------
|
|
BEGIN;
|
|
INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query_param`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1, '系统管理', 0, 1, 'system', NULL, '', 1, 0, 'M', '0', '0', '', 'system', 'admin', '2025-02-19 05:35:30', '', NULL, '系统管理目录');
|
|
INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query_param`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (2, '系统监控', 0, 2, 'monitor', NULL, '', 1, 0, 'M', '0', '0', '', 'monitor', 'admin', '2025-02-19 05:35:30', '', NULL, '系统监控目录');
|
|
INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query_param`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (3, '系统工具', 0, 3, 'tool', NULL, '', 1, 0, 'M', '0', '0', '', 'tool', 'admin', '2025-02-19 05:35:30', '', NULL, '系统工具目录');
|
|
INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query_param`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (5, '测试菜单', 0, 5, 'demo', NULL, NULL, 1, 0, 'M', '1', '1', NULL, 'star', 'admin', '2025-02-19 05:36:01', 'admin', '2025-02-21 11:37:38', '');
|
|
INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query_param`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (100, '用户管理', 1, 1, 'user', 'system/user/index', '', 1, 0, 'C', '0', '0', 'system:user:list', 'user', 'admin', '2025-02-19 05:35:30', '', NULL, '用户管理菜单');
|
|
INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query_param`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (101, '角色管理', 1, 2, 'role', 'system/role/index', '', 1, 0, 'C', '0', '0', 'system:role:list', 'peoples', 'admin', '2025-02-19 05:35:30', '', NULL, '角色管理菜单');
|
|
INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query_param`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (102, '菜单管理', 1, 3, 'menu', 'system/menu/index', '', 1, 0, 'C', '0', '0', 'system:menu:list', 'tree-table', 'admin', '2025-02-19 05:35:30', '', NULL, '菜单管理菜单');
|
|
INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query_param`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (103, '部门管理', 1, 4, 'dept', 'system/dept/index', '', 1, 0, 'C', '0', '0', 'system:dept:list', 'tree', 'admin', '2025-02-19 05:35:30', '', NULL, '部门管理菜单');
|
|
INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query_param`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (104, '岗位管理', 1, 5, 'post', 'system/post/index', '', 1, 0, 'C', '0', '0', 'system:post:list', 'post', 'admin', '2025-02-19 05:35:30', '', NULL, '岗位管理菜单');
|
|
INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query_param`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (105, '字典管理', 1, 6, 'dict', 'system/dict/index', '', 1, 0, 'C', '0', '0', 'system:dict:list', 'dict', 'admin', '2025-02-19 05:35:30', '', NULL, '字典管理菜单');
|
|
INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query_param`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (106, '参数设置', 1, 7, 'config', 'system/config/index', '', 1, 0, 'C', '0', '0', 'system:config:list', 'edit', 'admin', '2025-02-19 05:35:30', '', NULL, '参数设置菜单');
|
|
INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query_param`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (107, '通知公告', 1, 8, 'notice', 'system/notice/index', '', 1, 0, 'C', '0', '0', 'system:notice:list', 'message', 'admin', '2025-02-19 05:35:30', '', NULL, '通知公告菜单');
|
|
INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query_param`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (108, '日志管理', 1, 9, 'log', '', '', 1, 0, 'M', '0', '0', '', 'log', 'admin', '2025-02-19 05:35:30', '', NULL, '日志管理菜单');
|
|
INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query_param`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (109, '在线用户', 2, 1, 'online', 'monitor/online/index', '', 1, 0, 'C', '0', '0', 'monitor:online:list', 'online', 'admin', '2025-02-19 05:35:30', '', NULL, '在线用户菜单');
|
|
INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query_param`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (112, '缓存列表', 2, 6, 'cacheList', 'monitor/cache/list', '', 1, 0, 'C', '0', '0', 'monitor:cache:list', 'redis-list', 'admin', '2025-02-19 05:35:30', '', NULL, '缓存列表菜单');
|
|
INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query_param`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (113, '缓存监控', 2, 5, 'cache', 'monitor/cache/index', '', 1, 0, 'C', '0', '0', 'monitor:cache:list', 'redis', 'admin', '2025-02-19 05:35:30', '', NULL, '缓存监控菜单');
|
|
INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query_param`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (114, '表单构建', 3, 1, 'build', 'tool/build/index', '', 1, 0, 'C', '0', '0', 'tool:build:list', 'build', 'admin', '2025-02-19 05:35:30', '', NULL, '表单构建菜单');
|
|
INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query_param`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (115, '代码生成', 3, 2, 'gen', 'tool/gen/index', '', 1, 0, 'C', '0', '0', 'tool:gen:list', 'code', 'admin', '2025-02-19 05:35:30', '', NULL, '代码生成菜单');
|
|
INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query_param`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (117, 'Admin监控', 2, 5, 'Admin', 'monitor/admin/index', '', 1, 0, 'C', '0', '0', 'monitor:admin:list', 'dashboard', 'admin', '2025-02-19 05:35:30', '', NULL, 'Admin监控菜单');
|
|
INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query_param`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (118, '文件管理', 1, 10, 'oss', 'system/oss/index', '', 1, 0, 'C', '0', '0', 'system:oss:list', 'upload', 'admin', '2025-02-19 05:35:30', '', NULL, '文件管理菜单');
|
|
INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query_param`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (120, '任务调度中心', 2, 5, 'XxlJob', 'monitor/xxljob/index', '', 1, 0, 'C', '0', '0', 'monitor:xxljob:list', 'job', 'admin', '2025-02-19 05:35:30', '', NULL, 'Xxl-Job控制台菜单');
|
|
INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query_param`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (500, '操作日志', 108, 1, 'operlog', 'monitor/operlog/index', '', 1, 0, 'C', '0', '0', 'monitor:operlog:list', 'form', 'admin', '2025-02-19 05:35:30', '', NULL, '操作日志菜单');
|
|
INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query_param`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (501, '登录日志', 108, 2, 'logininfor', 'monitor/logininfor/index', '', 1, 0, 'C', '0', '0', 'monitor:logininfor:list', 'logininfor', 'admin', '2025-02-19 05:35:30', '', NULL, '登录日志菜单');
|
|
INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query_param`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1001, '用户查询', 100, 1, '', '', '', 1, 0, 'F', '0', '0', 'system:user:query', '#', 'admin', '2025-02-19 05:35:30', '', NULL, '');
|
|
INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query_param`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1002, '用户新增', 100, 2, '', '', '', 1, 0, 'F', '0', '0', 'system:user:add', '#', 'admin', '2025-02-19 05:35:30', '', NULL, '');
|
|
INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query_param`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1003, '用户修改', 100, 3, '', '', '', 1, 0, 'F', '0', '0', 'system:user:edit', '#', 'admin', '2025-02-19 05:35:30', '', NULL, '');
|
|
INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query_param`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1004, '用户删除', 100, 4, '', '', '', 1, 0, 'F', '0', '0', 'system:user:remove', '#', 'admin', '2025-02-19 05:35:30', '', NULL, '');
|
|
INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query_param`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1005, '用户导出', 100, 5, '', '', '', 1, 0, 'F', '0', '0', 'system:user:export', '#', 'admin', '2025-02-19 05:35:30', '', NULL, '');
|
|
INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query_param`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1006, '用户导入', 100, 6, '', '', '', 1, 0, 'F', '0', '0', 'system:user:import', '#', 'admin', '2025-02-19 05:35:30', '', NULL, '');
|
|
INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query_param`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1007, '重置密码', 100, 7, '', '', '', 1, 0, 'F', '0', '0', 'system:user:resetPwd', '#', 'admin', '2025-02-19 05:35:30', '', NULL, '');
|
|
INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query_param`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1008, '角色查询', 101, 1, '', '', '', 1, 0, 'F', '0', '0', 'system:role:query', '#', 'admin', '2025-02-19 05:35:30', '', NULL, '');
|
|
INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query_param`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1009, '角色新增', 101, 2, '', '', '', 1, 0, 'F', '0', '0', 'system:role:add', '#', 'admin', '2025-02-19 05:35:30', '', NULL, '');
|
|
INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query_param`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1010, '角色修改', 101, 3, '', '', '', 1, 0, 'F', '0', '0', 'system:role:edit', '#', 'admin', '2025-02-19 05:35:30', '', NULL, '');
|
|
INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query_param`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1011, '角色删除', 101, 4, '', '', '', 1, 0, 'F', '0', '0', 'system:role:remove', '#', 'admin', '2025-02-19 05:35:30', '', NULL, '');
|
|
INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query_param`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1012, '角色导出', 101, 5, '', '', '', 1, 0, 'F', '0', '0', 'system:role:export', '#', 'admin', '2025-02-19 05:35:30', '', NULL, '');
|
|
INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query_param`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1013, '菜单查询', 102, 1, '', '', '', 1, 0, 'F', '0', '0', 'system:menu:query', '#', 'admin', '2025-02-19 05:35:30', '', NULL, '');
|
|
INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query_param`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1014, '菜单新增', 102, 2, '', '', '', 1, 0, 'F', '0', '0', 'system:menu:add', '#', 'admin', '2025-02-19 05:35:30', '', NULL, '');
|
|
INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query_param`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1015, '菜单修改', 102, 3, '', '', '', 1, 0, 'F', '0', '0', 'system:menu:edit', '#', 'admin', '2025-02-19 05:35:30', '', NULL, '');
|
|
INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query_param`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1016, '菜单删除', 102, 4, '', '', '', 1, 0, 'F', '0', '0', 'system:menu:remove', '#', 'admin', '2025-02-19 05:35:30', '', NULL, '');
|
|
INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query_param`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1017, '部门查询', 103, 1, '', '', '', 1, 0, 'F', '0', '0', 'system:dept:query', '#', 'admin', '2025-02-19 05:35:30', '', NULL, '');
|
|
INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query_param`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1018, '部门新增', 103, 2, '', '', '', 1, 0, 'F', '0', '0', 'system:dept:add', '#', 'admin', '2025-02-19 05:35:30', '', NULL, '');
|
|
INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query_param`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1019, '部门修改', 103, 3, '', '', '', 1, 0, 'F', '0', '0', 'system:dept:edit', '#', 'admin', '2025-02-19 05:35:30', '', NULL, '');
|
|
INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query_param`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1020, '部门删除', 103, 4, '', '', '', 1, 0, 'F', '0', '0', 'system:dept:remove', '#', 'admin', '2025-02-19 05:35:30', '', NULL, '');
|
|
INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query_param`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1021, '岗位查询', 104, 1, '', '', '', 1, 0, 'F', '0', '0', 'system:post:query', '#', 'admin', '2025-02-19 05:35:30', '', NULL, '');
|
|
INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query_param`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1022, '岗位新增', 104, 2, '', '', '', 1, 0, 'F', '0', '0', 'system:post:add', '#', 'admin', '2025-02-19 05:35:30', '', NULL, '');
|
|
INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query_param`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1023, '岗位修改', 104, 3, '', '', '', 1, 0, 'F', '0', '0', 'system:post:edit', '#', 'admin', '2025-02-19 05:35:30', '', NULL, '');
|
|
INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query_param`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1024, '岗位删除', 104, 4, '', '', '', 1, 0, 'F', '0', '0', 'system:post:remove', '#', 'admin', '2025-02-19 05:35:30', '', NULL, '');
|
|
INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query_param`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1025, '岗位导出', 104, 5, '', '', '', 1, 0, 'F', '0', '0', 'system:post:export', '#', 'admin', '2025-02-19 05:35:30', '', NULL, '');
|
|
INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query_param`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1026, '字典查询', 105, 1, '#', '', '', 1, 0, 'F', '0', '0', 'system:dict:query', '#', 'admin', '2025-02-19 05:35:30', '', NULL, '');
|
|
INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query_param`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1027, '字典新增', 105, 2, '#', '', '', 1, 0, 'F', '0', '0', 'system:dict:add', '#', 'admin', '2025-02-19 05:35:30', '', NULL, '');
|
|
INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query_param`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1028, '字典修改', 105, 3, '#', '', '', 1, 0, 'F', '0', '0', 'system:dict:edit', '#', 'admin', '2025-02-19 05:35:30', '', NULL, '');
|
|
INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query_param`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1029, '字典删除', 105, 4, '#', '', '', 1, 0, 'F', '0', '0', 'system:dict:remove', '#', 'admin', '2025-02-19 05:35:30', '', NULL, '');
|
|
INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query_param`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1030, '字典导出', 105, 5, '#', '', '', 1, 0, 'F', '0', '0', 'system:dict:export', '#', 'admin', '2025-02-19 05:35:30', '', NULL, '');
|
|
INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query_param`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1031, '参数查询', 106, 1, '#', '', '', 1, 0, 'F', '0', '0', 'system:config:query', '#', 'admin', '2025-02-19 05:35:30', '', NULL, '');
|
|
INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query_param`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1032, '参数新增', 106, 2, '#', '', '', 1, 0, 'F', '0', '0', 'system:config:add', '#', 'admin', '2025-02-19 05:35:30', '', NULL, '');
|
|
INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query_param`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1033, '参数修改', 106, 3, '#', '', '', 1, 0, 'F', '0', '0', 'system:config:edit', '#', 'admin', '2025-02-19 05:35:30', '', NULL, '');
|
|
INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query_param`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1034, '参数删除', 106, 4, '#', '', '', 1, 0, 'F', '0', '0', 'system:config:remove', '#', 'admin', '2025-02-19 05:35:30', '', NULL, '');
|
|
INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query_param`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1035, '参数导出', 106, 5, '#', '', '', 1, 0, 'F', '0', '0', 'system:config:export', '#', 'admin', '2025-02-19 05:35:30', '', NULL, '');
|
|
INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query_param`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1036, '公告查询', 107, 1, '#', '', '', 1, 0, 'F', '0', '0', 'system:notice:query', '#', 'admin', '2025-02-19 05:35:30', '', NULL, '');
|
|
INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query_param`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1037, '公告新增', 107, 2, '#', '', '', 1, 0, 'F', '0', '0', 'system:notice:add', '#', 'admin', '2025-02-19 05:35:30', '', NULL, '');
|
|
INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query_param`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1038, '公告修改', 107, 3, '#', '', '', 1, 0, 'F', '0', '0', 'system:notice:edit', '#', 'admin', '2025-02-19 05:35:30', '', NULL, '');
|
|
INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query_param`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1039, '公告删除', 107, 4, '#', '', '', 1, 0, 'F', '0', '0', 'system:notice:remove', '#', 'admin', '2025-02-19 05:35:30', '', NULL, '');
|
|
INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query_param`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1040, '操作查询', 500, 1, '#', '', '', 1, 0, 'F', '0', '0', 'monitor:operlog:query', '#', 'admin', '2025-02-19 05:35:30', '', NULL, '');
|
|
INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query_param`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1041, '操作删除', 500, 2, '#', '', '', 1, 0, 'F', '0', '0', 'monitor:operlog:remove', '#', 'admin', '2025-02-19 05:35:30', '', NULL, '');
|
|
INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query_param`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1042, '日志导出', 500, 4, '#', '', '', 1, 0, 'F', '0', '0', 'monitor:operlog:export', '#', 'admin', '2025-02-19 05:35:30', '', NULL, '');
|
|
INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query_param`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1043, '登录查询', 501, 1, '#', '', '', 1, 0, 'F', '0', '0', 'monitor:logininfor:query', '#', 'admin', '2025-02-19 05:35:30', '', NULL, '');
|
|
INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query_param`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1044, '登录删除', 501, 2, '#', '', '', 1, 0, 'F', '0', '0', 'monitor:logininfor:remove', '#', 'admin', '2025-02-19 05:35:30', '', NULL, '');
|
|
INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query_param`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1045, '日志导出', 501, 3, '#', '', '', 1, 0, 'F', '0', '0', 'monitor:logininfor:export', '#', 'admin', '2025-02-19 05:35:30', '', NULL, '');
|
|
INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query_param`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1046, '在线查询', 109, 1, '#', '', '', 1, 0, 'F', '0', '0', 'monitor:online:query', '#', 'admin', '2025-02-19 05:35:30', '', NULL, '');
|
|
INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query_param`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1047, '批量强退', 109, 2, '#', '', '', 1, 0, 'F', '0', '0', 'monitor:online:batchLogout', '#', 'admin', '2025-02-19 05:35:30', '', NULL, '');
|
|
INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query_param`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1048, '单条强退', 109, 3, '#', '', '', 1, 0, 'F', '0', '0', 'monitor:online:forceLogout', '#', 'admin', '2025-02-19 05:35:30', '', NULL, '');
|
|
INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query_param`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1050, '账户解锁', 501, 4, '#', '', '', 1, 0, 'F', '0', '0', 'monitor:logininfor:unlock', '#', 'admin', '2025-02-19 05:35:30', '', NULL, '');
|
|
INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query_param`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1055, '生成查询', 115, 1, '#', '', '', 1, 0, 'F', '0', '0', 'tool:gen:query', '#', 'admin', '2025-02-19 05:35:30', '', NULL, '');
|
|
INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query_param`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1056, '生成修改', 115, 2, '#', '', '', 1, 0, 'F', '0', '0', 'tool:gen:edit', '#', 'admin', '2025-02-19 05:35:30', '', NULL, '');
|
|
INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query_param`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1057, '生成删除', 115, 3, '#', '', '', 1, 0, 'F', '0', '0', 'tool:gen:remove', '#', 'admin', '2025-02-19 05:35:30', '', NULL, '');
|
|
INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query_param`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1058, '导入代码', 115, 2, '#', '', '', 1, 0, 'F', '0', '0', 'tool:gen:import', '#', 'admin', '2025-02-19 05:35:30', '', NULL, '');
|
|
INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query_param`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1059, '预览代码', 115, 4, '#', '', '', 1, 0, 'F', '0', '0', 'tool:gen:preview', '#', 'admin', '2025-02-19 05:35:30', '', NULL, '');
|
|
INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query_param`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1060, '生成代码', 115, 5, '#', '', '', 1, 0, 'F', '0', '0', 'tool:gen:code', '#', 'admin', '2025-02-19 05:35:30', '', NULL, '');
|
|
INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query_param`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1500, '测试单表', 5, 1, 'demo', 'demo/demo/index', NULL, 1, 0, 'C', '0', '0', 'demo:demo:list', '#', 'admin', '2025-02-19 05:36:01', '', NULL, '测试单表菜单');
|
|
INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query_param`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1501, '测试单表查询', 1500, 1, '#', '', NULL, 1, 0, 'F', '0', '0', 'demo:demo:query', '#', 'admin', '2025-02-19 05:36:01', '', NULL, '');
|
|
INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query_param`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1502, '测试单表新增', 1500, 2, '#', '', NULL, 1, 0, 'F', '0', '0', 'demo:demo:add', '#', 'admin', '2025-02-19 05:36:01', '', NULL, '');
|
|
INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query_param`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1503, '测试单表修改', 1500, 3, '#', '', NULL, 1, 0, 'F', '0', '0', 'demo:demo:edit', '#', 'admin', '2025-02-19 05:36:01', '', NULL, '');
|
|
INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query_param`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1504, '测试单表删除', 1500, 4, '#', '', NULL, 1, 0, 'F', '0', '0', 'demo:demo:remove', '#', 'admin', '2025-02-19 05:36:01', '', NULL, '');
|
|
INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query_param`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1505, '测试单表导出', 1500, 5, '#', '', NULL, 1, 0, 'F', '0', '0', 'demo:demo:export', '#', 'admin', '2025-02-19 05:36:01', '', NULL, '');
|
|
INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query_param`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1506, '测试树表', 5, 1, 'tree', 'demo/tree/index', NULL, 1, 0, 'C', '0', '0', 'demo:tree:list', '#', 'admin', '2025-02-19 05:36:01', '', NULL, '测试树表菜单');
|
|
INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query_param`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1507, '测试树表查询', 1506, 1, '#', '', NULL, 1, 0, 'F', '0', '0', 'demo:tree:query', '#', 'admin', '2025-02-19 05:36:01', '', NULL, '');
|
|
INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query_param`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1508, '测试树表新增', 1506, 2, '#', '', NULL, 1, 0, 'F', '0', '0', 'demo:tree:add', '#', 'admin', '2025-02-19 05:36:01', '', NULL, '');
|
|
INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query_param`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1509, '测试树表修改', 1506, 3, '#', '', NULL, 1, 0, 'F', '0', '0', 'demo:tree:edit', '#', 'admin', '2025-02-19 05:36:01', '', NULL, '');
|
|
INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query_param`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1510, '测试树表删除', 1506, 4, '#', '', NULL, 1, 0, 'F', '0', '0', 'demo:tree:remove', '#', 'admin', '2025-02-19 05:36:01', '', NULL, '');
|
|
INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query_param`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1511, '测试树表导出', 1506, 5, '#', '', NULL, 1, 0, 'F', '0', '0', 'demo:tree:export', '#', 'admin', '2025-02-19 05:36:01', '', NULL, '');
|
|
INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query_param`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1600, '文件查询', 118, 1, '#', '', '', 1, 0, 'F', '0', '0', 'system:oss:query', '#', 'admin', '2025-02-19 05:35:30', '', NULL, '');
|
|
INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query_param`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1601, '文件上传', 118, 2, '#', '', '', 1, 0, 'F', '0', '0', 'system:oss:upload', '#', 'admin', '2025-02-19 05:35:30', '', NULL, '');
|
|
INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query_param`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1602, '文件下载', 118, 3, '#', '', '', 1, 0, 'F', '0', '0', 'system:oss:download', '#', 'admin', '2025-02-19 05:35:30', '', NULL, '');
|
|
INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query_param`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1603, '文件删除', 118, 4, '#', '', '', 1, 0, 'F', '0', '0', 'system:oss:remove', '#', 'admin', '2025-02-19 05:35:30', '', NULL, '');
|
|
INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query_param`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1604, '配置添加', 118, 5, '#', '', '', 1, 0, 'F', '0', '0', 'system:oss:add', '#', 'admin', '2025-02-19 05:35:30', '', NULL, '');
|
|
INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query_param`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1605, '配置编辑', 118, 6, '#', '', '', 1, 0, 'F', '0', '0', 'system:oss:edit', '#', 'admin', '2025-02-19 05:35:30', '', NULL, '');
|
|
INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query_param`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1892766617294200833, '用户账户', 1892770801909350401, 3, 'userAccount', 'business/userAccount/index', NULL, 1, 0, 'C', '0', '0', 'business:userAccount:list', 'dict', 'admin', '2025-02-20 21:48:08', 'admin', '2025-02-21 11:00:57', '用户账户菜单');
|
|
INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query_param`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1892766617294200834, '用户账户查询', 1892766617294200833, 1, '#', '', NULL, 1, 0, 'F', '0', '0', 'business:userAccount:query', '#', 'admin', '2025-02-20 21:48:08', '', NULL, '');
|
|
INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query_param`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1892766617294200835, '用户账户新增', 1892766617294200833, 2, '#', '', NULL, 1, 0, 'F', '0', '0', 'business:userAccount:add', '#', 'admin', '2025-02-20 21:48:08', '', NULL, '');
|
|
INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query_param`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1892766617294200836, '用户账户修改', 1892766617294200833, 3, '#', '', NULL, 1, 0, 'F', '0', '0', 'business:userAccount:edit', '#', 'admin', '2025-02-20 21:48:08', '', NULL, '');
|
|
INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query_param`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1892766617294200837, '用户账户删除', 1892766617294200833, 4, '#', '', NULL, 1, 0, 'F', '0', '0', 'business:userAccount:remove', '#', 'admin', '2025-02-20 21:48:08', '', NULL, '');
|
|
INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query_param`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1892766617294200838, '用户账户导出', 1892766617294200833, 5, '#', '', NULL, 1, 0, 'F', '0', '0', 'business:userAccount:export', '#', 'admin', '2025-02-20 21:48:08', '', NULL, '');
|
|
INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query_param`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1892766617562636289, '用户银行卡', 1892770801909350401, 5, 'userCard', 'business/userCard/index', NULL, 1, 0, 'C', '0', '0', 'business:userCard:list', 'table', 'admin', '2025-02-20 21:48:08', 'admin', '2025-02-21 11:01:30', '用户银行卡菜单');
|
|
INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query_param`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1892766617562636290, '用户银行卡查询', 1892766617562636289, 1, '#', '', NULL, 1, 0, 'F', '0', '0', 'business:userCard:query', '#', 'admin', '2025-02-20 21:48:08', '', NULL, '');
|
|
INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query_param`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1892766617562636291, '用户银行卡新增', 1892766617562636289, 2, '#', '', NULL, 1, 0, 'F', '0', '0', 'business:userCard:add', '#', 'admin', '2025-02-20 21:48:08', '', NULL, '');
|
|
INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query_param`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1892766617562636292, '用户银行卡修改', 1892766617562636289, 3, '#', '', NULL, 1, 0, 'F', '0', '0', 'business:userCard:edit', '#', 'admin', '2025-02-20 21:48:08', '', NULL, '');
|
|
INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query_param`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1892766617562636293, '用户银行卡删除', 1892766617562636289, 4, '#', '', NULL, 1, 0, 'F', '0', '0', 'business:userCard:remove', '#', 'admin', '2025-02-20 21:48:08', '', NULL, '');
|
|
INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query_param`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1892766617562636294, '用户银行卡导出', 1892766617562636289, 5, '#', '', NULL, 1, 0, 'F', '0', '0', 'business:userCard:export', '#', 'admin', '2025-02-20 21:48:08', '', NULL, '');
|
|
INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query_param`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1892766617747185666, '用户好友', 1892770801909350401, 6, 'userFriend', 'business/userFriend/index', NULL, 1, 0, 'C', '0', '0', 'business:userFriend:list', 'peoples', 'admin', '2025-02-20 21:48:08', 'admin', '2025-02-21 11:01:47', '用户好友菜单');
|
|
INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query_param`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1892766617747185667, '用户好友查询', 1892766617747185666, 1, '#', '', NULL, 1, 0, 'F', '0', '0', 'business:userFriend:query', '#', 'admin', '2025-02-20 21:48:08', '', NULL, '');
|
|
INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query_param`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1892766617747185668, '用户好友新增', 1892766617747185666, 2, '#', '', NULL, 1, 0, 'F', '0', '0', 'business:userFriend:add', '#', 'admin', '2025-02-20 21:48:08', '', NULL, '');
|
|
INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query_param`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1892766617747185669, '用户好友修改', 1892766617747185666, 3, '#', '', NULL, 1, 0, 'F', '0', '0', 'business:userFriend:edit', '#', 'admin', '2025-02-20 21:48:08', '', NULL, '');
|
|
INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query_param`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1892766617747185670, '用户好友删除', 1892766617747185666, 4, '#', '', NULL, 1, 0, 'F', '0', '0', 'business:userFriend:remove', '#', 'admin', '2025-02-20 21:48:08', '', NULL, '');
|
|
INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query_param`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1892766617747185671, '用户好友导出', 1892766617747185666, 5, '#', '', NULL, 1, 0, 'F', '0', '0', 'business:userFriend:export', '#', 'admin', '2025-02-20 21:48:08', '', NULL, '');
|
|
INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query_param`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1892766617885597698, '用户信息', 1892770801909350401, 2, 'userInfo', 'business/userInfo/index', NULL, 1, 0, 'C', '0', '0', 'business:userInfo:list', 'documentation', 'admin', '2025-02-20 21:48:08', 'admin', '2025-02-21 11:00:50', '用户信息菜单');
|
|
INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query_param`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1892766617885597699, '用户信息查询', 1892766617885597698, 1, '#', '', NULL, 1, 0, 'F', '0', '0', 'business:userInfo:query', '#', 'admin', '2025-02-20 21:48:08', '', NULL, '');
|
|
INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query_param`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1892766617885597700, '用户信息新增', 1892766617885597698, 2, '#', '', NULL, 1, 0, 'F', '0', '0', 'business:userInfo:add', '#', 'admin', '2025-02-20 21:48:08', '', NULL, '');
|
|
INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query_param`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1892766617885597701, '用户信息修改', 1892766617885597698, 3, '#', '', NULL, 1, 0, 'F', '0', '0', 'business:userInfo:edit', '#', 'admin', '2025-02-20 21:48:08', '', NULL, '');
|
|
INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query_param`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1892766617885597702, '用户信息删除', 1892766617885597698, 4, '#', '', NULL, 1, 0, 'F', '0', '0', 'business:userInfo:remove', '#', 'admin', '2025-02-20 21:48:08', '', NULL, '');
|
|
INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query_param`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1892766617885597703, '用户信息导出', 1892766617885597698, 5, '#', '', NULL, 1, 0, 'F', '0', '0', 'business:userInfo:export', '#', 'admin', '2025-02-20 21:48:08', '', NULL, '');
|
|
INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query_param`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1892766618061758465, '用户密码', 1892770801909350401, 4, 'userPasswd', 'business/userPasswd/index', NULL, 1, 0, 'C', '0', '0', 'business:userPasswd:list', 'password', 'admin', '2025-02-20 21:48:08', 'admin', '2025-02-21 11:01:37', '用户密码菜单');
|
|
INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query_param`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1892766618061758466, '用户密码查询', 1892766618061758465, 1, '#', '', NULL, 1, 0, 'F', '0', '0', 'business:userPasswd:query', '#', 'admin', '2025-02-20 21:48:08', '', NULL, '');
|
|
INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query_param`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1892766618061758467, '用户密码新增', 1892766618061758465, 2, '#', '', NULL, 1, 0, 'F', '0', '0', 'business:userPasswd:add', '#', 'admin', '2025-02-20 21:48:08', '', NULL, '');
|
|
INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query_param`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1892766618061758468, '用户密码修改', 1892766618061758465, 3, '#', '', NULL, 1, 0, 'F', '0', '0', 'business:userPasswd:edit', '#', 'admin', '2025-02-20 21:48:08', '', NULL, '');
|
|
INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query_param`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1892766618061758469, '用户密码删除', 1892766618061758465, 4, '#', '', NULL, 1, 0, 'F', '0', '0', 'business:userPasswd:remove', '#', 'admin', '2025-02-20 21:48:08', '', NULL, '');
|
|
INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query_param`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1892766618061758470, '用户密码导出', 1892766618061758465, 5, '#', '', NULL, 1, 0, 'F', '0', '0', 'business:userPasswd:export', '#', 'admin', '2025-02-20 21:48:08', '', NULL, '');
|
|
INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query_param`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1892766618229530626, '用户注册', 1892770801909350401, 1, 'userRegister', 'business/userRegister/index', NULL, 1, 0, 'C', '0', '0', 'business:userRegister:list', 'redis-list', 'admin', '2025-02-20 21:48:08', 'admin', '2025-02-21 11:00:43', '用户注册菜单');
|
|
INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query_param`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1892766618229530627, '用户注册查询', 1892766618229530626, 1, '#', '', NULL, 1, 0, 'F', '0', '0', 'business:userRegister:query', '#', 'admin', '2025-02-20 21:48:08', '', NULL, '');
|
|
INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query_param`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1892766618229530628, '用户注册新增', 1892766618229530626, 2, '#', '', NULL, 1, 0, 'F', '0', '0', 'business:userRegister:add', '#', 'admin', '2025-02-20 21:48:08', '', NULL, '');
|
|
INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query_param`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1892766618229530629, '用户注册修改', 1892766618229530626, 3, '#', '', NULL, 1, 0, 'F', '0', '0', 'business:userRegister:edit', '#', 'admin', '2025-02-20 21:48:08', '', NULL, '');
|
|
INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query_param`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1892766618229530630, '用户注册删除', 1892766618229530626, 4, '#', '', NULL, 1, 0, 'F', '0', '0', 'business:userRegister:remove', '#', 'admin', '2025-02-20 21:48:08', '', NULL, '');
|
|
INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query_param`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1892766618229530631, '用户注册导出', 1892766618229530626, 5, '#', '', NULL, 1, 0, 'F', '0', '0', 'business:userRegister:export', '#', 'admin', '2025-02-20 21:48:08', '', NULL, '');
|
|
INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query_param`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1892770801909350401, '用户相关', 0, 6, '/user', NULL, NULL, 1, 0, 'M', '0', '0', NULL, 'user', 'admin', '2025-02-21 10:58:20', 'admin', '2025-02-21 11:01:56', '');
|
|
INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query_param`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1892776961509011458, '提现', 1892779839208402946, 3, 'dealCashout', 'business/dealCashout/index', NULL, 1, 0, 'C', '0', '0', 'business:dealCashout:list', 'validCode', 'admin', '2025-02-20 22:28:08', 'admin', '2025-02-21 11:36:12', '提现菜单');
|
|
INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query_param`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1892776961509011459, '提现查询', 1892776961509011458, 1, '#', '', NULL, 1, 0, 'F', '0', '0', 'business:dealCashout:query', '#', 'admin', '2025-02-20 22:28:08', '', NULL, '');
|
|
INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query_param`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1892776961509011460, '提现新增', 1892776961509011458, 2, '#', '', NULL, 1, 0, 'F', '0', '0', 'business:dealCashout:add', '#', 'admin', '2025-02-20 22:28:08', '', NULL, '');
|
|
INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query_param`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1892776961509011461, '提现修改', 1892776961509011458, 3, '#', '', NULL, 1, 0, 'F', '0', '0', 'business:dealCashout:edit', '#', 'admin', '2025-02-20 22:28:08', '', NULL, '');
|
|
INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query_param`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1892776961509011462, '提现删除', 1892776961509011458, 4, '#', '', NULL, 1, 0, 'F', '0', '0', 'business:dealCashout:remove', '#', 'admin', '2025-02-20 22:28:08', '', NULL, '');
|
|
INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query_param`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1892776961509011463, '提现导出', 1892776961509011458, 5, '#', '', NULL, 1, 0, 'F', '0', '0', 'business:dealCashout:export', '#', 'admin', '2025-02-20 22:28:08', '', NULL, '');
|
|
INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query_param`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1892776962721165314, '付款', 1892779839208402946, 2, 'dealPay', 'business/dealPay/index', NULL, 1, 0, 'C', '0', '0', 'business:dealPay:list', 'number', 'admin', '2025-02-20 22:28:08', 'admin', '2025-02-21 11:35:52', '付款菜单');
|
|
INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query_param`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1892776962721165315, '付款查询', 1892776962721165314, 1, '#', '', NULL, 1, 0, 'F', '0', '0', 'business:dealPay:query', '#', 'admin', '2025-02-20 22:28:08', '', NULL, '');
|
|
INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query_param`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1892776962721165316, '付款新增', 1892776962721165314, 2, '#', '', NULL, 1, 0, 'F', '0', '0', 'business:dealPay:add', '#', 'admin', '2025-02-20 22:28:08', '', NULL, '');
|
|
INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query_param`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1892776962721165317, '付款修改', 1892776962721165314, 3, '#', '', NULL, 1, 0, 'F', '0', '0', 'business:dealPay:edit', '#', 'admin', '2025-02-20 22:28:08', '', NULL, '');
|
|
INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query_param`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1892776962721165318, '付款删除', 1892776962721165314, 4, '#', '', NULL, 1, 0, 'F', '0', '0', 'business:dealPay:remove', '#', 'admin', '2025-02-20 22:28:08', '', NULL, '');
|
|
INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query_param`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1892776962721165319, '付款导出', 1892776962721165314, 5, '#', '', NULL, 1, 0, 'F', '0', '0', 'business:dealPay:export', '#', 'admin', '2025-02-20 22:28:08', '', NULL, '');
|
|
INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query_param`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1892776962905714690, '收款', 1892779839208402946, 4, 'dealReceive', 'business/dealReceive/index', NULL, 1, 0, 'C', '0', '0', 'business:dealReceive:list', 'phone', 'admin', '2025-02-20 22:28:08', 'admin', '2025-02-21 11:36:40', '收款菜单');
|
|
INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query_param`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1892776962905714691, '收款查询', 1892776962905714690, 1, '#', '', NULL, 1, 0, 'F', '0', '0', 'business:dealReceive:query', '#', 'admin', '2025-02-20 22:28:08', '', NULL, '');
|
|
INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query_param`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1892776962905714692, '收款新增', 1892776962905714690, 2, '#', '', NULL, 1, 0, 'F', '0', '0', 'business:dealReceive:add', '#', 'admin', '2025-02-20 22:28:08', '', NULL, '');
|
|
INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query_param`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1892776962905714693, '收款修改', 1892776962905714690, 3, '#', '', NULL, 1, 0, 'F', '0', '0', 'business:dealReceive:edit', '#', 'admin', '2025-02-20 22:28:08', '', NULL, '');
|
|
INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query_param`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1892776962905714694, '收款删除', 1892776962905714690, 4, '#', '', NULL, 1, 0, 'F', '0', '0', 'business:dealReceive:remove', '#', 'admin', '2025-02-20 22:28:08', '', NULL, '');
|
|
INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query_param`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1892776962905714695, '收款导出', 1892776962905714690, 5, '#', '', NULL, 1, 0, 'F', '0', '0', 'business:dealReceive:export', '#', 'admin', '2025-02-20 22:28:08', '', NULL, '');
|
|
INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query_param`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1892776963052515329, '转账', 1892779839208402946, 1, 'dealTransfer', 'business/dealTransfer/index', NULL, 1, 0, 'C', '0', '0', 'business:dealTransfer:list', 'link', 'admin', '2025-02-20 22:28:08', 'admin', '2025-02-21 11:34:51', '转账菜单');
|
|
INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query_param`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1892776963052515330, '转账查询', 1892776963052515329, 1, '#', '', NULL, 1, 0, 'F', '0', '0', 'business:dealTransfer:query', '#', 'admin', '2025-02-20 22:28:08', '', NULL, '');
|
|
INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query_param`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1892776963052515331, '转账新增', 1892776963052515329, 2, '#', '', NULL, 1, 0, 'F', '0', '0', 'business:dealTransfer:add', '#', 'admin', '2025-02-20 22:28:08', '', NULL, '');
|
|
INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query_param`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1892776963052515332, '转账修改', 1892776963052515329, 3, '#', '', NULL, 1, 0, 'F', '0', '0', 'business:dealTransfer:edit', '#', 'admin', '2025-02-20 22:28:08', '', NULL, '');
|
|
INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query_param`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1892776963052515333, '转账删除', 1892776963052515329, 4, '#', '', NULL, 1, 0, 'F', '0', '0', 'business:dealTransfer:remove', '#', 'admin', '2025-02-20 22:28:08', '', NULL, '');
|
|
INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query_param`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1892776963052515334, '转账导出', 1892776963052515329, 5, '#', '', NULL, 1, 0, 'F', '0', '0', 'business:dealTransfer:export', '#', 'admin', '2025-02-20 22:28:08', '', NULL, '');
|
|
INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query_param`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1892779839208402946, '交易相关', 0, 7, '/deal', NULL, NULL, 1, 0, 'M', '0', '0', NULL, 'money', 'admin', '2025-02-21 11:34:14', 'admin', '2025-02-21 11:37:59', '');
|
|
INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query_param`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1892831809482338305, '反馈信息', 1892834997065252865, 2, 'commonFeedback', 'business/commonFeedback/index', NULL, 1, 0, 'C', '0', '0', 'business:commonFeedback:list', 'log', 'admin', '2025-02-21 02:09:14', 'admin', '2025-02-21 15:14:35', '反馈信息菜单');
|
|
INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query_param`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1892831809486532610, '反馈信息查询', 1892831809482338305, 1, '#', '', NULL, 1, 0, 'F', '0', '0', 'business:commonFeedback:query', '#', 'admin', '2025-02-21 02:09:14', '', NULL, '');
|
|
INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query_param`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1892831809486532611, '反馈信息新增', 1892831809482338305, 2, '#', '', NULL, 1, 0, 'F', '0', '0', 'business:commonFeedback:add', '#', 'admin', '2025-02-21 02:09:14', '', NULL, '');
|
|
INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query_param`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1892831809486532612, '反馈信息修改', 1892831809482338305, 3, '#', '', NULL, 1, 0, 'F', '0', '0', 'business:commonFeedback:edit', '#', 'admin', '2025-02-21 02:09:14', '', NULL, '');
|
|
INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query_param`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1892831809486532613, '反馈信息删除', 1892831809482338305, 4, '#', '', NULL, 1, 0, 'F', '0', '0', 'business:commonFeedback:remove', '#', 'admin', '2025-02-21 02:09:14', '', NULL, '');
|
|
INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query_param`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1892831809486532614, '反馈信息导出', 1892831809482338305, 5, '#', '', NULL, 1, 0, 'F', '0', '0', 'business:commonFeedback:export', '#', 'admin', '2025-02-21 02:09:14', '', NULL, '');
|
|
INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query_param`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1892831810421862402, '关于信息', 1892834997065252865, 1, 'commonInfo', 'business/commonInfo/index', NULL, 1, 0, 'C', '0', '0', 'business:commonInfo:list', 'question', 'admin', '2025-02-21 02:09:14', 'admin', '2025-02-21 15:14:08', '关于信息菜单');
|
|
INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query_param`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1892831810421862403, '关于信息查询', 1892831810421862402, 1, '#', '', NULL, 1, 0, 'F', '0', '0', 'business:commonInfo:query', '#', 'admin', '2025-02-21 02:09:14', '', NULL, '');
|
|
INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query_param`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1892831810421862404, '关于信息新增', 1892831810421862402, 2, '#', '', NULL, 1, 0, 'F', '0', '0', 'business:commonInfo:add', '#', 'admin', '2025-02-21 02:09:14', '', NULL, '');
|
|
INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query_param`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1892831810421862405, '关于信息修改', 1892831810421862402, 3, '#', '', NULL, 1, 0, 'F', '0', '0', 'business:commonInfo:edit', '#', 'admin', '2025-02-21 02:09:14', '', NULL, '');
|
|
INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query_param`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1892831810421862406, '关于信息删除', 1892831810421862402, 4, '#', '', NULL, 1, 0, 'F', '0', '0', 'business:commonInfo:remove', '#', 'admin', '2025-02-21 02:09:14', '', NULL, '');
|
|
INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query_param`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1892831810421862407, '关于信息导出', 1892831810421862402, 5, '#', '', NULL, 1, 0, 'F', '0', '0', 'business:commonInfo:export', '#', 'admin', '2025-02-21 02:09:14', '', NULL, '');
|
|
INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query_param`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1892831810627383298, '消息通知', 1892834997065252865, 3, 'commonNotify', 'business/commonNotify/index', NULL, 1, 0, 'C', '0', '0', 'business:commonNotify:list', 'message', 'admin', '2025-02-21 02:09:14', 'admin', '2025-02-21 15:14:52', '消息通知菜单');
|
|
INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query_param`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1892831810627383299, '消息通知查询', 1892831810627383298, 1, '#', '', NULL, 1, 0, 'F', '0', '0', 'business:commonNotify:query', '#', 'admin', '2025-02-21 02:09:14', '', NULL, '');
|
|
INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query_param`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1892831810627383300, '消息通知新增', 1892831810627383298, 2, '#', '', NULL, 1, 0, 'F', '0', '0', 'business:commonNotify:add', '#', 'admin', '2025-02-21 02:09:14', '', NULL, '');
|
|
INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query_param`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1892831810627383301, '消息通知修改', 1892831810627383298, 3, '#', '', NULL, 1, 0, 'F', '0', '0', 'business:commonNotify:edit', '#', 'admin', '2025-02-21 02:09:14', '', NULL, '');
|
|
INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query_param`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1892831810627383302, '消息通知删除', 1892831810627383298, 4, '#', '', NULL, 1, 0, 'F', '0', '0', 'business:commonNotify:remove', '#', 'admin', '2025-02-21 02:09:14', '', NULL, '');
|
|
INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query_param`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1892831810627383303, '消息通知导出', 1892831810627383298, 5, '#', '', NULL, 1, 0, 'F', '0', '0', 'business:commonNotify:export', '#', 'admin', '2025-02-21 02:09:14', '', NULL, '');
|
|
INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query_param`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1892834997065252865, '公共', 0, 8, '/common', NULL, NULL, 1, 0, 'M', '0', '0', NULL, 'component', 'admin', '2025-02-21 15:13:25', 'admin', '2025-02-21 15:13:25', '');
|
|
INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query_param`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1893195271509159937, '交易动账记录', 1893199076321665026, 1, 'recordTransaction', 'business/recordTransaction/index', NULL, 1, 0, 'C', '0', '0', 'business:recordTransaction:list', 'money', 'admin', '2025-02-22 02:09:50', 'admin', '2025-02-22 15:20:28', '交易动账记录菜单');
|
|
INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query_param`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1893195271509159938, '交易动账记录查询', 1893195271509159937, 1, '#', '', NULL, 1, 0, 'F', '0', '0', 'business:recordTransaction:query', '#', 'admin', '2025-02-22 02:09:50', '', NULL, '');
|
|
INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query_param`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1893195271509159939, '交易动账记录新增', 1893195271509159937, 2, '#', '', NULL, 1, 0, 'F', '0', '0', 'business:recordTransaction:add', '#', 'admin', '2025-02-22 02:09:50', '', NULL, '');
|
|
INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query_param`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1893195271509159940, '交易动账记录修改', 1893195271509159937, 3, '#', '', NULL, 1, 0, 'F', '0', '0', 'business:recordTransaction:edit', '#', 'admin', '2025-02-22 02:09:50', '', NULL, '');
|
|
INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query_param`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1893195271509159941, '交易动账记录删除', 1893195271509159937, 4, '#', '', NULL, 1, 0, 'F', '0', '0', 'business:recordTransaction:remove', '#', 'admin', '2025-02-22 02:09:50', '', NULL, '');
|
|
INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query_param`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1893195271509159942, '交易动账记录导出', 1893195271509159937, 5, '#', '', NULL, 1, 0, 'F', '0', '0', 'business:recordTransaction:export', '#', 'admin', '2025-02-22 02:09:50', '', NULL, '');
|
|
INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query_param`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1893199076321665026, '记录', 0, 9, '/record', NULL, NULL, 1, 0, 'M', '0', '0', NULL, 'log', 'admin', '2025-02-22 15:20:08', 'admin', '2025-02-22 15:20:08', '');
|
|
COMMIT;
|
|
|
|
-- ----------------------------
|
|
-- Table structure for sys_notice
|
|
-- ----------------------------
|
|
DROP TABLE IF EXISTS `sys_notice`;
|
|
CREATE TABLE `sys_notice` (
|
|
`notice_id` bigint NOT NULL COMMENT '公告ID',
|
|
`notice_title` varchar(50) NOT NULL COMMENT '公告标题',
|
|
`notice_type` char(1) NOT NULL COMMENT '公告类型(1通知 2公告)',
|
|
`notice_content` longblob COMMENT '公告内容',
|
|
`status` char(1) DEFAULT '0' COMMENT '公告状态(0正常 1关闭)',
|
|
`create_by` varchar(64) DEFAULT '' COMMENT '创建者',
|
|
`create_time` datetime DEFAULT NULL COMMENT '创建时间',
|
|
`update_by` varchar(64) DEFAULT '' COMMENT '更新者',
|
|
`update_time` datetime DEFAULT NULL COMMENT '更新时间',
|
|
`remark` varchar(255) DEFAULT NULL COMMENT '备注',
|
|
PRIMARY KEY (`notice_id`)
|
|
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='通知公告表';
|
|
|
|
-- ----------------------------
|
|
-- Records of sys_notice
|
|
-- ----------------------------
|
|
BEGIN;
|
|
INSERT INTO `sys_notice` (`notice_id`, `notice_title`, `notice_type`, `notice_content`, `status`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1, '温馨提醒:2018-07-01 新版本发布啦', '2', 0xE696B0E78988E69CACE58685E5AEB9, '0', 'admin', '2025-02-19 05:35:30', '', NULL, '管理员');
|
|
INSERT INTO `sys_notice` (`notice_id`, `notice_title`, `notice_type`, `notice_content`, `status`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (2, '维护通知:2018-07-01 系统凌晨维护', '1', 0x3C703EE7BBB4E68AA4E58685E5AEB93C2F703E, '0', 'admin', '2025-02-19 05:35:30', 'admin', '2025-02-20 09:14:09', '管理员');
|
|
COMMIT;
|
|
|
|
-- ----------------------------
|
|
-- Table structure for sys_oper_log
|
|
-- ----------------------------
|
|
DROP TABLE IF EXISTS `sys_oper_log`;
|
|
CREATE TABLE `sys_oper_log` (
|
|
`oper_id` bigint NOT NULL COMMENT '日志主键',
|
|
`title` varchar(50) DEFAULT '' COMMENT '模块标题',
|
|
`business_type` int DEFAULT '0' COMMENT '业务类型(0其它 1新增 2修改 3删除)',
|
|
`method` varchar(100) DEFAULT '' COMMENT '方法名称',
|
|
`request_method` varchar(10) DEFAULT '' COMMENT '请求方式',
|
|
`operator_type` int DEFAULT '0' COMMENT '操作类别(0其它 1后台用户 2手机端用户)',
|
|
`oper_name` varchar(50) DEFAULT '' COMMENT '操作人员',
|
|
`dept_name` varchar(50) DEFAULT '' COMMENT '部门名称',
|
|
`oper_url` varchar(255) DEFAULT '' COMMENT '请求URL',
|
|
`oper_ip` varchar(128) DEFAULT '' COMMENT '主机地址',
|
|
`oper_location` varchar(255) DEFAULT '' COMMENT '操作地点',
|
|
`oper_param` varchar(2000) DEFAULT '' COMMENT '请求参数',
|
|
`json_result` varchar(2000) DEFAULT '' COMMENT '返回参数',
|
|
`status` int DEFAULT '0' COMMENT '操作状态(0正常 1异常)',
|
|
`error_msg` varchar(2000) DEFAULT '' COMMENT '错误消息',
|
|
`oper_time` datetime DEFAULT NULL COMMENT '操作时间',
|
|
PRIMARY KEY (`oper_id`),
|
|
KEY `idx_sys_oper_log_bt` (`business_type`),
|
|
KEY `idx_sys_oper_log_s` (`status`),
|
|
KEY `idx_sys_oper_log_ot` (`oper_time`)
|
|
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='操作日志记录';
|
|
|
|
-- ----------------------------
|
|
-- Records of sys_oper_log
|
|
-- ----------------------------
|
|
BEGIN;
|
|
INSERT INTO `sys_oper_log` (`oper_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`) VALUES (1892163991761846273, '代码生成', 6, 'com.ruoyi.generator.controller.GenController.importTableSave()', 'POST', 1, 'admin', '研发部门', '/tool/gen/importTable', '127.0.0.1', '内网IP', '\"test_demo,test_tree\"', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-02-19 18:47:05');
|
|
INSERT INTO `sys_oper_log` (`oper_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`) VALUES (1892381560821284865, '部门管理', 2, 'com.coin.web.controller.system.SysDeptController.edit()', 'PUT', 1, 'admin', '研发部门', '/system/dept', '127.0.0.1', '内网IP', '{\"createBy\":\"admin\",\"createTime\":\"2025-02-19 05:35:30\",\"updateBy\":\"admin\",\"updateTime\":\"2025-02-20 09:11:37\",\"parentName\":null,\"parentId\":0,\"children\":[],\"deptId\":100,\"deptName\":\"Coin科技\",\"orderNum\":0,\"leader\":\"Mr Li\",\"phone\":\"15888888888\",\"email\":\"coin@qq.com\",\"status\":\"0\",\"delFlag\":\"0\",\"ancestors\":\"0\"}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-02-20 09:11:37');
|
|
INSERT INTO `sys_oper_log` (`oper_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`) VALUES (1892381681696931842, '用户管理', 2, 'com.coin.web.controller.system.SysUserController.edit()', 'PUT', 1, 'admin', '研发部门', '/system/user', '127.0.0.1', '内网IP', '{\"createBy\":\"admin\",\"createTime\":\"2025-02-19 05:35:30\",\"updateBy\":\"admin\",\"updateTime\":\"2025-02-20 09:12:06\",\"userId\":2,\"deptId\":105,\"userName\":\"lionli\",\"nickName\":\"一只小鹿\",\"userType\":\"sys_user\",\"email\":\"crazyLionLi@qq.com\",\"phonenumber\":\"15666666666\",\"sex\":\"1\",\"avatar\":\"\",\"status\":\"0\",\"delFlag\":\"0\",\"loginIp\":\"127.0.0.1\",\"loginDate\":\"2025-02-19 05:35:30\",\"remark\":\"测试员\",\"dept\":{\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"parentName\":null,\"parentId\":101,\"children\":[],\"deptId\":105,\"deptName\":\"测试部门\",\"orderNum\":3,\"leader\":\"若依\",\"phone\":null,\"email\":null,\"status\":\"0\",\"delFlag\":null,\"ancestors\":\"0,100,101\"},\"roles\":[{\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"roleId\":2,\"roleName\":\"普通角色\",\"roleKey\":\"common\",\"roleSort\":2,\"dataScope\":\"2\",\"menuCheckStrictly\":null,\"deptCheckStrictly\":null,\"status\":\"0\",\"delFlag\":null,\"remark\":null,\"flag\":false,\"menuIds\":null,\"deptIds\":null,\"admin\":false}],\"roleIds\":[2],\"postIds\":[2],\"roleId\":null,\"admin\":false}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-02-20 09:12:06');
|
|
INSERT INTO `sys_oper_log` (`oper_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`) VALUES (1892381800181825537, '部门管理', 2, 'com.coin.web.controller.system.SysDeptController.edit()', 'PUT', 1, 'admin', '研发部门', '/system/dept', '127.0.0.1', '内网IP', '{\"createBy\":\"admin\",\"createTime\":\"2025-02-19 05:35:30\",\"updateBy\":\"admin\",\"updateTime\":\"2025-02-20 09:12:34\",\"parentName\":\"Coin科技\",\"parentId\":100,\"children\":[],\"deptId\":101,\"deptName\":\"云南总公司\",\"orderNum\":1,\"leader\":\"Mr Li\",\"phone\":\"15888888888\",\"email\":\"coin@qq.com\",\"status\":\"0\",\"delFlag\":\"0\",\"ancestors\":\"0,100\"}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-02-20 09:12:35');
|
|
INSERT INTO `sys_oper_log` (`oper_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`) VALUES (1892381900576686081, '部门管理', 2, 'com.coin.web.controller.system.SysDeptController.edit()', 'PUT', 1, 'admin', '研发部门', '/system/dept', '127.0.0.1', '内网IP', '{\"createBy\":\"admin\",\"createTime\":\"2025-02-19 05:35:30\",\"updateBy\":\"admin\",\"updateTime\":\"2025-02-20 09:12:58\",\"parentName\":\"Coin科技\",\"parentId\":100,\"children\":[],\"deptId\":102,\"deptName\":\"成都分公司\",\"orderNum\":2,\"leader\":\"Jack\",\"phone\":\"15888888888\",\"email\":\"jack@qq.com\",\"status\":\"0\",\"delFlag\":\"0\",\"ancestors\":\"0,100\"}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-02-20 09:12:59');
|
|
INSERT INTO `sys_oper_log` (`oper_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`) VALUES (1892382196807794690, '通知公告', 2, 'com.coin.web.controller.system.SysNoticeController.edit()', 'PUT', 1, 'admin', '研发部门', '/system/notice', '127.0.0.1', '内网IP', '{\"createBy\":\"admin\",\"createTime\":\"2025-02-19 05:35:30\",\"updateBy\":\"admin\",\"updateTime\":\"2025-02-20 09:14:09\",\"noticeId\":2,\"noticeTitle\":\"维护通知:2018-07-01 系统凌晨维护\",\"noticeType\":\"1\",\"noticeContent\":\"<p>维护内容</p>\",\"status\":\"0\",\"remark\":\"管理员\"}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-02-20 09:14:09');
|
|
INSERT INTO `sys_oper_log` (`oper_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`) VALUES (1892741430800576513, '代码生成', 3, 'com.coin.generator.controller.GenController.remove()', 'DELETE', 1, 'admin', '研发部门', '/tool/gen/1892163991162060802,1892163991451467777', '127.0.0.1', '内网IP', '{}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-02-21 09:01:37');
|
|
INSERT INTO `sys_oper_log` (`oper_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`) VALUES (1892743840600190978, '代码生成', 6, 'com.coin.generator.controller.GenController.importTableSave()', 'POST', 1, 'admin', '研发部门', '/tool/gen/importTable', '127.0.0.1', '内网IP', '\"t_user_passwd,t_user_account,t_user_friend,t_user_card,t_user_info,t_user_register\"', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-02-21 09:11:12');
|
|
INSERT INTO `sys_oper_log` (`oper_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`) VALUES (1892743883642138625, '代码生成', 6, 'com.coin.generator.controller.GenController.importTableSave()', 'POST', 1, 'admin', '研发部门', '/tool/gen/importTable', '127.0.0.1', '内网IP', '\"t_deal_cashout,t_deal_pay,t_deal_receive,t_deal_transfer\"', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-02-21 09:11:22');
|
|
INSERT INTO `sys_oper_log` (`oper_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`) VALUES (1892745265027858433, '代码生成', 3, 'com.coin.generator.controller.GenController.remove()', 'DELETE', 1, 'admin', '研发部门', '/tool/gen/1892743839656472577,1892743839903936513,1892743840059125761,1892743840155594753,1892743840281423873,1892743840394670082,1892743883021381633,1892743883159793665,1892743883306594306,1892743883482755073', '127.0.0.1', '内网IP', '{}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-02-21 09:16:51');
|
|
INSERT INTO `sys_oper_log` (`oper_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`) VALUES (1892745315585998849, '代码生成', 6, 'com.coin.generator.controller.GenController.importTableSave()', 'POST', 1, 'admin', '研发部门', '/tool/gen/importTable', '127.0.0.1', '内网IP', '\"t_user_passwd,t_user_account,t_user_friend,t_user_card,t_user_info,t_user_register\"', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-02-21 09:17:03');
|
|
INSERT INTO `sys_oper_log` (`oper_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`) VALUES (1892745657329500161, '代码生成', 2, 'com.coin.generator.controller.GenController.editSave()', 'PUT', 1, 'admin', '研发部门', '/tool/gen', '127.0.0.1', '内网IP', '{\"createBy\":null,\"createTime\":null,\"updateBy\":\"admin\",\"updateTime\":\"2025-02-21 09:18:24\",\"params\":{\"treeCode\":null,\"treeName\":null,\"treeParentCode\":null,\"parentMenuId\":null},\"tableId\":\"1892745315367895042\",\"tableName\":\"t_user_register\",\"tableComment\":\"用户注册表\",\"subTableName\":null,\"subTableFkName\":null,\"className\":\"UserRegister\",\"tplCategory\":\"crud\",\"packageName\":\"com.coin.business\",\"moduleName\":\"business\",\"businessName\":\"userRegister\",\"functionName\":\"用户注册\",\"functionAuthor\":\"coin\",\"genType\":\"0\",\"genPath\":\"/\",\"pkColumn\":null,\"subTable\":null,\"columns\":[{\"createBy\":\"admin\",\"createTime\":\"2025-02-21 09:17:03\",\"updateBy\":\"admin\",\"updateTime\":\"2025-02-21 09:18:24\",\"columnId\":\"1892745315409838081\",\"tableId\":\"1892745315367895042\",\"columnName\":\"id\",\"columnComment\":\"唯一ID\",\"columnType\":\"int\",\"javaType\":\"Long\",\"javaField\":\"id\",\"isPk\":\"1\",\"isIncrement\":\"1\",\"isRequired\":\"1\",\"isInsert\":null,\"isEdit\":\"1\",\"isList\":\"1\",\"isQuery\":null,\"queryType\":\"EQ\",\"htmlType\":\"input\",\"dictType\":\"\",\"sort\":1,\"increment\":true,\"capJavaField\":\"Id\",\"required\":true,\"usableColumn\":false,\"superColumn\":false,\"pk\":true,\"insert\":false,\"edit\":true,\"query\":false,\"list\":true},{\"createBy\":\"admin\",\"createTime\":\"2025-02-21 09:17:03\",\"updateBy\":\"admin\",\"updateTime\":\"2025-02-21 09:18:24\",\"columnId\":\"1892745315414032385\",\"tableId\":\"1892745315367895042\",\"columnName\":\"user_id\",\"columnComment\":\"用户id\",\"columnType\":\"varchar(255)\",\"javaType\":\"String\",\"javaField\":\"userId\",\"isPk\":\"0\",\"isIncrement\":\"0\",\"isRequired\":\"1\",\"isInsert\":\"1\",\"isEdit\":\"1\",\"isList\":\"1\",\"isQuery\":\"1\",\"queryType\":\"EQ\",\"htmlType\":\"input\",\"dictType\":\"\",\"sort\":2,\"increment\":false,\"capJavaField\":\"UserId\",\"required\":true,\"usableColumn\":false,\"superColumn\":false,\"pk\":false,\"insert\":true,\"edit\":true,\"query\":true,\"list\":true},{\"createBy\":\"admin\",\"createTime\":\"2025-02-21 09:17:03\",\"updateBy\":\"admin\",\"updateTime\":\"2025-02-21 09:18:24\",\"columnId\":\"1892745315418226689\",\"tableId\":\"1892745315367895042\",\"columnName\":\"name\",\"columnComment\":\"名字\",\"columnType\":\"varchar(255)\",\"ja', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-02-21 09:18:25');
|
|
INSERT INTO `sys_oper_log` (`oper_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`) VALUES (1892745684923826178, '代码生成', 8, 'com.coin.generator.controller.GenController.batchGenCode()', 'GET', 1, 'admin', '研发部门', '/tool/gen/batchGenCode', '127.0.0.1', '内网IP', '{\"tables\":\"t_user_register\"}', '', 0, '', '2025-02-21 09:18:31');
|
|
INSERT INTO `sys_oper_log` (`oper_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`) VALUES (1892753364040101890, '用户注册', 1, 'com.coin.business.controller.UserRegisterController.add()', 'POST', 1, 'admin', '研发部门', '/business/userRegister', '127.0.0.1', '内网IP', '{\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"id\":null,\"userId\":\"1\",\"name\":\"aha\",\"phone\":null,\"passwd\":null,\"verifyCode\":null,\"status\":null}', '', 1, '\n### Error updating database. Cause: com.mysql.cj.jdbc.exceptions.MysqlDataTruncation: Data truncation: Out of range value for column \'id\' at row 1\n### The error may exist in com/coin/business/mapper/UserRegisterMapper.java (best guess)\n### The error may involve com.coin.business.mapper.UserRegisterMapper.insert-Inline\n### The error occurred while setting parameters\n### SQL: INSERT INTO t_user_register ( id, user_id, name, create_by, create_time, update_by, update_time ) VALUES ( ?, ?, ?, ?, ?, ?, ? )\n### Cause: com.mysql.cj.jdbc.exceptions.MysqlDataTruncation: Data truncation: Out of range value for column \'id\' at row 1\n; Data truncation: Out of range value for column \'id\' at row 1; nested exception is com.mysql.cj.jdbc.exceptions.MysqlDataTruncation: Data truncation: Out of range value for column \'id\' at row 1', '2025-02-21 09:49:02');
|
|
INSERT INTO `sys_oper_log` (`oper_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`) VALUES (1892753439747289090, '用户注册', 1, 'com.coin.business.controller.UserRegisterController.add()', 'POST', 1, 'admin', '研发部门', '/business/userRegister', '127.0.0.1', '内网IP', '{\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"id\":null,\"userId\":\"1\",\"name\":\"aha\",\"phone\":null,\"passwd\":null,\"verifyCode\":null,\"status\":null}', '', 1, '\n### Error updating database. Cause: com.mysql.cj.jdbc.exceptions.MysqlDataTruncation: Data truncation: Out of range value for column \'id\' at row 1\n### The error may exist in com/coin/business/mapper/UserRegisterMapper.java (best guess)\n### The error may involve com.coin.business.mapper.UserRegisterMapper.insert-Inline\n### The error occurred while setting parameters\n### SQL: INSERT INTO t_user_register ( id, user_id, name, create_by, create_time, update_by, update_time ) VALUES ( ?, ?, ?, ?, ?, ?, ? )\n### Cause: com.mysql.cj.jdbc.exceptions.MysqlDataTruncation: Data truncation: Out of range value for column \'id\' at row 1\n; Data truncation: Out of range value for column \'id\' at row 1; nested exception is com.mysql.cj.jdbc.exceptions.MysqlDataTruncation: Data truncation: Out of range value for column \'id\' at row 1', '2025-02-21 09:49:20');
|
|
INSERT INTO `sys_oper_log` (`oper_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`) VALUES (1892760024682893314, '代码生成', 3, 'com.coin.generator.controller.GenController.remove()', 'DELETE', 1, 'admin', '研发部门', '/tool/gen/1892745314541617153,1892745314789081090,1892745314965241857,1892745315082682370,1892745315216900097,1892745315367895042', '127.0.0.1', '内网IP', '{}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-02-21 10:15:30');
|
|
INSERT INTO `sys_oper_log` (`oper_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`) VALUES (1892760073873690625, '代码生成', 6, 'com.coin.generator.controller.GenController.importTableSave()', 'POST', 1, 'admin', '研发部门', '/tool/gen/importTable', '127.0.0.1', '内网IP', '\"t_user_account,t_user_card,t_user_friend,t_user_info,t_user_passwd,t_user_register\"', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-02-21 10:15:42');
|
|
INSERT INTO `sys_oper_log` (`oper_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`) VALUES (1892760135337021442, '代码生成', 8, 'com.coin.generator.controller.GenController.batchGenCode()', 'GET', 1, 'admin', '研发部门', '/tool/gen/batchGenCode', '127.0.0.1', '内网IP', '{\"tables\":\"t_user_register\"}', '', 0, '', '2025-02-21 10:15:57');
|
|
INSERT INTO `sys_oper_log` (`oper_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`) VALUES (1892763076534067201, '用户注册', 1, 'com.coin.business.controller.UserRegisterController.add()', 'POST', 1, 'admin', '研发部门', '/business/userRegister', '127.0.0.1', '内网IP', '{\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"id\":\"1892763076366295041\",\"userId\":\"1\",\"name\":\"1\",\"phone\":\"2\",\"passwd\":\"3\",\"verifyCode\":\"4\",\"status\":null}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-02-21 10:27:38');
|
|
INSERT INTO `sys_oper_log` (`oper_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`) VALUES (1892763107836157953, '用户注册', 2, 'com.coin.business.controller.UserRegisterController.edit()', 'PUT', 1, 'admin', '研发部门', '/business/userRegister', '127.0.0.1', '内网IP', '{\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"id\":\"1892763076366295041\",\"userId\":\"1\",\"name\":\"23\",\"phone\":\"44\",\"passwd\":\"3\",\"verifyCode\":\"4\",\"status\":0}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-02-21 10:27:45');
|
|
INSERT INTO `sys_oper_log` (`oper_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`) VALUES (1892763577661120514, '代码生成', 2, 'com.coin.generator.controller.GenController.editSave()', 'PUT', 1, 'admin', '研发部门', '/tool/gen', '127.0.0.1', '内网IP', '{\"createBy\":null,\"createTime\":null,\"updateBy\":\"admin\",\"updateTime\":\"2025-02-21 10:29:37\",\"params\":{\"treeCode\":null,\"treeName\":null,\"treeParentCode\":null,\"parentMenuId\":null},\"tableId\":\"1892760073735278594\",\"tableName\":\"t_user_register\",\"tableComment\":\"用户注册表\",\"subTableName\":null,\"subTableFkName\":null,\"className\":\"UserRegister\",\"tplCategory\":\"crud\",\"packageName\":\"com.coin.business\",\"moduleName\":\"business\",\"businessName\":\"userRegister\",\"functionName\":\"用户注册\",\"functionAuthor\":\"coin\",\"genType\":\"0\",\"genPath\":\"/\",\"pkColumn\":null,\"subTable\":null,\"columns\":[{\"createBy\":\"admin\",\"createTime\":\"2025-02-21 10:15:42\",\"updateBy\":\"admin\",\"updateTime\":\"2025-02-21 10:29:37\",\"columnId\":\"1892760073764638722\",\"tableId\":\"1892760073735278594\",\"columnName\":\"id\",\"columnComment\":\"唯一ID\",\"columnType\":\"bigint\",\"javaType\":\"Long\",\"javaField\":\"id\",\"isPk\":\"1\",\"isIncrement\":\"1\",\"isRequired\":\"0\",\"isInsert\":null,\"isEdit\":\"1\",\"isList\":\"1\",\"isQuery\":null,\"queryType\":\"EQ\",\"htmlType\":\"input\",\"dictType\":\"\",\"sort\":1,\"query\":false,\"pk\":true,\"insert\":false,\"edit\":true,\"list\":true,\"increment\":true,\"capJavaField\":\"Id\",\"usableColumn\":false,\"superColumn\":false,\"required\":false},{\"createBy\":\"admin\",\"createTime\":\"2025-02-21 10:15:42\",\"updateBy\":\"admin\",\"updateTime\":\"2025-02-21 10:29:37\",\"columnId\":\"1892760073768833025\",\"tableId\":\"1892760073735278594\",\"columnName\":\"user_id\",\"columnComment\":\"用户id\",\"columnType\":\"varchar(255)\",\"javaType\":\"String\",\"javaField\":\"userId\",\"isPk\":\"0\",\"isIncrement\":\"0\",\"isRequired\":\"0\",\"isInsert\":\"1\",\"isEdit\":\"1\",\"isList\":\"1\",\"isQuery\":\"1\",\"queryType\":\"EQ\",\"htmlType\":\"input\",\"dictType\":\"\",\"sort\":2,\"query\":true,\"pk\":false,\"insert\":true,\"edit\":true,\"list\":true,\"increment\":false,\"capJavaField\":\"UserId\",\"usableColumn\":false,\"superColumn\":false,\"required\":false},{\"createBy\":\"admin\",\"createTime\":\"2025-02-21 10:15:42\",\"updateBy\":\"admin\",\"updateTime\":\"2025-02-21 10:29:37\",\"columnId\":\"1892760073768833026\",\"tableId\":\"1892760073735278594\",\"columnName\":\"name\",\"columnComment\":\"名字\",\"columnType\":\"varchar(255)', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-02-21 10:29:37');
|
|
INSERT INTO `sys_oper_log` (`oper_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`) VALUES (1892764166436544514, '代码生成', 2, 'com.coin.generator.controller.GenController.editSave()', 'PUT', 1, 'admin', '研发部门', '/tool/gen', '127.0.0.1', '内网IP', '{\"createBy\":null,\"createTime\":null,\"updateBy\":\"admin\",\"updateTime\":\"2025-02-21 10:31:57\",\"params\":{\"treeCode\":null,\"treeName\":null,\"treeParentCode\":null,\"parentMenuId\":null},\"tableId\":\"1892760073663975425\",\"tableName\":\"t_user_passwd\",\"tableComment\":\"用户密码表\",\"subTableName\":null,\"subTableFkName\":null,\"className\":\"UserPasswd\",\"tplCategory\":\"crud\",\"packageName\":\"com.coin.business\",\"moduleName\":\"business\",\"businessName\":\"userPasswd\",\"functionName\":\"用户密码\",\"functionAuthor\":\"coin\",\"genType\":\"0\",\"genPath\":\"/\",\"pkColumn\":null,\"subTable\":null,\"columns\":[{\"createBy\":\"admin\",\"createTime\":\"2025-02-21 10:15:42\",\"updateBy\":\"admin\",\"updateTime\":\"2025-02-21 10:31:57\",\"columnId\":\"1892760073693335554\",\"tableId\":\"1892760073663975425\",\"columnName\":\"id\",\"columnComment\":\"唯一ID\",\"columnType\":\"bigint\",\"javaType\":\"Long\",\"javaField\":\"id\",\"isPk\":\"1\",\"isIncrement\":\"1\",\"isRequired\":\"0\",\"isInsert\":null,\"isEdit\":\"1\",\"isList\":\"1\",\"isQuery\":null,\"queryType\":\"EQ\",\"htmlType\":\"input\",\"dictType\":\"\",\"sort\":1,\"query\":false,\"pk\":true,\"insert\":false,\"edit\":true,\"list\":true,\"increment\":true,\"capJavaField\":\"Id\",\"usableColumn\":false,\"superColumn\":false,\"required\":false},{\"createBy\":\"admin\",\"createTime\":\"2025-02-21 10:15:42\",\"updateBy\":\"admin\",\"updateTime\":\"2025-02-21 10:31:57\",\"columnId\":\"1892760073697529857\",\"tableId\":\"1892760073663975425\",\"columnName\":\"user_id\",\"columnComment\":\"用户id\",\"columnType\":\"varchar(64)\",\"javaType\":\"String\",\"javaField\":\"userId\",\"isPk\":\"0\",\"isIncrement\":\"0\",\"isRequired\":\"0\",\"isInsert\":\"1\",\"isEdit\":\"1\",\"isList\":\"1\",\"isQuery\":\"1\",\"queryType\":\"EQ\",\"htmlType\":\"input\",\"dictType\":\"\",\"sort\":2,\"query\":true,\"pk\":false,\"insert\":true,\"edit\":true,\"list\":true,\"increment\":false,\"capJavaField\":\"UserId\",\"usableColumn\":false,\"superColumn\":false,\"required\":false},{\"createBy\":\"admin\",\"createTime\":\"2025-02-21 10:15:42\",\"updateBy\":\"admin\",\"updateTime\":\"2025-02-21 10:31:57\",\"columnId\":\"1892760073697529858\",\"tableId\":\"1892760073663975425\",\"columnName\":\"pay_passwd\",\"columnComment\":\"支付密码(数字组合)\",\"columnType\":\"varch', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-02-21 10:31:58');
|
|
INSERT INTO `sys_oper_log` (`oper_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`) VALUES (1892764575423127553, '代码生成', 2, 'com.coin.generator.controller.GenController.editSave()', 'PUT', 1, 'admin', '研发部门', '/tool/gen', '127.0.0.1', '内网IP', '{\"createBy\":null,\"createTime\":null,\"updateBy\":\"admin\",\"updateTime\":\"2025-02-21 10:33:35\",\"params\":{\"treeCode\":null,\"treeName\":null,\"treeParentCode\":null,\"parentMenuId\":null},\"tableId\":\"1892760073559117825\",\"tableName\":\"t_user_info\",\"tableComment\":\"用户信息表\",\"subTableName\":null,\"subTableFkName\":null,\"className\":\"UserInfo\",\"tplCategory\":\"crud\",\"packageName\":\"com.coin.business\",\"moduleName\":\"business\",\"businessName\":\"userInfo\",\"functionName\":\"用户信息\",\"functionAuthor\":\"coin\",\"genType\":\"0\",\"genPath\":\"/\",\"pkColumn\":null,\"subTable\":null,\"columns\":[{\"createBy\":\"admin\",\"createTime\":\"2025-02-21 10:15:42\",\"updateBy\":\"admin\",\"updateTime\":\"2025-02-21 10:33:35\",\"columnId\":\"1892760073596866562\",\"tableId\":\"1892760073559117825\",\"columnName\":\"id\",\"columnComment\":\"唯一ID\",\"columnType\":\"bigint\",\"javaType\":\"Long\",\"javaField\":\"id\",\"isPk\":\"1\",\"isIncrement\":\"1\",\"isRequired\":\"0\",\"isInsert\":null,\"isEdit\":\"1\",\"isList\":\"1\",\"isQuery\":null,\"queryType\":\"EQ\",\"htmlType\":\"input\",\"dictType\":\"\",\"sort\":1,\"query\":false,\"pk\":true,\"insert\":false,\"edit\":true,\"list\":true,\"increment\":true,\"capJavaField\":\"Id\",\"usableColumn\":false,\"superColumn\":false,\"required\":false},{\"createBy\":\"admin\",\"createTime\":\"2025-02-21 10:15:42\",\"updateBy\":\"admin\",\"updateTime\":\"2025-02-21 10:33:35\",\"columnId\":\"1892760073601060866\",\"tableId\":\"1892760073559117825\",\"columnName\":\"user_id\",\"columnComment\":\"用户ID\",\"columnType\":\"varchar(255)\",\"javaType\":\"String\",\"javaField\":\"userId\",\"isPk\":\"0\",\"isIncrement\":\"0\",\"isRequired\":\"0\",\"isInsert\":\"1\",\"isEdit\":\"1\",\"isList\":\"1\",\"isQuery\":\"1\",\"queryType\":\"EQ\",\"htmlType\":\"input\",\"dictType\":\"\",\"sort\":2,\"query\":true,\"pk\":false,\"insert\":true,\"edit\":true,\"list\":true,\"increment\":false,\"capJavaField\":\"UserId\",\"usableColumn\":false,\"superColumn\":false,\"required\":false},{\"createBy\":\"admin\",\"createTime\":\"2025-02-21 10:15:42\",\"updateBy\":\"admin\",\"updateTime\":\"2025-02-21 10:33:35\",\"columnId\":\"1892760073605255170\",\"tableId\":\"1892760073559117825\",\"columnName\":\"user_code\",\"columnComment\":\"用户唯一编码\",\"columnType\":\"varchar(255)\",\"', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-02-21 10:33:35');
|
|
INSERT INTO `sys_oper_log` (`oper_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`) VALUES (1892764745632178178, '代码生成', 2, 'com.coin.generator.controller.GenController.editSave()', 'PUT', 1, 'admin', '研发部门', '/tool/gen', '127.0.0.1', '内网IP', '{\"createBy\":null,\"createTime\":null,\"updateBy\":\"admin\",\"updateTime\":\"2025-02-21 10:34:15\",\"params\":{\"treeCode\":null,\"treeName\":null,\"treeParentCode\":null,\"parentMenuId\":null},\"tableId\":\"1892760073458454530\",\"tableName\":\"t_user_friend\",\"tableComment\":\"用户好友表\",\"subTableName\":null,\"subTableFkName\":null,\"className\":\"UserFriend\",\"tplCategory\":\"crud\",\"packageName\":\"com.coin.business\",\"moduleName\":\"business\",\"businessName\":\"userFriend\",\"functionName\":\"用户好友\",\"functionAuthor\":\"coin\",\"genType\":\"0\",\"genPath\":\"/\",\"pkColumn\":null,\"subTable\":null,\"columns\":[{\"createBy\":\"admin\",\"createTime\":\"2025-02-21 10:15:42\",\"updateBy\":\"admin\",\"updateTime\":\"2025-02-21 10:34:15\",\"columnId\":\"1892760073492008961\",\"tableId\":\"1892760073458454530\",\"columnName\":\"id\",\"columnComment\":\"唯一ID\",\"columnType\":\"bigint\",\"javaType\":\"Long\",\"javaField\":\"id\",\"isPk\":\"1\",\"isIncrement\":\"1\",\"isRequired\":\"0\",\"isInsert\":null,\"isEdit\":\"1\",\"isList\":\"1\",\"isQuery\":null,\"queryType\":\"EQ\",\"htmlType\":\"input\",\"dictType\":\"\",\"sort\":1,\"query\":false,\"pk\":true,\"insert\":false,\"edit\":true,\"list\":true,\"increment\":true,\"capJavaField\":\"Id\",\"usableColumn\":false,\"superColumn\":false,\"required\":false},{\"createBy\":\"admin\",\"createTime\":\"2025-02-21 10:15:42\",\"updateBy\":\"admin\",\"updateTime\":\"2025-02-21 10:34:15\",\"columnId\":\"1892760073500397570\",\"tableId\":\"1892760073458454530\",\"columnName\":\"user_id\",\"columnComment\":\"用户id\",\"columnType\":\"varchar(255)\",\"javaType\":\"String\",\"javaField\":\"userId\",\"isPk\":\"0\",\"isIncrement\":\"0\",\"isRequired\":\"0\",\"isInsert\":\"1\",\"isEdit\":\"1\",\"isList\":\"1\",\"isQuery\":\"1\",\"queryType\":\"EQ\",\"htmlType\":\"input\",\"dictType\":\"\",\"sort\":2,\"query\":true,\"pk\":false,\"insert\":true,\"edit\":true,\"list\":true,\"increment\":false,\"capJavaField\":\"UserId\",\"usableColumn\":false,\"superColumn\":false,\"required\":false},{\"createBy\":\"admin\",\"createTime\":\"2025-02-21 10:15:42\",\"updateBy\":\"admin\",\"updateTime\":\"2025-02-21 10:34:15\",\"columnId\":\"1892760073504591874\",\"tableId\":\"1892760073458454530\",\"columnName\":\"friend_id\",\"columnComment\":\"好友id\",\"columnType\":\"varchar(255', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-02-21 10:34:16');
|
|
INSERT INTO `sys_oper_log` (`oper_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`) VALUES (1892765080937422850, '代码生成', 2, 'com.coin.generator.controller.GenController.editSave()', 'PUT', 1, 'admin', '研发部门', '/tool/gen', '127.0.0.1', '内网IP', '{\"createBy\":null,\"createTime\":null,\"updateBy\":\"admin\",\"updateTime\":\"2025-02-21 10:35:35\",\"params\":{\"treeCode\":null,\"treeName\":null,\"treeParentCode\":null,\"parentMenuId\":null},\"tableId\":\"1892760073324236802\",\"tableName\":\"t_user_card\",\"tableComment\":\"用户银行卡表\",\"subTableName\":null,\"subTableFkName\":null,\"className\":\"UserCard\",\"tplCategory\":\"crud\",\"packageName\":\"com.coin.business\",\"moduleName\":\"business\",\"businessName\":\"userCard\",\"functionName\":\"用户银行卡\",\"functionAuthor\":\"coin\",\"genType\":\"0\",\"genPath\":\"/\",\"pkColumn\":null,\"subTable\":null,\"columns\":[{\"createBy\":\"admin\",\"createTime\":\"2025-02-21 10:15:42\",\"updateBy\":\"admin\",\"updateTime\":\"2025-02-21 10:35:35\",\"columnId\":\"1892760073366179842\",\"tableId\":\"1892760073324236802\",\"columnName\":\"id\",\"columnComment\":\"唯一ID\",\"columnType\":\"bigint\",\"javaType\":\"Long\",\"javaField\":\"id\",\"isPk\":\"1\",\"isIncrement\":\"1\",\"isRequired\":\"0\",\"isInsert\":null,\"isEdit\":\"1\",\"isList\":\"1\",\"isQuery\":null,\"queryType\":\"EQ\",\"htmlType\":\"input\",\"dictType\":\"\",\"sort\":1,\"query\":false,\"pk\":true,\"insert\":false,\"edit\":true,\"list\":true,\"increment\":true,\"capJavaField\":\"Id\",\"usableColumn\":false,\"superColumn\":false,\"required\":false},{\"createBy\":\"admin\",\"createTime\":\"2025-02-21 10:15:42\",\"updateBy\":\"admin\",\"updateTime\":\"2025-02-21 10:35:35\",\"columnId\":\"1892760073374568449\",\"tableId\":\"1892760073324236802\",\"columnName\":\"user_id\",\"columnComment\":\"用户ID\",\"columnType\":\"varchar(255)\",\"javaType\":\"String\",\"javaField\":\"userId\",\"isPk\":\"0\",\"isIncrement\":\"0\",\"isRequired\":\"1\",\"isInsert\":\"1\",\"isEdit\":\"1\",\"isList\":\"1\",\"isQuery\":\"1\",\"queryType\":\"EQ\",\"htmlType\":\"input\",\"dictType\":\"\",\"sort\":2,\"query\":true,\"pk\":false,\"insert\":true,\"edit\":true,\"list\":true,\"increment\":false,\"capJavaField\":\"UserId\",\"usableColumn\":false,\"superColumn\":false,\"required\":true},{\"createBy\":\"admin\",\"createTime\":\"2025-02-21 10:15:42\",\"updateBy\":\"admin\",\"updateTime\":\"2025-02-21 10:35:35\",\"columnId\":\"1892760073378762753\",\"tableId\":\"1892760073324236802\",\"columnName\":\"card_num\",\"columnComment\":\"银行卡号\",\"columnType\":\"varchar(64)\",\"jav', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-02-21 10:35:36');
|
|
INSERT INTO `sys_oper_log` (`oper_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`) VALUES (1892765245643546626, '代码生成', 2, 'com.coin.generator.controller.GenController.editSave()', 'PUT', 1, 'admin', '研发部门', '/tool/gen', '127.0.0.1', '内网IP', '{\"createBy\":null,\"createTime\":null,\"updateBy\":\"admin\",\"updateTime\":\"2025-02-21 10:36:15\",\"params\":{\"treeCode\":null,\"treeName\":null,\"treeParentCode\":null,\"parentMenuId\":null},\"tableId\":\"1892760073114521601\",\"tableName\":\"t_user_account\",\"tableComment\":\"用户账户表\",\"subTableName\":null,\"subTableFkName\":null,\"className\":\"UserAccount\",\"tplCategory\":\"crud\",\"packageName\":\"com.coin.business\",\"moduleName\":\"business\",\"businessName\":\"userAccount\",\"functionName\":\"用户账户\",\"functionAuthor\":\"coin\",\"genType\":\"0\",\"genPath\":\"/\",\"pkColumn\":null,\"subTable\":null,\"columns\":[{\"createBy\":\"admin\",\"createTime\":\"2025-02-21 10:15:42\",\"updateBy\":\"admin\",\"updateTime\":\"2025-02-21 10:36:15\",\"columnId\":\"1892760073206796290\",\"tableId\":\"1892760073114521601\",\"columnName\":\"id\",\"columnComment\":\"唯一ID\",\"columnType\":\"bigint\",\"javaType\":\"Long\",\"javaField\":\"id\",\"isPk\":\"1\",\"isIncrement\":\"1\",\"isRequired\":\"0\",\"isInsert\":null,\"isEdit\":\"1\",\"isList\":\"1\",\"isQuery\":null,\"queryType\":\"EQ\",\"htmlType\":\"input\",\"dictType\":\"\",\"sort\":1,\"query\":false,\"pk\":true,\"insert\":false,\"edit\":true,\"list\":true,\"increment\":true,\"capJavaField\":\"Id\",\"usableColumn\":false,\"superColumn\":false,\"required\":false},{\"createBy\":\"admin\",\"createTime\":\"2025-02-21 10:15:42\",\"updateBy\":\"admin\",\"updateTime\":\"2025-02-21 10:36:15\",\"columnId\":\"1892760073215184898\",\"tableId\":\"1892760073114521601\",\"columnName\":\"user_id\",\"columnComment\":\"用户id\",\"columnType\":\"varchar(255)\",\"javaType\":\"String\",\"javaField\":\"userId\",\"isPk\":\"0\",\"isIncrement\":\"0\",\"isRequired\":\"0\",\"isInsert\":\"1\",\"isEdit\":\"1\",\"isList\":\"1\",\"isQuery\":\"1\",\"queryType\":\"EQ\",\"htmlType\":\"input\",\"dictType\":\"\",\"sort\":2,\"query\":true,\"pk\":false,\"insert\":true,\"edit\":true,\"list\":true,\"increment\":false,\"capJavaField\":\"UserId\",\"usableColumn\":false,\"superColumn\":false,\"required\":false},{\"createBy\":\"admin\",\"createTime\":\"2025-02-21 10:15:42\",\"updateBy\":\"admin\",\"updateTime\":\"2025-02-21 10:36:15\",\"columnId\":\"1892760073223573505\",\"tableId\":\"1892760073114521601\",\"columnName\":\"account_id\",\"columnComment\":\"账户唯一ID\",\"columnType\":\"varch', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-02-21 10:36:15');
|
|
INSERT INTO `sys_oper_log` (`oper_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`) VALUES (1892765521196736514, '代码生成', 2, 'com.coin.generator.controller.GenController.editSave()', 'PUT', 1, 'admin', '研发部门', '/tool/gen', '127.0.0.1', '内网IP', '{\"createBy\":null,\"createTime\":null,\"updateBy\":\"admin\",\"updateTime\":\"2025-02-21 10:37:20\",\"params\":{\"treeCode\":null,\"treeName\":null,\"treeParentCode\":null,\"parentMenuId\":null},\"tableId\":\"1892760073735278594\",\"tableName\":\"t_user_register\",\"tableComment\":\"用户注册表\",\"subTableName\":null,\"subTableFkName\":null,\"className\":\"UserRegister\",\"tplCategory\":\"crud\",\"packageName\":\"com.coin.business\",\"moduleName\":\"business\",\"businessName\":\"userRegister\",\"functionName\":\"用户注册\",\"functionAuthor\":\"coin\",\"genType\":\"0\",\"genPath\":\"/\",\"pkColumn\":null,\"subTable\":null,\"columns\":[{\"createBy\":\"admin\",\"createTime\":\"2025-02-21 10:15:42\",\"updateBy\":\"admin\",\"updateTime\":\"2025-02-21 10:37:20\",\"columnId\":\"1892760073764638722\",\"tableId\":\"1892760073735278594\",\"columnName\":\"id\",\"columnComment\":\"唯一ID\",\"columnType\":\"bigint\",\"javaType\":\"Long\",\"javaField\":\"id\",\"isPk\":\"1\",\"isIncrement\":\"1\",\"isRequired\":\"0\",\"isInsert\":null,\"isEdit\":\"1\",\"isList\":\"1\",\"isQuery\":null,\"queryType\":\"EQ\",\"htmlType\":\"input\",\"dictType\":\"\",\"sort\":1,\"query\":false,\"pk\":true,\"insert\":false,\"edit\":true,\"list\":true,\"increment\":true,\"capJavaField\":\"Id\",\"usableColumn\":false,\"superColumn\":false,\"required\":false},{\"createBy\":\"admin\",\"createTime\":\"2025-02-21 10:15:42\",\"updateBy\":\"admin\",\"updateTime\":\"2025-02-21 10:37:20\",\"columnId\":\"1892760073768833025\",\"tableId\":\"1892760073735278594\",\"columnName\":\"user_id\",\"columnComment\":\"用户id\",\"columnType\":\"varchar(255)\",\"javaType\":\"String\",\"javaField\":\"userId\",\"isPk\":\"0\",\"isIncrement\":\"0\",\"isRequired\":\"0\",\"isInsert\":\"1\",\"isEdit\":\"1\",\"isList\":\"1\",\"isQuery\":\"1\",\"queryType\":\"EQ\",\"htmlType\":\"input\",\"dictType\":\"\",\"sort\":2,\"query\":true,\"pk\":false,\"insert\":true,\"edit\":true,\"list\":true,\"increment\":false,\"capJavaField\":\"UserId\",\"usableColumn\":false,\"superColumn\":false,\"required\":false},{\"createBy\":\"admin\",\"createTime\":\"2025-02-21 10:15:42\",\"updateBy\":\"admin\",\"updateTime\":\"2025-02-21 10:37:20\",\"columnId\":\"1892760073768833026\",\"tableId\":\"1892760073735278594\",\"columnName\":\"name\",\"columnComment\":\"名字\",\"columnType\":\"varchar(255)', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-02-21 10:37:21');
|
|
INSERT INTO `sys_oper_log` (`oper_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`) VALUES (1892765617367932929, '代码生成', 2, 'com.coin.generator.controller.GenController.editSave()', 'PUT', 1, 'admin', '研发部门', '/tool/gen', '127.0.0.1', '内网IP', '{\"createBy\":null,\"createTime\":null,\"updateBy\":\"admin\",\"updateTime\":\"2025-02-21 10:37:43\",\"params\":{\"treeCode\":null,\"treeName\":null,\"treeParentCode\":null,\"parentMenuId\":null},\"tableId\":\"1892760073663975425\",\"tableName\":\"t_user_passwd\",\"tableComment\":\"用户密码表\",\"subTableName\":null,\"subTableFkName\":null,\"className\":\"UserPasswd\",\"tplCategory\":\"crud\",\"packageName\":\"com.coin.business\",\"moduleName\":\"business\",\"businessName\":\"userPasswd\",\"functionName\":\"用户密码\",\"functionAuthor\":\"coin\",\"genType\":\"0\",\"genPath\":\"/\",\"pkColumn\":null,\"subTable\":null,\"columns\":[{\"createBy\":\"admin\",\"createTime\":\"2025-02-21 10:15:42\",\"updateBy\":\"admin\",\"updateTime\":\"2025-02-21 10:37:43\",\"columnId\":\"1892760073693335554\",\"tableId\":\"1892760073663975425\",\"columnName\":\"id\",\"columnComment\":\"唯一ID\",\"columnType\":\"bigint\",\"javaType\":\"Long\",\"javaField\":\"id\",\"isPk\":\"1\",\"isIncrement\":\"1\",\"isRequired\":\"0\",\"isInsert\":null,\"isEdit\":\"1\",\"isList\":\"1\",\"isQuery\":null,\"queryType\":\"EQ\",\"htmlType\":\"input\",\"dictType\":\"\",\"sort\":1,\"query\":false,\"pk\":true,\"insert\":false,\"edit\":true,\"list\":true,\"increment\":true,\"capJavaField\":\"Id\",\"usableColumn\":false,\"superColumn\":false,\"required\":false},{\"createBy\":\"admin\",\"createTime\":\"2025-02-21 10:15:42\",\"updateBy\":\"admin\",\"updateTime\":\"2025-02-21 10:37:43\",\"columnId\":\"1892760073697529857\",\"tableId\":\"1892760073663975425\",\"columnName\":\"user_id\",\"columnComment\":\"用户id\",\"columnType\":\"varchar(64)\",\"javaType\":\"String\",\"javaField\":\"userId\",\"isPk\":\"0\",\"isIncrement\":\"0\",\"isRequired\":\"0\",\"isInsert\":\"1\",\"isEdit\":\"1\",\"isList\":\"1\",\"isQuery\":\"1\",\"queryType\":\"EQ\",\"htmlType\":\"input\",\"dictType\":\"\",\"sort\":2,\"query\":true,\"pk\":false,\"insert\":true,\"edit\":true,\"list\":true,\"increment\":false,\"capJavaField\":\"UserId\",\"usableColumn\":false,\"superColumn\":false,\"required\":false},{\"createBy\":\"admin\",\"createTime\":\"2025-02-21 10:15:42\",\"updateBy\":\"admin\",\"updateTime\":\"2025-02-21 10:37:43\",\"columnId\":\"1892760073697529858\",\"tableId\":\"1892760073663975425\",\"columnName\":\"pay_passwd\",\"columnComment\":\"支付密码(数字组合)\",\"columnType\":\"varch', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-02-21 10:37:44');
|
|
INSERT INTO `sys_oper_log` (`oper_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`) VALUES (1892765722783375361, '代码生成', 2, 'com.coin.generator.controller.GenController.editSave()', 'PUT', 1, 'admin', '研发部门', '/tool/gen', '127.0.0.1', '内网IP', '{\"createBy\":null,\"createTime\":null,\"updateBy\":\"admin\",\"updateTime\":\"2025-02-21 10:38:08\",\"params\":{\"treeCode\":null,\"treeName\":null,\"treeParentCode\":null,\"parentMenuId\":null},\"tableId\":\"1892760073559117825\",\"tableName\":\"t_user_info\",\"tableComment\":\"用户信息表\",\"subTableName\":null,\"subTableFkName\":null,\"className\":\"UserInfo\",\"tplCategory\":\"crud\",\"packageName\":\"com.coin.business\",\"moduleName\":\"business\",\"businessName\":\"userInfo\",\"functionName\":\"用户信息\",\"functionAuthor\":\"coin\",\"genType\":\"0\",\"genPath\":\"/\",\"pkColumn\":null,\"subTable\":null,\"columns\":[{\"createBy\":\"admin\",\"createTime\":\"2025-02-21 10:15:42\",\"updateBy\":\"admin\",\"updateTime\":\"2025-02-21 10:38:08\",\"columnId\":\"1892760073596866562\",\"tableId\":\"1892760073559117825\",\"columnName\":\"id\",\"columnComment\":\"唯一ID\",\"columnType\":\"bigint\",\"javaType\":\"Long\",\"javaField\":\"id\",\"isPk\":\"1\",\"isIncrement\":\"1\",\"isRequired\":\"0\",\"isInsert\":null,\"isEdit\":\"1\",\"isList\":\"1\",\"isQuery\":null,\"queryType\":\"EQ\",\"htmlType\":\"input\",\"dictType\":\"\",\"sort\":1,\"query\":false,\"pk\":true,\"insert\":false,\"edit\":true,\"list\":true,\"increment\":true,\"capJavaField\":\"Id\",\"usableColumn\":false,\"superColumn\":false,\"required\":false},{\"createBy\":\"admin\",\"createTime\":\"2025-02-21 10:15:42\",\"updateBy\":\"admin\",\"updateTime\":\"2025-02-21 10:38:08\",\"columnId\":\"1892760073601060866\",\"tableId\":\"1892760073559117825\",\"columnName\":\"user_id\",\"columnComment\":\"用户ID\",\"columnType\":\"varchar(255)\",\"javaType\":\"String\",\"javaField\":\"userId\",\"isPk\":\"0\",\"isIncrement\":\"0\",\"isRequired\":\"0\",\"isInsert\":\"1\",\"isEdit\":\"1\",\"isList\":\"1\",\"isQuery\":\"1\",\"queryType\":\"EQ\",\"htmlType\":\"input\",\"dictType\":\"\",\"sort\":2,\"query\":true,\"pk\":false,\"insert\":true,\"edit\":true,\"list\":true,\"increment\":false,\"capJavaField\":\"UserId\",\"usableColumn\":false,\"superColumn\":false,\"required\":false},{\"createBy\":\"admin\",\"createTime\":\"2025-02-21 10:15:42\",\"updateBy\":\"admin\",\"updateTime\":\"2025-02-21 10:38:08\",\"columnId\":\"1892760073605255170\",\"tableId\":\"1892760073559117825\",\"columnName\":\"user_code\",\"columnComment\":\"用户唯一编码\",\"columnType\":\"varchar(255)\",\"', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-02-21 10:38:09');
|
|
INSERT INTO `sys_oper_log` (`oper_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`) VALUES (1892766047779020802, '代码生成', 2, 'com.coin.generator.controller.GenController.editSave()', 'PUT', 1, 'admin', '研发部门', '/tool/gen', '127.0.0.1', '内网IP', '{\"createBy\":null,\"createTime\":null,\"updateBy\":\"admin\",\"updateTime\":\"2025-02-21 10:39:26\",\"params\":{\"treeCode\":null,\"treeName\":null,\"treeParentCode\":null,\"parentMenuId\":null},\"tableId\":\"1892760073458454530\",\"tableName\":\"t_user_friend\",\"tableComment\":\"用户好友表\",\"subTableName\":null,\"subTableFkName\":null,\"className\":\"UserFriend\",\"tplCategory\":\"crud\",\"packageName\":\"com.coin.business\",\"moduleName\":\"business\",\"businessName\":\"userFriend\",\"functionName\":\"用户好友\",\"functionAuthor\":\"coin\",\"genType\":\"0\",\"genPath\":\"/\",\"pkColumn\":null,\"subTable\":null,\"columns\":[{\"createBy\":\"admin\",\"createTime\":\"2025-02-21 10:15:42\",\"updateBy\":\"admin\",\"updateTime\":\"2025-02-21 10:39:26\",\"columnId\":\"1892760073492008961\",\"tableId\":\"1892760073458454530\",\"columnName\":\"id\",\"columnComment\":\"唯一ID\",\"columnType\":\"bigint\",\"javaType\":\"Long\",\"javaField\":\"id\",\"isPk\":\"1\",\"isIncrement\":\"1\",\"isRequired\":\"0\",\"isInsert\":null,\"isEdit\":\"1\",\"isList\":\"1\",\"isQuery\":null,\"queryType\":\"EQ\",\"htmlType\":\"input\",\"dictType\":\"\",\"sort\":1,\"query\":false,\"pk\":true,\"insert\":false,\"edit\":true,\"list\":true,\"increment\":true,\"capJavaField\":\"Id\",\"usableColumn\":false,\"superColumn\":false,\"required\":false},{\"createBy\":\"admin\",\"createTime\":\"2025-02-21 10:15:42\",\"updateBy\":\"admin\",\"updateTime\":\"2025-02-21 10:39:26\",\"columnId\":\"1892760073500397570\",\"tableId\":\"1892760073458454530\",\"columnName\":\"user_id\",\"columnComment\":\"用户id\",\"columnType\":\"varchar(255)\",\"javaType\":\"String\",\"javaField\":\"userId\",\"isPk\":\"0\",\"isIncrement\":\"0\",\"isRequired\":\"0\",\"isInsert\":\"1\",\"isEdit\":\"1\",\"isList\":\"1\",\"isQuery\":\"1\",\"queryType\":\"EQ\",\"htmlType\":\"input\",\"dictType\":\"\",\"sort\":2,\"query\":true,\"pk\":false,\"insert\":true,\"edit\":true,\"list\":true,\"increment\":false,\"capJavaField\":\"UserId\",\"usableColumn\":false,\"superColumn\":false,\"required\":false},{\"createBy\":\"admin\",\"createTime\":\"2025-02-21 10:15:42\",\"updateBy\":\"admin\",\"updateTime\":\"2025-02-21 10:39:26\",\"columnId\":\"1892760073504591874\",\"tableId\":\"1892760073458454530\",\"columnName\":\"friend_id\",\"columnComment\":\"好友id\",\"columnType\":\"varchar(255', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-02-21 10:39:26');
|
|
INSERT INTO `sys_oper_log` (`oper_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`) VALUES (1892766175583657985, '代码生成', 2, 'com.coin.generator.controller.GenController.editSave()', 'PUT', 1, 'admin', '研发部门', '/tool/gen', '127.0.0.1', '内网IP', '{\"createBy\":null,\"createTime\":null,\"updateBy\":\"admin\",\"updateTime\":\"2025-02-21 10:39:56\",\"params\":{\"treeCode\":null,\"treeName\":null,\"treeParentCode\":null,\"parentMenuId\":null},\"tableId\":\"1892760073324236802\",\"tableName\":\"t_user_card\",\"tableComment\":\"用户银行卡表\",\"subTableName\":null,\"subTableFkName\":null,\"className\":\"UserCard\",\"tplCategory\":\"crud\",\"packageName\":\"com.coin.business\",\"moduleName\":\"business\",\"businessName\":\"userCard\",\"functionName\":\"用户银行卡\",\"functionAuthor\":\"coin\",\"genType\":\"0\",\"genPath\":\"/\",\"pkColumn\":null,\"subTable\":null,\"columns\":[{\"createBy\":\"admin\",\"createTime\":\"2025-02-21 10:15:42\",\"updateBy\":\"admin\",\"updateTime\":\"2025-02-21 10:39:56\",\"columnId\":\"1892760073366179842\",\"tableId\":\"1892760073324236802\",\"columnName\":\"id\",\"columnComment\":\"唯一ID\",\"columnType\":\"bigint\",\"javaType\":\"Long\",\"javaField\":\"id\",\"isPk\":\"1\",\"isIncrement\":\"1\",\"isRequired\":\"0\",\"isInsert\":null,\"isEdit\":\"1\",\"isList\":\"1\",\"isQuery\":null,\"queryType\":\"EQ\",\"htmlType\":\"input\",\"dictType\":\"\",\"sort\":1,\"query\":false,\"pk\":true,\"insert\":false,\"edit\":true,\"list\":true,\"increment\":true,\"capJavaField\":\"Id\",\"usableColumn\":false,\"superColumn\":false,\"required\":false},{\"createBy\":\"admin\",\"createTime\":\"2025-02-21 10:15:42\",\"updateBy\":\"admin\",\"updateTime\":\"2025-02-21 10:39:56\",\"columnId\":\"1892760073374568449\",\"tableId\":\"1892760073324236802\",\"columnName\":\"user_id\",\"columnComment\":\"用户ID\",\"columnType\":\"varchar(255)\",\"javaType\":\"String\",\"javaField\":\"userId\",\"isPk\":\"0\",\"isIncrement\":\"0\",\"isRequired\":\"1\",\"isInsert\":\"1\",\"isEdit\":\"1\",\"isList\":\"1\",\"isQuery\":\"1\",\"queryType\":\"EQ\",\"htmlType\":\"input\",\"dictType\":\"\",\"sort\":2,\"query\":true,\"pk\":false,\"insert\":true,\"edit\":true,\"list\":true,\"increment\":false,\"capJavaField\":\"UserId\",\"usableColumn\":false,\"superColumn\":false,\"required\":true},{\"createBy\":\"admin\",\"createTime\":\"2025-02-21 10:15:42\",\"updateBy\":\"admin\",\"updateTime\":\"2025-02-21 10:39:56\",\"columnId\":\"1892760073378762753\",\"tableId\":\"1892760073324236802\",\"columnName\":\"card_num\",\"columnComment\":\"银行卡号\",\"columnType\":\"varchar(64)\",\"jav', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-02-21 10:39:57');
|
|
INSERT INTO `sys_oper_log` (`oper_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`) VALUES (1892766273629708289, '代码生成', 2, 'com.coin.generator.controller.GenController.editSave()', 'PUT', 1, 'admin', '研发部门', '/tool/gen', '127.0.0.1', '内网IP', '{\"createBy\":null,\"createTime\":null,\"updateBy\":\"admin\",\"updateTime\":\"2025-02-21 10:40:20\",\"params\":{\"treeCode\":null,\"treeName\":null,\"treeParentCode\":null,\"parentMenuId\":null},\"tableId\":\"1892760073114521601\",\"tableName\":\"t_user_account\",\"tableComment\":\"用户账户表\",\"subTableName\":null,\"subTableFkName\":null,\"className\":\"UserAccount\",\"tplCategory\":\"crud\",\"packageName\":\"com.coin.business\",\"moduleName\":\"business\",\"businessName\":\"userAccount\",\"functionName\":\"用户账户\",\"functionAuthor\":\"coin\",\"genType\":\"0\",\"genPath\":\"/\",\"pkColumn\":null,\"subTable\":null,\"columns\":[{\"createBy\":\"admin\",\"createTime\":\"2025-02-21 10:15:42\",\"updateBy\":\"admin\",\"updateTime\":\"2025-02-21 10:40:20\",\"columnId\":\"1892760073206796290\",\"tableId\":\"1892760073114521601\",\"columnName\":\"id\",\"columnComment\":\"唯一ID\",\"columnType\":\"bigint\",\"javaType\":\"Long\",\"javaField\":\"id\",\"isPk\":\"1\",\"isIncrement\":\"1\",\"isRequired\":\"0\",\"isInsert\":null,\"isEdit\":\"1\",\"isList\":\"1\",\"isQuery\":null,\"queryType\":\"EQ\",\"htmlType\":\"input\",\"dictType\":\"\",\"sort\":1,\"query\":false,\"pk\":true,\"insert\":false,\"edit\":true,\"list\":true,\"increment\":true,\"capJavaField\":\"Id\",\"usableColumn\":false,\"superColumn\":false,\"required\":false},{\"createBy\":\"admin\",\"createTime\":\"2025-02-21 10:15:42\",\"updateBy\":\"admin\",\"updateTime\":\"2025-02-21 10:40:20\",\"columnId\":\"1892760073215184898\",\"tableId\":\"1892760073114521601\",\"columnName\":\"user_id\",\"columnComment\":\"用户id\",\"columnType\":\"varchar(255)\",\"javaType\":\"String\",\"javaField\":\"userId\",\"isPk\":\"0\",\"isIncrement\":\"0\",\"isRequired\":\"0\",\"isInsert\":\"1\",\"isEdit\":\"1\",\"isList\":\"1\",\"isQuery\":\"1\",\"queryType\":\"EQ\",\"htmlType\":\"input\",\"dictType\":\"\",\"sort\":2,\"query\":true,\"pk\":false,\"insert\":true,\"edit\":true,\"list\":true,\"increment\":false,\"capJavaField\":\"UserId\",\"usableColumn\":false,\"superColumn\":false,\"required\":false},{\"createBy\":\"admin\",\"createTime\":\"2025-02-21 10:15:42\",\"updateBy\":\"admin\",\"updateTime\":\"2025-02-21 10:40:20\",\"columnId\":\"1892760073223573505\",\"tableId\":\"1892760073114521601\",\"columnName\":\"account_id\",\"columnComment\":\"账户唯一ID\",\"columnType\":\"varch', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-02-21 10:40:20');
|
|
INSERT INTO `sys_oper_log` (`oper_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`) VALUES (1892766325769101313, '代码生成', 2, 'com.coin.generator.controller.GenController.editSave()', 'PUT', 1, 'admin', '研发部门', '/tool/gen', '127.0.0.1', '内网IP', '{\"createBy\":null,\"createTime\":null,\"updateBy\":\"admin\",\"updateTime\":\"2025-02-21 10:40:32\",\"params\":{\"treeCode\":null,\"treeName\":null,\"treeParentCode\":null,\"parentMenuId\":null},\"tableId\":\"1892760073458454530\",\"tableName\":\"t_user_friend\",\"tableComment\":\"用户好友表\",\"subTableName\":null,\"subTableFkName\":null,\"className\":\"UserFriend\",\"tplCategory\":\"crud\",\"packageName\":\"com.coin.business\",\"moduleName\":\"business\",\"businessName\":\"userFriend\",\"functionName\":\"用户好友\",\"functionAuthor\":\"coin\",\"genType\":\"0\",\"genPath\":\"/\",\"pkColumn\":null,\"subTable\":null,\"columns\":[{\"createBy\":\"admin\",\"createTime\":\"2025-02-21 10:15:42\",\"updateBy\":\"admin\",\"updateTime\":\"2025-02-21 10:40:32\",\"columnId\":\"1892760073492008961\",\"tableId\":\"1892760073458454530\",\"columnName\":\"id\",\"columnComment\":\"唯一ID\",\"columnType\":\"bigint\",\"javaType\":\"Long\",\"javaField\":\"id\",\"isPk\":\"1\",\"isIncrement\":\"1\",\"isRequired\":\"0\",\"isInsert\":null,\"isEdit\":\"1\",\"isList\":\"1\",\"isQuery\":null,\"queryType\":\"EQ\",\"htmlType\":\"input\",\"dictType\":\"\",\"sort\":1,\"query\":false,\"pk\":true,\"insert\":false,\"edit\":true,\"list\":true,\"increment\":true,\"capJavaField\":\"Id\",\"usableColumn\":false,\"superColumn\":false,\"required\":false},{\"createBy\":\"admin\",\"createTime\":\"2025-02-21 10:15:42\",\"updateBy\":\"admin\",\"updateTime\":\"2025-02-21 10:40:32\",\"columnId\":\"1892760073500397570\",\"tableId\":\"1892760073458454530\",\"columnName\":\"user_id\",\"columnComment\":\"用户id\",\"columnType\":\"varchar(255)\",\"javaType\":\"String\",\"javaField\":\"userId\",\"isPk\":\"0\",\"isIncrement\":\"0\",\"isRequired\":\"0\",\"isInsert\":\"1\",\"isEdit\":\"1\",\"isList\":\"1\",\"isQuery\":\"1\",\"queryType\":\"EQ\",\"htmlType\":\"input\",\"dictType\":\"\",\"sort\":2,\"query\":true,\"pk\":false,\"insert\":true,\"edit\":true,\"list\":true,\"increment\":false,\"capJavaField\":\"UserId\",\"usableColumn\":false,\"superColumn\":false,\"required\":false},{\"createBy\":\"admin\",\"createTime\":\"2025-02-21 10:15:42\",\"updateBy\":\"admin\",\"updateTime\":\"2025-02-21 10:40:32\",\"columnId\":\"1892760073504591874\",\"tableId\":\"1892760073458454530\",\"columnName\":\"friend_id\",\"columnComment\":\"好友id\",\"columnType\":\"varchar(255', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-02-21 10:40:33');
|
|
INSERT INTO `sys_oper_log` (`oper_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`) VALUES (1892766422342950913, '代码生成', 2, 'com.coin.generator.controller.GenController.editSave()', 'PUT', 1, 'admin', '研发部门', '/tool/gen', '127.0.0.1', '内网IP', '{\"createBy\":null,\"createTime\":null,\"updateBy\":\"admin\",\"updateTime\":\"2025-02-21 10:40:55\",\"params\":{\"treeCode\":null,\"treeName\":null,\"treeParentCode\":null,\"parentMenuId\":null},\"tableId\":\"1892760073559117825\",\"tableName\":\"t_user_info\",\"tableComment\":\"用户信息表\",\"subTableName\":null,\"subTableFkName\":null,\"className\":\"UserInfo\",\"tplCategory\":\"crud\",\"packageName\":\"com.coin.business\",\"moduleName\":\"business\",\"businessName\":\"userInfo\",\"functionName\":\"用户信息\",\"functionAuthor\":\"coin\",\"genType\":\"0\",\"genPath\":\"/\",\"pkColumn\":null,\"subTable\":null,\"columns\":[{\"createBy\":\"admin\",\"createTime\":\"2025-02-21 10:15:42\",\"updateBy\":\"admin\",\"updateTime\":\"2025-02-21 10:40:55\",\"columnId\":\"1892760073596866562\",\"tableId\":\"1892760073559117825\",\"columnName\":\"id\",\"columnComment\":\"唯一ID\",\"columnType\":\"bigint\",\"javaType\":\"Long\",\"javaField\":\"id\",\"isPk\":\"1\",\"isIncrement\":\"1\",\"isRequired\":\"0\",\"isInsert\":null,\"isEdit\":\"1\",\"isList\":\"1\",\"isQuery\":null,\"queryType\":\"EQ\",\"htmlType\":\"input\",\"dictType\":\"\",\"sort\":1,\"query\":false,\"pk\":true,\"insert\":false,\"edit\":true,\"list\":true,\"increment\":true,\"capJavaField\":\"Id\",\"usableColumn\":false,\"superColumn\":false,\"required\":false},{\"createBy\":\"admin\",\"createTime\":\"2025-02-21 10:15:42\",\"updateBy\":\"admin\",\"updateTime\":\"2025-02-21 10:40:55\",\"columnId\":\"1892760073601060866\",\"tableId\":\"1892760073559117825\",\"columnName\":\"user_id\",\"columnComment\":\"用户ID\",\"columnType\":\"varchar(255)\",\"javaType\":\"String\",\"javaField\":\"userId\",\"isPk\":\"0\",\"isIncrement\":\"0\",\"isRequired\":\"0\",\"isInsert\":\"1\",\"isEdit\":\"1\",\"isList\":\"1\",\"isQuery\":\"1\",\"queryType\":\"EQ\",\"htmlType\":\"input\",\"dictType\":\"\",\"sort\":2,\"query\":true,\"pk\":false,\"insert\":true,\"edit\":true,\"list\":true,\"increment\":false,\"capJavaField\":\"UserId\",\"usableColumn\":false,\"superColumn\":false,\"required\":false},{\"createBy\":\"admin\",\"createTime\":\"2025-02-21 10:15:42\",\"updateBy\":\"admin\",\"updateTime\":\"2025-02-21 10:40:55\",\"columnId\":\"1892760073605255170\",\"tableId\":\"1892760073559117825\",\"columnName\":\"user_code\",\"columnComment\":\"用户唯一编码\",\"columnType\":\"varchar(255)\",\"', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-02-21 10:40:56');
|
|
INSERT INTO `sys_oper_log` (`oper_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`) VALUES (1892766476281700354, '代码生成', 2, 'com.coin.generator.controller.GenController.editSave()', 'PUT', 1, 'admin', '研发部门', '/tool/gen', '127.0.0.1', '内网IP', '{\"createBy\":null,\"createTime\":null,\"updateBy\":\"admin\",\"updateTime\":\"2025-02-21 10:41:08\",\"params\":{\"treeCode\":null,\"treeName\":null,\"treeParentCode\":null,\"parentMenuId\":null},\"tableId\":\"1892760073663975425\",\"tableName\":\"t_user_passwd\",\"tableComment\":\"用户密码表\",\"subTableName\":null,\"subTableFkName\":null,\"className\":\"UserPasswd\",\"tplCategory\":\"crud\",\"packageName\":\"com.coin.business\",\"moduleName\":\"business\",\"businessName\":\"userPasswd\",\"functionName\":\"用户密码\",\"functionAuthor\":\"coin\",\"genType\":\"0\",\"genPath\":\"/\",\"pkColumn\":null,\"subTable\":null,\"columns\":[{\"createBy\":\"admin\",\"createTime\":\"2025-02-21 10:15:42\",\"updateBy\":\"admin\",\"updateTime\":\"2025-02-21 10:41:08\",\"columnId\":\"1892760073693335554\",\"tableId\":\"1892760073663975425\",\"columnName\":\"id\",\"columnComment\":\"唯一ID\",\"columnType\":\"bigint\",\"javaType\":\"Long\",\"javaField\":\"id\",\"isPk\":\"1\",\"isIncrement\":\"1\",\"isRequired\":\"0\",\"isInsert\":null,\"isEdit\":\"1\",\"isList\":\"1\",\"isQuery\":null,\"queryType\":\"EQ\",\"htmlType\":\"input\",\"dictType\":\"\",\"sort\":1,\"query\":false,\"pk\":true,\"insert\":false,\"edit\":true,\"list\":true,\"increment\":true,\"capJavaField\":\"Id\",\"usableColumn\":false,\"superColumn\":false,\"required\":false},{\"createBy\":\"admin\",\"createTime\":\"2025-02-21 10:15:42\",\"updateBy\":\"admin\",\"updateTime\":\"2025-02-21 10:41:08\",\"columnId\":\"1892760073697529857\",\"tableId\":\"1892760073663975425\",\"columnName\":\"user_id\",\"columnComment\":\"用户id\",\"columnType\":\"varchar(64)\",\"javaType\":\"String\",\"javaField\":\"userId\",\"isPk\":\"0\",\"isIncrement\":\"0\",\"isRequired\":\"0\",\"isInsert\":\"1\",\"isEdit\":\"1\",\"isList\":\"1\",\"isQuery\":\"1\",\"queryType\":\"EQ\",\"htmlType\":\"input\",\"dictType\":\"\",\"sort\":2,\"query\":true,\"pk\":false,\"insert\":true,\"edit\":true,\"list\":true,\"increment\":false,\"capJavaField\":\"UserId\",\"usableColumn\":false,\"superColumn\":false,\"required\":false},{\"createBy\":\"admin\",\"createTime\":\"2025-02-21 10:15:42\",\"updateBy\":\"admin\",\"updateTime\":\"2025-02-21 10:41:08\",\"columnId\":\"1892760073697529858\",\"tableId\":\"1892760073663975425\",\"columnName\":\"pay_passwd\",\"columnComment\":\"支付密码(数字组合)\",\"columnType\":\"varch', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-02-21 10:41:09');
|
|
INSERT INTO `sys_oper_log` (`oper_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`) VALUES (1892766581072191490, '代码生成', 2, 'com.coin.generator.controller.GenController.editSave()', 'PUT', 1, 'admin', '研发部门', '/tool/gen', '127.0.0.1', '内网IP', '{\"createBy\":null,\"createTime\":null,\"updateBy\":\"admin\",\"updateTime\":\"2025-02-21 10:41:33\",\"params\":{\"treeCode\":null,\"treeName\":null,\"treeParentCode\":null,\"parentMenuId\":null},\"tableId\":\"1892760073735278594\",\"tableName\":\"t_user_register\",\"tableComment\":\"用户注册表\",\"subTableName\":null,\"subTableFkName\":null,\"className\":\"UserRegister\",\"tplCategory\":\"crud\",\"packageName\":\"com.coin.business\",\"moduleName\":\"business\",\"businessName\":\"userRegister\",\"functionName\":\"用户注册\",\"functionAuthor\":\"coin\",\"genType\":\"0\",\"genPath\":\"/\",\"pkColumn\":null,\"subTable\":null,\"columns\":[{\"createBy\":\"admin\",\"createTime\":\"2025-02-21 10:15:42\",\"updateBy\":\"admin\",\"updateTime\":\"2025-02-21 10:41:33\",\"columnId\":\"1892760073764638722\",\"tableId\":\"1892760073735278594\",\"columnName\":\"id\",\"columnComment\":\"唯一ID\",\"columnType\":\"bigint\",\"javaType\":\"Long\",\"javaField\":\"id\",\"isPk\":\"1\",\"isIncrement\":\"1\",\"isRequired\":\"0\",\"isInsert\":null,\"isEdit\":\"1\",\"isList\":\"1\",\"isQuery\":null,\"queryType\":\"EQ\",\"htmlType\":\"input\",\"dictType\":\"\",\"sort\":1,\"query\":false,\"pk\":true,\"insert\":false,\"edit\":true,\"list\":true,\"increment\":true,\"capJavaField\":\"Id\",\"usableColumn\":false,\"superColumn\":false,\"required\":false},{\"createBy\":\"admin\",\"createTime\":\"2025-02-21 10:15:42\",\"updateBy\":\"admin\",\"updateTime\":\"2025-02-21 10:41:33\",\"columnId\":\"1892760073768833025\",\"tableId\":\"1892760073735278594\",\"columnName\":\"user_id\",\"columnComment\":\"用户id\",\"columnType\":\"varchar(255)\",\"javaType\":\"String\",\"javaField\":\"userId\",\"isPk\":\"0\",\"isIncrement\":\"0\",\"isRequired\":\"0\",\"isInsert\":\"1\",\"isEdit\":\"1\",\"isList\":\"1\",\"isQuery\":\"1\",\"queryType\":\"EQ\",\"htmlType\":\"input\",\"dictType\":\"\",\"sort\":2,\"query\":true,\"pk\":false,\"insert\":true,\"edit\":true,\"list\":true,\"increment\":false,\"capJavaField\":\"UserId\",\"usableColumn\":false,\"superColumn\":false,\"required\":false},{\"createBy\":\"admin\",\"createTime\":\"2025-02-21 10:15:42\",\"updateBy\":\"admin\",\"updateTime\":\"2025-02-21 10:41:33\",\"columnId\":\"1892760073768833026\",\"tableId\":\"1892760073735278594\",\"columnName\":\"name\",\"columnComment\":\"名字\",\"columnType\":\"varchar(255)', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-02-21 10:41:33');
|
|
INSERT INTO `sys_oper_log` (`oper_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`) VALUES (1892766618397302786, '代码生成', 8, 'com.coin.generator.controller.GenController.batchGenCode()', 'GET', 1, 'admin', '研发部门', '/tool/gen/batchGenCode', '127.0.0.1', '内网IP', '{\"tables\":\"t_user_account,t_user_card,t_user_friend,t_user_info,t_user_passwd,t_user_register\"}', '', 0, '', '2025-02-21 10:41:42');
|
|
INSERT INTO `sys_oper_log` (`oper_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`) VALUES (1892770074432487425, '用户账户', 1, 'com.coin.business.controller.UserAccountController.add()', 'POST', 1, 'admin', '研发部门', '/business/userAccount', '127.0.0.1', '内网IP', '{\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"id\":\"1892770074247938049\",\"userId\":\"12\",\"accountId\":\"12\",\"accountCode\":\"234\",\"accountName\":\"啊哈\",\"accountAmount\":\"789.1234\",\"status\":null}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-02-21 10:55:26');
|
|
INSERT INTO `sys_oper_log` (`oper_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`) VALUES (1892770113695367170, '用户账户', 2, 'com.coin.business.controller.UserAccountController.edit()', 'PUT', 1, 'admin', '研发部门', '/business/userAccount', '127.0.0.1', '内网IP', '{\"createBy\":null,\"createTime\":\"2025-02-21 10:55:26\",\"updateBy\":null,\"updateTime\":\"2025-02-21 10:55:26\",\"id\":\"1892770074247938049\",\"userId\":\"12\",\"accountId\":\"12\",\"accountCode\":\"234-fix \",\"accountName\":\"啊哈\",\"accountAmount\":\"789.123400\",\"status\":\"0\"}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-02-21 10:55:36');
|
|
INSERT INTO `sys_oper_log` (`oper_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`) VALUES (1892770210055307266, '用户银行卡', 1, 'com.coin.business.controller.UserCardController.add()', 'POST', 1, 'admin', '研发部门', '/business/userCard', '127.0.0.1', '内网IP', '{\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"id\":\"1892770210013364226\",\"userId\":\"12\",\"cardNum\":\"22\",\"cardAmount\":\"234.12342\",\"bankName\":\"芜湖\",\"deptName\":\"下至\",\"status\":null}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-02-21 10:55:59');
|
|
INSERT INTO `sys_oper_log` (`oper_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`) VALUES (1892770244905779201, '用户银行卡', 2, 'com.coin.business.controller.UserCardController.edit()', 'PUT', 1, 'admin', '研发部门', '/business/userCard', '127.0.0.1', '内网IP', '{\"createBy\":null,\"createTime\":\"2025-02-21 10:55:59\",\"updateBy\":null,\"updateTime\":\"2025-02-21 10:55:59\",\"id\":\"1892770210013364226\",\"userId\":\"12\",\"cardNum\":\"22-234-134\",\"cardAmount\":\"234.123420\",\"bankName\":\"芜湖\",\"deptName\":\"下至\",\"status\":\"0\"}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-02-21 10:56:07');
|
|
INSERT INTO `sys_oper_log` (`oper_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`) VALUES (1892770275633250305, '用户好友', 1, 'com.coin.business.controller.UserFriendController.add()', 'POST', 1, 'admin', '研发部门', '/business/userFriend', '127.0.0.1', '内网IP', '{\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"id\":\"1892770275608084481\",\"userId\":\"1\",\"friendId\":\"2\",\"status\":null,\"delFlag\":null}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-02-21 10:56:14');
|
|
INSERT INTO `sys_oper_log` (`oper_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`) VALUES (1892770301025566722, '用户好友', 1, 'com.coin.business.controller.UserFriendController.add()', 'POST', 1, 'admin', '研发部门', '/business/userFriend', '127.0.0.1', '内网IP', '{\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"id\":\"1892770300983623682\",\"userId\":\"2\",\"friendId\":\"4\",\"status\":null,\"delFlag\":null}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-02-21 10:56:20');
|
|
INSERT INTO `sys_oper_log` (`oper_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`) VALUES (1892770321435049986, '用户好友', 2, 'com.coin.business.controller.UserFriendController.edit()', 'PUT', 1, 'admin', '研发部门', '/business/userFriend', '127.0.0.1', '内网IP', '{\"createBy\":null,\"createTime\":\"2025-02-21 10:56:14\",\"updateBy\":null,\"updateTime\":null,\"id\":\"1892770275608084481\",\"userId\":\"1\",\"friendId\":\"4\",\"status\":\"0\",\"delFlag\":\"0\"}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-02-21 10:56:25');
|
|
INSERT INTO `sys_oper_log` (`oper_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`) VALUES (1892770402997485569, '用户信息', 1, 'com.coin.business.controller.UserInfoController.add()', 'POST', 1, 'admin', '研发部门', '/business/userInfo', '127.0.0.1', '内网IP', '{\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"id\":\"1892770402968125442\",\"userId\":\"13\",\"userCode\":\"CODE\",\"name\":\"SI\",\"gender\":null,\"idCard\":null,\"phone\":null,\"age\":\"12\",\"addr\":null,\"status\":null,\"delFlag\":null}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-02-21 10:56:45');
|
|
INSERT INTO `sys_oper_log` (`oper_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`) VALUES (1892770446748270593, '用户信息', 2, 'com.coin.business.controller.UserInfoController.edit()', 'PUT', 1, 'admin', '研发部门', '/business/userInfo', '127.0.0.1', '内网IP', '{\"createBy\":null,\"createTime\":\"2025-02-21 10:56:45\",\"updateBy\":null,\"updateTime\":\"2025-02-21 10:56:45\",\"id\":\"1892770402968125442\",\"userId\":\"13\",\"userCode\":\"CODE\",\"name\":\"SI\",\"gender\":null,\"idCard\":null,\"phone\":\"22334\",\"age\":\"12\",\"addr\":null,\"status\":\"0\",\"delFlag\":\"0\"}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-02-21 10:56:55');
|
|
INSERT INTO `sys_oper_log` (`oper_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`) VALUES (1892770517925609473, '用户密码', 1, 'com.coin.business.controller.UserPasswdController.add()', 'POST', 1, 'admin', '研发部门', '/business/userPasswd', '127.0.0.1', '内网IP', '{\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"id\":\"1892770517887860737\",\"userId\":\"1\",\"payPasswd\":\"234123\",\"phoneLock\":\"23WEFWE21\",\"loginPasswd\":\"2231\",\"payStatus\":null,\"delFlag\":null}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-02-21 10:57:12');
|
|
INSERT INTO `sys_oper_log` (`oper_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`) VALUES (1892770543548612609, '用户密码', 2, 'com.coin.business.controller.UserPasswdController.edit()', 'PUT', 1, 'admin', '研发部门', '/business/userPasswd', '127.0.0.1', '内网IP', '{\"createBy\":null,\"createTime\":\"2025-02-21 10:57:12\",\"updateBy\":null,\"updateTime\":\"2025-02-21 10:57:12\",\"id\":\"1892770517887860737\",\"userId\":\"1\",\"payPasswd\":\"234123\",\"phoneLock\":\"23WEFWE2123-12\",\"loginPasswd\":\"2231\",\"payStatus\":\"0\",\"delFlag\":\"0\"}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-02-21 10:57:18');
|
|
INSERT INTO `sys_oper_log` (`oper_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`) VALUES (1892770801930321921, '菜单管理', 1, 'com.coin.web.controller.system.SysMenuController.add()', 'POST', 1, 'admin', '研发部门', '/system/menu', '127.0.0.1', '内网IP', '{\"createBy\":\"admin\",\"createTime\":\"2025-02-21 10:58:19\",\"updateBy\":\"admin\",\"updateTime\":\"2025-02-21 10:58:19\",\"parentName\":null,\"parentId\":0,\"children\":[],\"menuId\":\"1892770801909350401\",\"menuName\":\"用户相关\",\"orderNum\":6,\"path\":\"/user\",\"component\":null,\"queryParam\":null,\"isFrame\":\"1\",\"isCache\":\"0\",\"menuType\":\"M\",\"visible\":\"0\",\"status\":\"0\",\"icon\":\"people\",\"remark\":null}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-02-21 10:58:20');
|
|
INSERT INTO `sys_oper_log` (`oper_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`) VALUES (1892770885174673410, '菜单管理', 2, 'com.coin.web.controller.system.SysMenuController.edit()', 'PUT', 1, 'admin', '研发部门', '/system/menu', '127.0.0.1', '内网IP', '{\"createBy\":\"admin\",\"createTime\":\"2025-02-20 21:48:08\",\"updateBy\":\"admin\",\"updateTime\":\"2025-02-21 10:58:39\",\"parentName\":null,\"parentId\":\"1892770801909350401\",\"children\":[],\"menuId\":\"1892766618229530626\",\"menuName\":\"用户注册\",\"orderNum\":1,\"path\":\"userRegister\",\"component\":\"business/userRegister/index\",\"queryParam\":null,\"isFrame\":\"1\",\"isCache\":\"0\",\"menuType\":\"C\",\"visible\":\"0\",\"status\":\"0\",\"perms\":\"business:userRegister:list\",\"icon\":\"#\",\"remark\":\"用户注册菜单\"}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-02-21 10:58:40');
|
|
INSERT INTO `sys_oper_log` (`oper_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`) VALUES (1892770957794852866, '菜单管理', 2, 'com.coin.web.controller.system.SysMenuController.edit()', 'PUT', 1, 'admin', '研发部门', '/system/menu', '127.0.0.1', '内网IP', '{\"createBy\":\"admin\",\"createTime\":\"2025-02-20 21:48:08\",\"updateBy\":\"admin\",\"updateTime\":\"2025-02-21 10:58:56\",\"parentName\":null,\"parentId\":\"1892770801909350401\",\"children\":[],\"menuId\":\"1892766617885597698\",\"menuName\":\"用户信息\",\"orderNum\":2,\"path\":\"userInfo\",\"component\":\"business/userInfo/index\",\"queryParam\":null,\"isFrame\":\"1\",\"isCache\":\"0\",\"menuType\":\"C\",\"visible\":\"0\",\"status\":\"0\",\"perms\":\"business:userInfo:list\",\"icon\":\"#\",\"remark\":\"用户信息菜单\"}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-02-21 10:58:57');
|
|
INSERT INTO `sys_oper_log` (`oper_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`) VALUES (1892771043346071553, '菜单管理', 2, 'com.coin.web.controller.system.SysMenuController.edit()', 'PUT', 1, 'admin', '研发部门', '/system/menu', '127.0.0.1', '内网IP', '{\"createBy\":\"admin\",\"createTime\":\"2025-02-20 21:48:08\",\"updateBy\":\"admin\",\"updateTime\":\"2025-02-21 10:59:17\",\"parentName\":null,\"parentId\":\"1892770801909350401\",\"children\":[],\"menuId\":\"1892766617294200833\",\"menuName\":\"用户账户\",\"orderNum\":3,\"path\":\"userAccount\",\"component\":\"business/userAccount/index\",\"queryParam\":null,\"isFrame\":\"1\",\"isCache\":\"0\",\"menuType\":\"C\",\"visible\":\"0\",\"status\":\"0\",\"perms\":\"business:userAccount:list\",\"icon\":\"#\",\"remark\":\"用户账户菜单\"}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-02-21 10:59:17');
|
|
INSERT INTO `sys_oper_log` (`oper_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`) VALUES (1892771111889387521, '菜单管理', 2, 'com.coin.web.controller.system.SysMenuController.edit()', 'PUT', 1, 'admin', '研发部门', '/system/menu', '127.0.0.1', '内网IP', '{\"createBy\":\"admin\",\"createTime\":\"2025-02-20 21:48:08\",\"updateBy\":\"admin\",\"updateTime\":\"2025-02-21 10:59:33\",\"parentName\":null,\"parentId\":\"1892770801909350401\",\"children\":[],\"menuId\":\"1892766618061758465\",\"menuName\":\"用户密码\",\"orderNum\":4,\"path\":\"userPasswd\",\"component\":\"business/userPasswd/index\",\"queryParam\":null,\"isFrame\":\"1\",\"isCache\":\"0\",\"menuType\":\"C\",\"visible\":\"0\",\"status\":\"0\",\"perms\":\"business:userPasswd:list\",\"icon\":\"#\",\"remark\":\"用户密码菜单\"}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-02-21 10:59:34');
|
|
INSERT INTO `sys_oper_log` (`oper_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`) VALUES (1892771162950844418, '菜单管理', 2, 'com.coin.web.controller.system.SysMenuController.edit()', 'PUT', 1, 'admin', '研发部门', '/system/menu', '127.0.0.1', '内网IP', '{\"createBy\":\"admin\",\"createTime\":\"2025-02-20 21:48:08\",\"updateBy\":\"admin\",\"updateTime\":\"2025-02-21 10:59:45\",\"parentName\":null,\"parentId\":\"1892770801909350401\",\"children\":[],\"menuId\":\"1892766617562636289\",\"menuName\":\"用户银行卡\",\"orderNum\":5,\"path\":\"userCard\",\"component\":\"business/userCard/index\",\"queryParam\":null,\"isFrame\":\"1\",\"isCache\":\"0\",\"menuType\":\"C\",\"visible\":\"0\",\"status\":\"0\",\"perms\":\"business:userCard:list\",\"icon\":\"#\",\"remark\":\"用户银行卡菜单\"}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-02-21 10:59:46');
|
|
INSERT INTO `sys_oper_log` (`oper_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`) VALUES (1892771203539124225, '菜单管理', 2, 'com.coin.web.controller.system.SysMenuController.edit()', 'PUT', 1, 'admin', '研发部门', '/system/menu', '127.0.0.1', '内网IP', '{\"createBy\":\"admin\",\"createTime\":\"2025-02-20 21:48:08\",\"updateBy\":\"admin\",\"updateTime\":\"2025-02-21 10:59:55\",\"parentName\":null,\"parentId\":\"1892770801909350401\",\"children\":[],\"menuId\":\"1892766617747185666\",\"menuName\":\"用户好友\",\"orderNum\":6,\"path\":\"userFriend\",\"component\":\"business/userFriend/index\",\"queryParam\":null,\"isFrame\":\"1\",\"isCache\":\"0\",\"menuType\":\"C\",\"visible\":\"0\",\"status\":\"0\",\"perms\":\"business:userFriend:list\",\"icon\":\"#\",\"remark\":\"用户好友菜单\"}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-02-21 10:59:56');
|
|
INSERT INTO `sys_oper_log` (`oper_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`) VALUES (1892771301211881473, '菜单管理', 2, 'com.coin.web.controller.system.SysMenuController.edit()', 'PUT', 1, 'admin', '研发部门', '/system/menu', '127.0.0.1', '内网IP', '{\"createBy\":\"admin\",\"createTime\":\"2025-02-19 05:35:30\",\"updateBy\":\"admin\",\"updateTime\":\"2025-02-21 11:00:18\",\"parentName\":null,\"parentId\":0,\"children\":[],\"menuId\":4,\"menuName\":\"PLUS官网\",\"orderNum\":4,\"path\":\"https://gitee.com/dromara/RuoYi-Vue-Plus\",\"component\":null,\"queryParam\":\"\",\"isFrame\":\"0\",\"isCache\":\"0\",\"menuType\":\"M\",\"visible\":\"1\",\"status\":\"1\",\"perms\":\"\",\"icon\":\"guide\",\"remark\":\"RuoYi-Vue-Plus官网地址\"}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-02-21 11:00:19');
|
|
INSERT INTO `sys_oper_log` (`oper_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`) VALUES (1892771401086648321, '菜单管理', 2, 'com.coin.web.controller.system.SysMenuController.edit()', 'PUT', 1, 'admin', '研发部门', '/system/menu', '127.0.0.1', '内网IP', '{\"createBy\":\"admin\",\"createTime\":\"2025-02-20 21:48:08\",\"updateBy\":\"admin\",\"updateTime\":\"2025-02-21 11:00:42\",\"parentName\":null,\"parentId\":\"1892770801909350401\",\"children\":[],\"menuId\":\"1892766618229530626\",\"menuName\":\"用户注册\",\"orderNum\":1,\"path\":\"userRegister\",\"component\":\"business/userRegister/index\",\"queryParam\":null,\"isFrame\":\"1\",\"isCache\":\"0\",\"menuType\":\"C\",\"visible\":\"0\",\"status\":\"0\",\"perms\":\"business:userRegister:list\",\"icon\":\"redis-list\",\"remark\":\"用户注册菜单\"}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-02-21 11:00:43');
|
|
INSERT INTO `sys_oper_log` (`oper_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`) VALUES (1892771431478575105, '菜单管理', 2, 'com.coin.web.controller.system.SysMenuController.edit()', 'PUT', 1, 'admin', '研发部门', '/system/menu', '127.0.0.1', '内网IP', '{\"createBy\":\"admin\",\"createTime\":\"2025-02-20 21:48:08\",\"updateBy\":\"admin\",\"updateTime\":\"2025-02-21 11:00:49\",\"parentName\":null,\"parentId\":\"1892770801909350401\",\"children\":[],\"menuId\":\"1892766617885597698\",\"menuName\":\"用户信息\",\"orderNum\":2,\"path\":\"userInfo\",\"component\":\"business/userInfo/index\",\"queryParam\":null,\"isFrame\":\"1\",\"isCache\":\"0\",\"menuType\":\"C\",\"visible\":\"0\",\"status\":\"0\",\"perms\":\"business:userInfo:list\",\"icon\":\"documentation\",\"remark\":\"用户信息菜单\"}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-02-21 11:00:50');
|
|
INSERT INTO `sys_oper_log` (`oper_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`) VALUES (1892771461908250626, '菜单管理', 2, 'com.coin.web.controller.system.SysMenuController.edit()', 'PUT', 1, 'admin', '研发部门', '/system/menu', '127.0.0.1', '内网IP', '{\"createBy\":\"admin\",\"createTime\":\"2025-02-20 21:48:08\",\"updateBy\":\"admin\",\"updateTime\":\"2025-02-21 11:00:57\",\"parentName\":null,\"parentId\":\"1892770801909350401\",\"children\":[],\"menuId\":\"1892766617294200833\",\"menuName\":\"用户账户\",\"orderNum\":3,\"path\":\"userAccount\",\"component\":\"business/userAccount/index\",\"queryParam\":null,\"isFrame\":\"1\",\"isCache\":\"0\",\"menuType\":\"C\",\"visible\":\"0\",\"status\":\"0\",\"perms\":\"business:userAccount:list\",\"icon\":\"dict\",\"remark\":\"用户账户菜单\"}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-02-21 11:00:57');
|
|
INSERT INTO `sys_oper_log` (`oper_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`) VALUES (1892771510033694722, '菜单管理', 2, 'com.coin.web.controller.system.SysMenuController.edit()', 'PUT', 1, 'admin', '研发部门', '/system/menu', '127.0.0.1', '内网IP', '{\"createBy\":\"admin\",\"createTime\":\"2025-02-20 21:48:08\",\"updateBy\":\"admin\",\"updateTime\":\"2025-02-21 11:01:08\",\"parentName\":null,\"parentId\":\"1892770801909350401\",\"children\":[],\"menuId\":\"1892766618061758465\",\"menuName\":\"用户密码\",\"orderNum\":4,\"path\":\"userPasswd\",\"component\":\"business/userPasswd/index\",\"queryParam\":null,\"isFrame\":\"1\",\"isCache\":\"0\",\"menuType\":\"C\",\"visible\":\"0\",\"status\":\"0\",\"perms\":\"business:userPasswd:list\",\"icon\":\"lock\",\"remark\":\"用户密码菜单\"}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-02-21 11:01:09');
|
|
INSERT INTO `sys_oper_log` (`oper_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`) VALUES (1892771598021804034, '菜单管理', 2, 'com.coin.web.controller.system.SysMenuController.edit()', 'PUT', 1, 'admin', '研发部门', '/system/menu', '127.0.0.1', '内网IP', '{\"createBy\":\"admin\",\"createTime\":\"2025-02-20 21:48:08\",\"updateBy\":\"admin\",\"updateTime\":\"2025-02-21 11:01:29\",\"parentName\":null,\"parentId\":\"1892770801909350401\",\"children\":[],\"menuId\":\"1892766617562636289\",\"menuName\":\"用户银行卡\",\"orderNum\":5,\"path\":\"userCard\",\"component\":\"business/userCard/index\",\"queryParam\":null,\"isFrame\":\"1\",\"isCache\":\"0\",\"menuType\":\"C\",\"visible\":\"0\",\"status\":\"0\",\"perms\":\"business:userCard:list\",\"icon\":\"table\",\"remark\":\"用户银行卡菜单\"}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-02-21 11:01:30');
|
|
INSERT INTO `sys_oper_log` (`oper_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`) VALUES (1892771628061409281, '菜单管理', 2, 'com.coin.web.controller.system.SysMenuController.edit()', 'PUT', 1, 'admin', '研发部门', '/system/menu', '127.0.0.1', '内网IP', '{\"createBy\":\"admin\",\"createTime\":\"2025-02-20 21:48:08\",\"updateBy\":\"admin\",\"updateTime\":\"2025-02-21 11:01:36\",\"parentName\":null,\"parentId\":\"1892770801909350401\",\"children\":[],\"menuId\":\"1892766618061758465\",\"menuName\":\"用户密码\",\"orderNum\":4,\"path\":\"userPasswd\",\"component\":\"business/userPasswd/index\",\"queryParam\":null,\"isFrame\":\"1\",\"isCache\":\"0\",\"menuType\":\"C\",\"visible\":\"0\",\"status\":\"0\",\"perms\":\"business:userPasswd:list\",\"icon\":\"password\",\"remark\":\"用户密码菜单\"}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-02-21 11:01:37');
|
|
INSERT INTO `sys_oper_log` (`oper_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`) VALUES (1892771672999182337, '菜单管理', 2, 'com.coin.web.controller.system.SysMenuController.edit()', 'PUT', 1, 'admin', '研发部门', '/system/menu', '127.0.0.1', '内网IP', '{\"createBy\":\"admin\",\"createTime\":\"2025-02-20 21:48:08\",\"updateBy\":\"admin\",\"updateTime\":\"2025-02-21 11:01:47\",\"parentName\":null,\"parentId\":\"1892770801909350401\",\"children\":[],\"menuId\":\"1892766617747185666\",\"menuName\":\"用户好友\",\"orderNum\":6,\"path\":\"userFriend\",\"component\":\"business/userFriend/index\",\"queryParam\":null,\"isFrame\":\"1\",\"isCache\":\"0\",\"menuType\":\"C\",\"visible\":\"0\",\"status\":\"0\",\"perms\":\"business:userFriend:list\",\"icon\":\"peoples\",\"remark\":\"用户好友菜单\"}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-02-21 11:01:47');
|
|
INSERT INTO `sys_oper_log` (`oper_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`) VALUES (1892771709791617025, '菜单管理', 2, 'com.coin.web.controller.system.SysMenuController.edit()', 'PUT', 1, 'admin', '研发部门', '/system/menu', '127.0.0.1', '内网IP', '{\"createBy\":\"admin\",\"createTime\":\"2025-02-21 10:58:20\",\"updateBy\":\"admin\",\"updateTime\":\"2025-02-21 11:01:56\",\"parentName\":null,\"parentId\":0,\"children\":[],\"menuId\":\"1892770801909350401\",\"menuName\":\"用户相关\",\"orderNum\":6,\"path\":\"/user\",\"component\":null,\"queryParam\":null,\"isFrame\":\"1\",\"isCache\":\"0\",\"menuType\":\"M\",\"visible\":\"0\",\"status\":\"0\",\"icon\":\"user\",\"remark\":\"\"}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-02-21 11:01:56');
|
|
INSERT INTO `sys_oper_log` (`oper_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`) VALUES (1892771858689409025, '代码生成', 6, 'com.coin.generator.controller.GenController.importTableSave()', 'POST', 1, 'admin', '研发部门', '/tool/gen/importTable', '127.0.0.1', '内网IP', '\"t_deal_cashout,t_deal_pay,t_deal_receive,t_deal_transfer\"', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-02-21 11:02:32');
|
|
INSERT INTO `sys_oper_log` (`oper_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`) VALUES (1892774599344111617, '代码生成', 2, 'com.coin.generator.controller.GenController.editSave()', 'PUT', 1, 'admin', '研发部门', '/tool/gen', '127.0.0.1', '内网IP', '{\"createBy\":null,\"createTime\":null,\"updateBy\":\"admin\",\"updateTime\":\"2025-02-21 11:13:25\",\"params\":{\"treeCode\":null,\"treeName\":null,\"treeParentCode\":null,\"parentMenuId\":null},\"tableId\":\"1892771858244812801\",\"tableName\":\"t_deal_cashout\",\"tableComment\":\"提现表\",\"subTableName\":null,\"subTableFkName\":null,\"className\":\"DealCashout\",\"tplCategory\":\"crud\",\"packageName\":\"com.coin.business\",\"moduleName\":\"business\",\"businessName\":\"dealCashout\",\"functionName\":\"提现\",\"functionAuthor\":\"coin\",\"genType\":\"0\",\"genPath\":\"/\",\"pkColumn\":null,\"subTable\":null,\"columns\":[{\"createBy\":\"admin\",\"createTime\":\"2025-02-21 11:02:32\",\"updateBy\":\"admin\",\"updateTime\":\"2025-02-21 11:13:25\",\"columnId\":\"1892771858320310274\",\"tableId\":\"1892771858244812801\",\"columnName\":\"id\",\"columnComment\":\"唯一ID\",\"columnType\":\"bigint\",\"javaType\":\"Long\",\"javaField\":\"id\",\"isPk\":\"1\",\"isIncrement\":\"1\",\"isRequired\":\"0\",\"isInsert\":null,\"isEdit\":\"1\",\"isList\":\"1\",\"isQuery\":null,\"queryType\":\"EQ\",\"htmlType\":\"input\",\"dictType\":\"\",\"sort\":1,\"query\":false,\"list\":true,\"pk\":true,\"insert\":false,\"edit\":true,\"increment\":true,\"capJavaField\":\"Id\",\"usableColumn\":false,\"superColumn\":false,\"required\":false},{\"createBy\":\"admin\",\"createTime\":\"2025-02-21 11:02:32\",\"updateBy\":\"admin\",\"updateTime\":\"2025-02-21 11:13:25\",\"columnId\":\"1892771858328698881\",\"tableId\":\"1892771858244812801\",\"columnName\":\"user_id\",\"columnComment\":\"提现ID\",\"columnType\":\"varchar(255)\",\"javaType\":\"String\",\"javaField\":\"userId\",\"isPk\":\"0\",\"isIncrement\":\"0\",\"isRequired\":\"1\",\"isInsert\":\"1\",\"isEdit\":\"1\",\"isList\":\"1\",\"isQuery\":\"1\",\"queryType\":\"EQ\",\"htmlType\":\"input\",\"dictType\":\"\",\"sort\":2,\"query\":true,\"list\":true,\"pk\":false,\"insert\":true,\"edit\":true,\"increment\":false,\"capJavaField\":\"UserId\",\"usableColumn\":false,\"superColumn\":false,\"required\":true},{\"createBy\":\"admin\",\"createTime\":\"2025-02-21 11:02:32\",\"updateBy\":\"admin\",\"updateTime\":\"2025-02-21 11:13:25\",\"columnId\":\"1892771858332893185\",\"tableId\":\"1892771858244812801\",\"columnName\":\"user_account\",\"columnComment\":\"提现账户\",\"columnType\":\"varchar(25', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-02-21 11:13:25');
|
|
INSERT INTO `sys_oper_log` (`oper_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`) VALUES (1892775035400732673, '代码生成', 2, 'com.coin.generator.controller.GenController.editSave()', 'PUT', 1, 'admin', '研发部门', '/tool/gen', '127.0.0.1', '内网IP', '{\"createBy\":null,\"createTime\":null,\"updateBy\":\"admin\",\"updateTime\":\"2025-02-21 11:15:09\",\"params\":{\"treeCode\":null,\"treeName\":null,\"treeParentCode\":null,\"parentMenuId\":null},\"tableId\":\"1892771858400002050\",\"tableName\":\"t_deal_pay\",\"tableComment\":\"付款表\",\"subTableName\":null,\"subTableFkName\":null,\"className\":\"DealPay\",\"tplCategory\":\"crud\",\"packageName\":\"com.coin.business\",\"moduleName\":\"business\",\"businessName\":\"dealPay\",\"functionName\":\"付款\",\"functionAuthor\":\"coin\",\"genType\":\"0\",\"genPath\":\"/\",\"pkColumn\":null,\"subTable\":null,\"columns\":[{\"createBy\":\"admin\",\"createTime\":\"2025-02-21 11:02:32\",\"updateBy\":\"admin\",\"updateTime\":\"2025-02-21 11:15:09\",\"columnId\":\"1892771858429362178\",\"tableId\":\"1892771858400002050\",\"columnName\":\"id\",\"columnComment\":\"唯一ID\",\"columnType\":\"bigint\",\"javaType\":\"Long\",\"javaField\":\"id\",\"isPk\":\"1\",\"isIncrement\":\"1\",\"isRequired\":\"0\",\"isInsert\":null,\"isEdit\":\"1\",\"isList\":\"1\",\"isQuery\":null,\"queryType\":\"EQ\",\"htmlType\":\"input\",\"dictType\":\"\",\"sort\":1,\"query\":false,\"list\":true,\"pk\":true,\"insert\":false,\"edit\":true,\"increment\":true,\"capJavaField\":\"Id\",\"usableColumn\":false,\"superColumn\":false,\"required\":false},{\"createBy\":\"admin\",\"createTime\":\"2025-02-21 11:02:32\",\"updateBy\":\"admin\",\"updateTime\":\"2025-02-21 11:15:09\",\"columnId\":\"1892771858437750786\",\"tableId\":\"1892771858400002050\",\"columnName\":\"user_id\",\"columnComment\":\"付款ID\",\"columnType\":\"varchar(255)\",\"javaType\":\"String\",\"javaField\":\"userId\",\"isPk\":\"0\",\"isIncrement\":\"0\",\"isRequired\":\"1\",\"isInsert\":\"1\",\"isEdit\":\"1\",\"isList\":\"1\",\"isQuery\":\"1\",\"queryType\":\"EQ\",\"htmlType\":\"input\",\"dictType\":\"\",\"sort\":2,\"query\":true,\"list\":true,\"pk\":false,\"insert\":true,\"edit\":true,\"increment\":false,\"capJavaField\":\"UserId\",\"usableColumn\":false,\"superColumn\":false,\"required\":true},{\"createBy\":\"admin\",\"createTime\":\"2025-02-21 11:02:32\",\"updateBy\":\"admin\",\"updateTime\":\"2025-02-21 11:15:09\",\"columnId\":\"1892771858441945090\",\"tableId\":\"1892771858400002050\",\"columnName\":\"user_account\",\"columnComment\":\"付款账户\",\"columnType\":\"varchar(255)\",\"javaTyp', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-02-21 11:15:09');
|
|
INSERT INTO `sys_oper_log` (`oper_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`) VALUES (1892775440759242753, '代码生成', 2, 'com.coin.generator.controller.GenController.editSave()', 'PUT', 1, 'admin', '研发部门', '/tool/gen', '127.0.0.1', '内网IP', '{\"createBy\":null,\"createTime\":null,\"updateBy\":\"admin\",\"updateTime\":\"2025-02-21 11:16:45\",\"params\":{\"treeCode\":null,\"treeName\":null,\"treeParentCode\":null,\"parentMenuId\":null},\"tableId\":\"1892771858496471041\",\"tableName\":\"t_deal_receive\",\"tableComment\":\"收款表\",\"subTableName\":null,\"subTableFkName\":null,\"className\":\"DealReceive\",\"tplCategory\":\"crud\",\"packageName\":\"com.coin.business\",\"moduleName\":\"business\",\"businessName\":\"dealReceive\",\"functionName\":\"收款\",\"functionAuthor\":\"coin\",\"genType\":\"0\",\"genPath\":\"/\",\"pkColumn\":null,\"subTable\":null,\"columns\":[{\"createBy\":\"admin\",\"createTime\":\"2025-02-21 11:02:32\",\"updateBy\":\"admin\",\"updateTime\":\"2025-02-21 11:16:45\",\"columnId\":\"1892771858521636866\",\"tableId\":\"1892771858496471041\",\"columnName\":\"id\",\"columnComment\":\"唯一ID\",\"columnType\":\"bigint\",\"javaType\":\"Long\",\"javaField\":\"id\",\"isPk\":\"1\",\"isIncrement\":\"1\",\"isRequired\":\"0\",\"isInsert\":null,\"isEdit\":\"1\",\"isList\":\"1\",\"isQuery\":null,\"queryType\":\"EQ\",\"htmlType\":\"input\",\"dictType\":\"\",\"sort\":1,\"query\":false,\"list\":true,\"pk\":true,\"insert\":false,\"edit\":true,\"increment\":true,\"capJavaField\":\"Id\",\"usableColumn\":false,\"superColumn\":false,\"required\":false},{\"createBy\":\"admin\",\"createTime\":\"2025-02-21 11:02:32\",\"updateBy\":\"admin\",\"updateTime\":\"2025-02-21 11:16:45\",\"columnId\":\"1892771858525831169\",\"tableId\":\"1892771858496471041\",\"columnName\":\"user_id\",\"columnComment\":\"收款ID\",\"columnType\":\"varchar(255)\",\"javaType\":\"String\",\"javaField\":\"userId\",\"isPk\":\"0\",\"isIncrement\":\"0\",\"isRequired\":\"1\",\"isInsert\":\"1\",\"isEdit\":\"1\",\"isList\":\"1\",\"isQuery\":\"1\",\"queryType\":\"EQ\",\"htmlType\":\"input\",\"dictType\":\"\",\"sort\":2,\"query\":true,\"list\":true,\"pk\":false,\"insert\":true,\"edit\":true,\"increment\":false,\"capJavaField\":\"UserId\",\"usableColumn\":false,\"superColumn\":false,\"required\":true},{\"createBy\":\"admin\",\"createTime\":\"2025-02-21 11:02:32\",\"updateBy\":\"admin\",\"updateTime\":\"2025-02-21 11:16:45\",\"columnId\":\"1892771858525831170\",\"tableId\":\"1892771858496471041\",\"columnName\":\"user_account\",\"columnComment\":\"收款账户\",\"columnType\":\"varchar(25', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-02-21 11:16:46');
|
|
INSERT INTO `sys_oper_log` (`oper_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`) VALUES (1892775713221230594, '代码生成', 2, 'com.coin.generator.controller.GenController.editSave()', 'PUT', 1, 'admin', '研发部门', '/tool/gen', '127.0.0.1', '内网IP', '{\"createBy\":null,\"createTime\":null,\"updateBy\":\"admin\",\"updateTime\":\"2025-02-21 11:17:50\",\"params\":{\"treeCode\":null,\"treeName\":null,\"treeParentCode\":null,\"parentMenuId\":null},\"tableId\":\"1892771858584551426\",\"tableName\":\"t_deal_transfer\",\"tableComment\":\"转账表\",\"subTableName\":null,\"subTableFkName\":null,\"className\":\"DealTransfer\",\"tplCategory\":\"crud\",\"packageName\":\"com.coin.business\",\"moduleName\":\"business\",\"businessName\":\"dealTransfer\",\"functionName\":\"转账\",\"functionAuthor\":\"coin\",\"genType\":\"0\",\"genPath\":\"/\",\"pkColumn\":null,\"subTable\":null,\"columns\":[{\"createBy\":\"admin\",\"createTime\":\"2025-02-21 11:02:32\",\"updateBy\":\"admin\",\"updateTime\":\"2025-02-21 11:17:50\",\"columnId\":\"1892771858609717249\",\"tableId\":\"1892771858584551426\",\"columnName\":\"id\",\"columnComment\":\"唯一ID\",\"columnType\":\"bigint\",\"javaType\":\"Long\",\"javaField\":\"id\",\"isPk\":\"1\",\"isIncrement\":\"1\",\"isRequired\":\"0\",\"isInsert\":null,\"isEdit\":\"1\",\"isList\":\"1\",\"isQuery\":null,\"queryType\":\"EQ\",\"htmlType\":\"input\",\"dictType\":\"\",\"sort\":1,\"query\":false,\"list\":true,\"pk\":true,\"insert\":false,\"edit\":true,\"increment\":true,\"capJavaField\":\"Id\",\"usableColumn\":false,\"superColumn\":false,\"required\":false},{\"createBy\":\"admin\",\"createTime\":\"2025-02-21 11:02:32\",\"updateBy\":\"admin\",\"updateTime\":\"2025-02-21 11:17:50\",\"columnId\":\"1892771858613911553\",\"tableId\":\"1892771858584551426\",\"columnName\":\"user_id\",\"columnComment\":\"转账ID\",\"columnType\":\"varchar(255)\",\"javaType\":\"String\",\"javaField\":\"userId\",\"isPk\":\"0\",\"isIncrement\":\"0\",\"isRequired\":\"1\",\"isInsert\":\"1\",\"isEdit\":\"1\",\"isList\":\"1\",\"isQuery\":\"1\",\"queryType\":\"EQ\",\"htmlType\":\"input\",\"dictType\":\"\",\"sort\":2,\"query\":true,\"list\":true,\"pk\":false,\"insert\":true,\"edit\":true,\"increment\":false,\"capJavaField\":\"UserId\",\"usableColumn\":false,\"superColumn\":false,\"required\":true},{\"createBy\":\"admin\",\"createTime\":\"2025-02-21 11:02:32\",\"updateBy\":\"admin\",\"updateTime\":\"2025-02-21 11:17:50\",\"columnId\":\"1892771858613911554\",\"tableId\":\"1892771858584551426\",\"columnName\":\"user_account\",\"columnComment\":\"转账账户\",\"columnType\":\"varchar', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-02-21 11:17:51');
|
|
INSERT INTO `sys_oper_log` (`oper_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`) VALUES (1892776963333533697, '代码生成', 8, 'com.coin.generator.controller.GenController.batchGenCode()', 'GET', 1, 'admin', '研发部门', '/tool/gen/batchGenCode', '127.0.0.1', '内网IP', '{\"tables\":\"t_deal_cashout,t_deal_pay,t_deal_receive,t_deal_transfer\"}', '', 0, '', '2025-02-21 11:22:49');
|
|
INSERT INTO `sys_oper_log` (`oper_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`) VALUES (1892778835662450689, '转账', 1, 'com.coin.business.controller.DealTransferController.add()', 'POST', 1, 'admin', '研发部门', '/business/dealTransfer', '127.0.0.1', '内网IP', '{\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"id\":\"1892778835494678530\",\"userId\":\"1\",\"userAccount\":\"one\",\"toId\":\"2\",\"toAccount\":\"two\",\"billCode\":\"code\",\"amount\":\"23.12342\",\"transferType\":null,\"remark\":\"aha\",\"status\":null}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-02-21 11:30:15');
|
|
INSERT INTO `sys_oper_log` (`oper_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`) VALUES (1892778875151822849, '转账', 2, 'com.coin.business.controller.DealTransferController.edit()', 'PUT', 1, 'admin', '研发部门', '/business/dealTransfer', '127.0.0.1', '内网IP', '{\"createBy\":null,\"createTime\":\"2025-02-21 11:30:15\",\"updateBy\":null,\"updateTime\":null,\"id\":\"1892778835494678530\",\"userId\":\"1\",\"userAccount\":\"one\",\"toId\":\"2\",\"toAccount\":\"two\",\"billCode\":\"code\",\"amount\":\"23.123423\",\"transferType\":\"0\",\"remark\":\"aha\",\"status\":\"0\"}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-02-21 11:30:25');
|
|
INSERT INTO `sys_oper_log` (`oper_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`) VALUES (1892779125560160258, '收款', 1, 'com.coin.business.controller.DealReceiveController.add()', 'POST', 1, 'admin', '研发部门', '/business/dealReceive', '127.0.0.1', '内网IP', '{\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"id\":\"1892779125530800130\",\"userId\":\"2\",\"userAccount\":\"two\",\"toId\":\"1\",\"toAccount\":\"one\",\"billCode\":\"code1\",\"amount\":\"890233398.234123\",\"transferType\":null,\"qrCode\":\"qrcode\",\"remark\":\"en\",\"status\":null}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-02-21 11:31:24');
|
|
INSERT INTO `sys_oper_log` (`oper_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`) VALUES (1892779153963986946, '收款', 2, 'com.coin.business.controller.DealReceiveController.edit()', 'PUT', 1, 'admin', '研发部门', '/business/dealReceive', '127.0.0.1', '内网IP', '{\"createBy\":null,\"createTime\":\"2025-02-21 11:31:24\",\"updateBy\":null,\"updateTime\":null,\"id\":\"1892779125530800130\",\"userId\":\"2\",\"userAccount\":\"two\",\"toId\":\"1\",\"toAccount\":\"one\",\"billCode\":\"code1-fix\",\"amount\":\"890233398.234123\",\"transferType\":\"0\",\"qrCode\":\"qrcode\",\"remark\":\"en\",\"status\":\"0\"}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-02-21 11:31:31');
|
|
INSERT INTO `sys_oper_log` (`oper_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`) VALUES (1892779403793510401, '付款', 1, 'com.coin.business.controller.DealPayController.add()', 'POST', 1, 'admin', '研发部门', '/business/dealPay', '127.0.0.1', '内网IP', '{\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"id\":\"1892779403755761666\",\"userId\":\"3\",\"userAccount\":\"three\",\"toId\":\"5\",\"toAccount\":\"five\",\"billCode\":\"codenihih\",\"amount\":\"987239878923.2874\",\"transferType\":null,\"qrCode\":\"22\",\"remark\":\"wnkjndkjfd\",\"status\":null}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-02-21 11:32:31');
|
|
INSERT INTO `sys_oper_log` (`oper_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`) VALUES (1892779429848526849, '付款', 2, 'com.coin.business.controller.DealPayController.edit()', 'PUT', 1, 'admin', '研发部门', '/business/dealPay', '127.0.0.1', '内网IP', '{\"createBy\":null,\"createTime\":\"2025-02-21 11:32:31\",\"updateBy\":null,\"updateTime\":null,\"id\":\"1892779403755761666\",\"userId\":\"3\",\"userAccount\":\"three\",\"toId\":\"5\",\"toAccount\":\"five\",\"billCode\":\"codenihih-fix\",\"amount\":\"987239878923.287400\",\"transferType\":\"0\",\"qrCode\":\"22\",\"remark\":\"wnkjndkjfd\",\"status\":\"0\"}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-02-21 11:32:37');
|
|
INSERT INTO `sys_oper_log` (`oper_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`) VALUES (1892779585817915394, '提现', 1, 'com.coin.business.controller.DealCashoutController.add()', 'POST', 1, 'admin', '研发部门', '/business/dealCashout', '127.0.0.1', '内网IP', '{\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"id\":\"1892779585788555266\",\"userId\":\"6\",\"userAccount\":\"six\",\"toId\":\"6\",\"toAccount\":\"six-second\",\"billCode\":\"code-xckds\",\"amount\":\"78242.231\",\"transferType\":null,\"remark\":\"立刻马上\",\"status\":null}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-02-21 11:33:14');
|
|
INSERT INTO `sys_oper_log` (`oper_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`) VALUES (1892779623918972929, '提现', 2, 'com.coin.business.controller.DealCashoutController.edit()', 'PUT', 1, 'admin', '研发部门', '/business/dealCashout', '127.0.0.1', '内网IP', '{\"createBy\":\"admin\",\"createTime\":\"2025-02-21 11:33:14\",\"updateBy\":null,\"updateTime\":\"2025-02-21 11:33:14\",\"id\":\"1892779585788555266\",\"userId\":\"6\",\"userAccount\":\"six\",\"toId\":\"6\",\"toAccount\":\"six-second\",\"billCode\":\"code-xckds\",\"amount\":\"78242.231789\",\"transferType\":\"0\",\"remark\":\"立刻马上\",\"status\":\"0\"}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-02-21 11:33:23');
|
|
INSERT INTO `sys_oper_log` (`oper_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`) VALUES (1892779644936630274, '提现', 2, 'com.coin.business.controller.DealCashoutController.edit()', 'PUT', 1, 'admin', '研发部门', '/business/dealCashout', '127.0.0.1', '内网IP', '{\"createBy\":\"admin\",\"createTime\":\"2025-02-21 11:33:14\",\"updateBy\":null,\"updateTime\":\"2025-02-21 11:33:23\",\"id\":\"1892779585788555266\",\"userId\":\"6\",\"userAccount\":\"six\",\"toId\":\"6\",\"toAccount\":\"six-second\",\"billCode\":\"code-xckds\",\"amount\":\"78242.2317891234\",\"transferType\":\"0\",\"remark\":\"立刻马上\",\"status\":\"0\"}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-02-21 11:33:28');
|
|
INSERT INTO `sys_oper_log` (`oper_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`) VALUES (1892779839233568770, '菜单管理', 1, 'com.coin.web.controller.system.SysMenuController.add()', 'POST', 1, 'admin', '研发部门', '/system/menu', '127.0.0.1', '内网IP', '{\"createBy\":\"admin\",\"createTime\":\"2025-02-21 11:34:14\",\"updateBy\":\"admin\",\"updateTime\":\"2025-02-21 11:34:14\",\"parentName\":null,\"parentId\":0,\"children\":[],\"menuId\":\"1892779839208402946\",\"menuName\":\"交易相关\",\"orderNum\":6,\"path\":\"/deal\",\"component\":null,\"queryParam\":null,\"isFrame\":\"1\",\"isCache\":\"0\",\"menuType\":\"M\",\"visible\":\"0\",\"status\":\"0\",\"icon\":\"money\",\"remark\":null}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-02-21 11:34:14');
|
|
INSERT INTO `sys_oper_log` (`oper_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`) VALUES (1892779994452176898, '菜单管理', 2, 'com.coin.web.controller.system.SysMenuController.edit()', 'PUT', 1, 'admin', '研发部门', '/system/menu', '127.0.0.1', '内网IP', '{\"createBy\":\"admin\",\"createTime\":\"2025-02-20 22:28:08\",\"updateBy\":\"admin\",\"updateTime\":\"2025-02-21 11:34:51\",\"parentName\":null,\"parentId\":\"1892779839208402946\",\"children\":[],\"menuId\":\"1892776963052515329\",\"menuName\":\"转账\",\"orderNum\":1,\"path\":\"dealTransfer\",\"component\":\"business/dealTransfer/index\",\"queryParam\":null,\"isFrame\":\"1\",\"isCache\":\"0\",\"menuType\":\"C\",\"visible\":\"0\",\"status\":\"0\",\"perms\":\"business:dealTransfer:list\",\"icon\":\"link\",\"remark\":\"转账菜单\"}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-02-21 11:34:51');
|
|
INSERT INTO `sys_oper_log` (`oper_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`) VALUES (1892780246831837186, '菜单管理', 2, 'com.coin.web.controller.system.SysMenuController.edit()', 'PUT', 1, 'admin', '研发部门', '/system/menu', '127.0.0.1', '内网IP', '{\"createBy\":\"admin\",\"createTime\":\"2025-02-20 22:28:08\",\"updateBy\":\"admin\",\"updateTime\":\"2025-02-21 11:35:51\",\"parentName\":null,\"parentId\":\"1892779839208402946\",\"children\":[],\"menuId\":\"1892776962721165314\",\"menuName\":\"付款\",\"orderNum\":2,\"path\":\"dealPay\",\"component\":\"business/dealPay/index\",\"queryParam\":null,\"isFrame\":\"1\",\"isCache\":\"0\",\"menuType\":\"C\",\"visible\":\"0\",\"status\":\"0\",\"perms\":\"business:dealPay:list\",\"icon\":\"number\",\"remark\":\"付款菜单\"}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-02-21 11:35:52');
|
|
INSERT INTO `sys_oper_log` (`oper_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`) VALUES (1892780333939142657, '菜单管理', 2, 'com.coin.web.controller.system.SysMenuController.edit()', 'PUT', 1, 'admin', '研发部门', '/system/menu', '127.0.0.1', '内网IP', '{\"createBy\":\"admin\",\"createTime\":\"2025-02-20 22:28:08\",\"updateBy\":\"admin\",\"updateTime\":\"2025-02-21 11:36:12\",\"parentName\":null,\"parentId\":\"1892779839208402946\",\"children\":[],\"menuId\":\"1892776961509011458\",\"menuName\":\"提现\",\"orderNum\":3,\"path\":\"dealCashout\",\"component\":\"business/dealCashout/index\",\"queryParam\":null,\"isFrame\":\"1\",\"isCache\":\"0\",\"menuType\":\"C\",\"visible\":\"0\",\"status\":\"0\",\"perms\":\"business:dealCashout:list\",\"icon\":\"validCode\",\"remark\":\"提现菜单\"}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-02-21 11:36:12');
|
|
INSERT INTO `sys_oper_log` (`oper_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`) VALUES (1892780449584492545, '菜单管理', 2, 'com.coin.web.controller.system.SysMenuController.edit()', 'PUT', 1, 'admin', '研发部门', '/system/menu', '127.0.0.1', '内网IP', '{\"createBy\":\"admin\",\"createTime\":\"2025-02-20 22:28:08\",\"updateBy\":\"admin\",\"updateTime\":\"2025-02-21 11:36:39\",\"parentName\":null,\"parentId\":\"1892779839208402946\",\"children\":[],\"menuId\":\"1892776962905714690\",\"menuName\":\"收款\",\"orderNum\":4,\"path\":\"dealReceive\",\"component\":\"business/dealReceive/index\",\"queryParam\":null,\"isFrame\":\"1\",\"isCache\":\"0\",\"menuType\":\"C\",\"visible\":\"0\",\"status\":\"0\",\"perms\":\"business:dealReceive:list\",\"icon\":\"phone\",\"remark\":\"收款菜单\"}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-02-21 11:36:40');
|
|
INSERT INTO `sys_oper_log` (`oper_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`) VALUES (1892780470329520130, '菜单管理', 3, 'com.coin.web.controller.system.SysMenuController.remove()', 'DELETE', 1, 'admin', '研发部门', '/system/menu/4', '127.0.0.1', '内网IP', '{}', '{\"code\":601,\"msg\":\"菜单已分配,不允许删除\",\"data\":null}', 0, '', '2025-02-21 11:36:45');
|
|
INSERT INTO `sys_oper_log` (`oper_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`) VALUES (1892780545881518081, '角色管理', 2, 'com.coin.web.controller.system.SysRoleController.edit()', 'PUT', 1, 'admin', '研发部门', '/system/role', '127.0.0.1', '内网IP', '{\"createBy\":\"admin\",\"createTime\":\"2025-02-19 05:35:30\",\"updateBy\":\"admin\",\"updateTime\":\"2025-02-21 11:37:02\",\"roleId\":2,\"roleName\":\"普通角色\",\"roleKey\":\"common\",\"roleSort\":2,\"dataScope\":\"2\",\"menuCheckStrictly\":true,\"deptCheckStrictly\":true,\"status\":\"0\",\"delFlag\":\"0\",\"remark\":\"普通角色\",\"flag\":false,\"menuIds\":[1,2,100,1001,1002,1003,1004,1005,1006,1007,101,1008,1009,1010,1011,1012,102,1013,1014,1015,1016,103,1017,1018,1019,1020,104,1021,1022,1023,1024,1025,105,1026,1027,1028,1029,1030,106,1031,1032,1033,1034,1035,107,1036,1037,1038,1039,108,500,1040,1041,1042,501,1043,1044,1045,1050,109,1046,1047,1048,113,112,3,114,115,1055,1056,1058,1057,1059,1060],\"deptIds\":null,\"admin\":false}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-02-21 11:37:03');
|
|
INSERT INTO `sys_oper_log` (`oper_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`) VALUES (1892780608871575554, '菜单管理', 3, 'com.coin.web.controller.system.SysMenuController.remove()', 'DELETE', 1, 'admin', '研发部门', '/system/menu/4', '127.0.0.1', '内网IP', '{}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-02-21 11:37:18');
|
|
INSERT INTO `sys_oper_log` (`oper_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`) VALUES (1892780692174647298, '菜单管理', 2, 'com.coin.web.controller.system.SysMenuController.edit()', 'PUT', 1, 'admin', '研发部门', '/system/menu', '127.0.0.1', '内网IP', '{\"createBy\":\"admin\",\"createTime\":\"2025-02-19 05:36:01\",\"updateBy\":\"admin\",\"updateTime\":\"2025-02-21 11:37:37\",\"parentName\":null,\"parentId\":0,\"children\":[],\"menuId\":5,\"menuName\":\"测试菜单\",\"orderNum\":5,\"path\":\"demo\",\"component\":null,\"queryParam\":null,\"isFrame\":\"1\",\"isCache\":\"0\",\"menuType\":\"M\",\"visible\":\"1\",\"status\":\"1\",\"icon\":\"star\",\"remark\":\"\"}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-02-21 11:37:38');
|
|
INSERT INTO `sys_oper_log` (`oper_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`) VALUES (1892780781991473154, '菜单管理', 2, 'com.coin.web.controller.system.SysMenuController.edit()', 'PUT', 1, 'admin', '研发部门', '/system/menu', '127.0.0.1', '内网IP', '{\"createBy\":\"admin\",\"createTime\":\"2025-02-21 11:34:14\",\"updateBy\":\"admin\",\"updateTime\":\"2025-02-21 11:37:59\",\"parentName\":null,\"parentId\":0,\"children\":[],\"menuId\":\"1892779839208402946\",\"menuName\":\"交易相关\",\"orderNum\":7,\"path\":\"/deal\",\"component\":null,\"queryParam\":null,\"isFrame\":\"1\",\"isCache\":\"0\",\"menuType\":\"M\",\"visible\":\"0\",\"status\":\"0\",\"icon\":\"money\",\"remark\":\"\"}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-02-21 11:37:59');
|
|
INSERT INTO `sys_oper_log` (`oper_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`) VALUES (1892829079627968513, '代码生成', 6, 'com.coin.generator.controller.GenController.importTableSave()', 'POST', 1, 'admin', '研发部门', '/tool/gen/importTable', '127.0.0.1', '内网IP', '\"t_common_feedback,t_common_info,t_common_notify\"', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-02-21 14:49:54');
|
|
INSERT INTO `sys_oper_log` (`oper_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`) VALUES (1892830909762187266, '代码生成', 2, 'com.coin.generator.controller.GenController.editSave()', 'PUT', 1, 'admin', '研发部门', '/tool/gen', '127.0.0.1', '内网IP', '{\"createBy\":null,\"createTime\":null,\"updateBy\":\"admin\",\"updateTime\":\"2025-02-21 14:57:10\",\"params\":{\"treeCode\":null,\"treeName\":null,\"treeParentCode\":null,\"parentMenuId\":null},\"tableId\":\"1892829079103680514\",\"tableName\":\"t_common_info\",\"tableComment\":\"关于信息表\",\"subTableName\":null,\"subTableFkName\":null,\"className\":\"CommonInfo\",\"tplCategory\":\"crud\",\"packageName\":\"com.coin.business\",\"moduleName\":\"business\",\"businessName\":\"commonInfo\",\"functionName\":\"关于信息\",\"functionAuthor\":\"coin\",\"genType\":\"0\",\"genPath\":\"/\",\"pkColumn\":null,\"subTable\":null,\"columns\":[{\"createBy\":\"admin\",\"createTime\":\"2025-02-21 14:49:54\",\"updateBy\":\"admin\",\"updateTime\":\"2025-02-21 14:57:10\",\"columnId\":\"1892829079149817858\",\"tableId\":\"1892829079103680514\",\"columnName\":\"id\",\"columnComment\":\"唯一ID\",\"columnType\":\"bigint\",\"javaType\":\"Long\",\"javaField\":\"id\",\"isPk\":\"1\",\"isIncrement\":\"1\",\"isRequired\":\"0\",\"isInsert\":null,\"isEdit\":\"1\",\"isList\":\"1\",\"isQuery\":null,\"queryType\":\"EQ\",\"htmlType\":\"input\",\"dictType\":\"\",\"sort\":1,\"list\":true,\"insert\":false,\"pk\":true,\"edit\":true,\"query\":false,\"usableColumn\":false,\"superColumn\":false,\"required\":false,\"increment\":true,\"capJavaField\":\"Id\"},{\"createBy\":\"admin\",\"createTime\":\"2025-02-21 14:49:54\",\"updateBy\":\"admin\",\"updateTime\":\"2025-02-21 14:57:10\",\"columnId\":\"1892829079154012161\",\"tableId\":\"1892829079103680514\",\"columnName\":\"version\",\"columnComment\":\"版本号\",\"columnType\":\"varchar(255)\",\"javaType\":\"String\",\"javaField\":\"version\",\"isPk\":\"0\",\"isIncrement\":\"0\",\"isRequired\":\"0\",\"isInsert\":\"1\",\"isEdit\":\"1\",\"isList\":\"1\",\"isQuery\":\"1\",\"queryType\":\"LIKE\",\"htmlType\":\"input\",\"dictType\":\"\",\"sort\":2,\"list\":true,\"insert\":true,\"pk\":false,\"edit\":true,\"query\":true,\"usableColumn\":false,\"superColumn\":false,\"required\":false,\"increment\":false,\"capJavaField\":\"Version\"},{\"createBy\":\"admin\",\"createTime\":\"2025-02-21 14:49:54\",\"updateBy\":\"admin\",\"updateTime\":\"2025-02-21 14:57:10\",\"columnId\":\"1892829079162400769\",\"tableId\":\"1892829079103680514\",\"columnName\":\"release_date\",\"columnComment\":\"发版日期\",\"columnType\":\"datet', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-02-21 14:57:11');
|
|
INSERT INTO `sys_oper_log` (`oper_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`) VALUES (1892831178281529346, '代码生成', 2, 'com.coin.generator.controller.GenController.editSave()', 'PUT', 1, 'admin', '研发部门', '/tool/gen', '127.0.0.1', '内网IP', '{\"createBy\":null,\"createTime\":null,\"updateBy\":\"admin\",\"updateTime\":\"2025-02-21 14:58:14\",\"params\":{\"treeCode\":null,\"treeName\":null,\"treeParentCode\":null,\"parentMenuId\":null},\"tableId\":\"1892829078860410882\",\"tableName\":\"t_common_feedback\",\"tableComment\":\"反馈信息表\",\"subTableName\":null,\"subTableFkName\":null,\"className\":\"CommonFeedback\",\"tplCategory\":\"crud\",\"packageName\":\"com.coin.business\",\"moduleName\":\"business\",\"businessName\":\"commonFeedback\",\"functionName\":\"反馈信息\",\"functionAuthor\":\"coin\",\"genType\":\"0\",\"genPath\":\"/\",\"pkColumn\":null,\"subTable\":null,\"columns\":[{\"createBy\":\"admin\",\"createTime\":\"2025-02-21 14:49:54\",\"updateBy\":\"admin\",\"updateTime\":\"2025-02-21 14:58:14\",\"columnId\":\"1892829078977851393\",\"tableId\":\"1892829078860410882\",\"columnName\":\"id\",\"columnComment\":\"唯一ID\",\"columnType\":\"bigint\",\"javaType\":\"Long\",\"javaField\":\"id\",\"isPk\":\"1\",\"isIncrement\":\"1\",\"isRequired\":\"0\",\"isInsert\":null,\"isEdit\":\"1\",\"isList\":\"1\",\"isQuery\":null,\"queryType\":\"EQ\",\"htmlType\":\"input\",\"dictType\":\"\",\"sort\":1,\"list\":true,\"insert\":false,\"pk\":true,\"edit\":true,\"query\":false,\"usableColumn\":false,\"superColumn\":false,\"required\":false,\"increment\":true,\"capJavaField\":\"Id\"},{\"createBy\":\"admin\",\"createTime\":\"2025-02-21 14:49:54\",\"updateBy\":\"admin\",\"updateTime\":\"2025-02-21 14:58:14\",\"columnId\":\"1892829078998822914\",\"tableId\":\"1892829078860410882\",\"columnName\":\"user_id\",\"columnComment\":\"反馈人\",\"columnType\":\"varchar(255)\",\"javaType\":\"String\",\"javaField\":\"userId\",\"isPk\":\"0\",\"isIncrement\":\"0\",\"isRequired\":\"1\",\"isInsert\":\"1\",\"isEdit\":\"1\",\"isList\":\"1\",\"isQuery\":\"1\",\"queryType\":\"EQ\",\"htmlType\":\"input\",\"dictType\":\"\",\"sort\":2,\"list\":true,\"insert\":true,\"pk\":false,\"edit\":true,\"query\":true,\"usableColumn\":false,\"superColumn\":false,\"required\":true,\"increment\":false,\"capJavaField\":\"UserId\"},{\"createBy\":\"admin\",\"createTime\":\"2025-02-21 14:49:54\",\"updateBy\":\"admin\",\"updateTime\":\"2025-02-21 14:58:14\",\"columnId\":\"1892829079007211521\",\"tableId\":\"1892829078860410882\",\"columnName\":\"content\",\"columnComment\":\"反馈内容\",\"columnType\":\"var', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-02-21 14:58:15');
|
|
INSERT INTO `sys_oper_log` (`oper_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`) VALUES (1892831346456342530, '代码生成', 2, 'com.coin.generator.controller.GenController.editSave()', 'PUT', 1, 'admin', '研发部门', '/tool/gen', '127.0.0.1', '内网IP', '{\"createBy\":null,\"createTime\":null,\"updateBy\":\"admin\",\"updateTime\":\"2025-02-21 14:58:54\",\"params\":{\"treeCode\":null,\"treeName\":null,\"treeParentCode\":null,\"parentMenuId\":null},\"tableId\":\"1892829079284035585\",\"tableName\":\"t_common_notify\",\"tableComment\":\"消息通知表\",\"subTableName\":null,\"subTableFkName\":null,\"className\":\"CommonNotify\",\"tplCategory\":\"crud\",\"packageName\":\"com.coin.business\",\"moduleName\":\"business\",\"businessName\":\"commonNotify\",\"functionName\":\"消息通知\",\"functionAuthor\":\"coin\",\"genType\":\"0\",\"genPath\":\"/\",\"pkColumn\":null,\"subTable\":null,\"columns\":[{\"createBy\":\"admin\",\"createTime\":\"2025-02-21 14:49:54\",\"updateBy\":\"admin\",\"updateTime\":\"2025-02-21 14:58:54\",\"columnId\":\"1892829079317590018\",\"tableId\":\"1892829079284035585\",\"columnName\":\"id\",\"columnComment\":\"唯一ID\",\"columnType\":\"bigint\",\"javaType\":\"Long\",\"javaField\":\"id\",\"isPk\":\"1\",\"isIncrement\":\"1\",\"isRequired\":\"0\",\"isInsert\":null,\"isEdit\":\"1\",\"isList\":\"1\",\"isQuery\":null,\"queryType\":\"EQ\",\"htmlType\":\"input\",\"dictType\":\"\",\"sort\":1,\"list\":true,\"insert\":false,\"pk\":true,\"edit\":true,\"query\":false,\"usableColumn\":false,\"superColumn\":false,\"required\":false,\"increment\":true,\"capJavaField\":\"Id\"},{\"createBy\":\"admin\",\"createTime\":\"2025-02-21 14:49:54\",\"updateBy\":\"admin\",\"updateTime\":\"2025-02-21 14:58:54\",\"columnId\":\"1892829079321784321\",\"tableId\":\"1892829079284035585\",\"columnName\":\"event_id\",\"columnComment\":\"触发事务ID\",\"columnType\":\"varchar(255)\",\"javaType\":\"String\",\"javaField\":\"eventId\",\"isPk\":\"0\",\"isIncrement\":\"0\",\"isRequired\":\"0\",\"isInsert\":\"1\",\"isEdit\":\"1\",\"isList\":\"1\",\"isQuery\":\"1\",\"queryType\":\"EQ\",\"htmlType\":\"input\",\"dictType\":\"\",\"sort\":2,\"list\":true,\"insert\":true,\"pk\":false,\"edit\":true,\"query\":true,\"usableColumn\":false,\"superColumn\":false,\"required\":false,\"increment\":false,\"capJavaField\":\"EventId\"},{\"createBy\":\"admin\",\"createTime\":\"2025-02-21 14:49:54\",\"updateBy\":\"admin\",\"updateTime\":\"2025-02-21 14:58:54\",\"columnId\":\"1892829079321784322\",\"tableId\":\"1892829079284035585\",\"columnName\":\"message_type\",\"columnComment\":\"消息类型(系统、通知、活动等)\",', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-02-21 14:58:55');
|
|
INSERT INTO `sys_oper_log` (`oper_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`) VALUES (1892831810782572546, '代码生成', 8, 'com.coin.generator.controller.GenController.batchGenCode()', 'GET', 1, 'admin', '研发部门', '/tool/gen/batchGenCode', '127.0.0.1', '内网IP', '{\"tables\":\"t_common_feedback,t_common_info,t_common_notify\"}', '', 0, '', '2025-02-21 15:00:45');
|
|
INSERT INTO `sys_oper_log` (`oper_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`) VALUES (1892834567253950466, '消息通知', 1, 'com.coin.business.controller.CommonNotifyController.add()', 'POST', 1, 'admin', '研发部门', '/business/commonNotify', '127.0.0.1', '内网IP', '{\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"id\":\"1892834567090372609\",\"eventId\":\"1\",\"messageType\":null,\"messageScene\":\"12\",\"sender\":\"33\",\"receiver\":\"22\",\"title\":\"34\",\"content\":\"<p>32235235</p>\",\"status\":null}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-02-21 15:11:43');
|
|
INSERT INTO `sys_oper_log` (`oper_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`) VALUES (1892834593334132738, '消息通知', 2, 'com.coin.business.controller.CommonNotifyController.edit()', 'PUT', 1, 'admin', '研发部门', '/business/commonNotify', '127.0.0.1', '内网IP', '{\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"id\":\"1892834567090372609\",\"eventId\":\"1\",\"messageType\":null,\"messageScene\":\"12\",\"sender\":\"33-fix\",\"receiver\":\"22\",\"title\":\"34\",\"content\":\"<p>32235235</p>\",\"status\":\"0\"}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-02-21 15:11:49');
|
|
INSERT INTO `sys_oper_log` (`oper_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`) VALUES (1892834686523179009, '关于信息', 1, 'com.coin.business.controller.CommonInfoController.add()', 'POST', 1, 'admin', '研发部门', '/business/commonInfo', '127.0.0.1', '内网IP', '{\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"id\":\"1892834686489624578\",\"version\":\"1.2.1\",\"releaseDate\":\"2025-02-21 15:11:59\",\"privacyPolicy\":\"2344\",\"privacySetting\":\"2423\",\"featureDesc\":\"d\",\"techDesc\":\"2\",\"userAgreement\":\"2\",\"disclaimer\":\"1\",\"about\":\"1\",\"shareInfoList\":\"1\",\"collectInfoList\":\"1\",\"status\":null}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-02-21 15:12:11');
|
|
INSERT INTO `sys_oper_log` (`oper_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`) VALUES (1892834714180419585, '关于信息', 2, 'com.coin.business.controller.CommonInfoController.edit()', 'PUT', 1, 'admin', '研发部门', '/business/commonInfo', '127.0.0.1', '内网IP', '{\"createBy\":null,\"createTime\":\"2025-02-21 15:12:11\",\"updateBy\":null,\"updateTime\":null,\"id\":\"1892834686489624578\",\"version\":\"1.2.1\",\"releaseDate\":\"2025-02-21 15:11:59\",\"privacyPolicy\":\"2344-fix\",\"privacySetting\":\"2423\",\"featureDesc\":\"d\",\"techDesc\":\"2\",\"userAgreement\":\"2\",\"disclaimer\":\"1\",\"about\":\"1\",\"shareInfoList\":\"1\",\"collectInfoList\":\"1\",\"status\":\"0\"}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-02-21 15:12:18');
|
|
INSERT INTO `sys_oper_log` (`oper_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`) VALUES (1892834779091468290, '反馈信息', 1, 'com.coin.business.controller.CommonFeedbackController.add()', 'POST', 1, 'admin', '研发部门', '/business/commonFeedback', '127.0.0.1', '内网IP', '{\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"id\":\"1892834779062108161\",\"userId\":\"2\",\"content\":\"<p>2344</p>\",\"star\":\"3\",\"isGood\":\"0\",\"status\":null}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-02-21 15:12:33');
|
|
INSERT INTO `sys_oper_log` (`oper_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`) VALUES (1892834810380976130, '反馈信息', 2, 'com.coin.business.controller.CommonFeedbackController.edit()', 'PUT', 1, 'admin', '研发部门', '/business/commonFeedback', '127.0.0.1', '内网IP', '{\"createBy\":null,\"createTime\":\"2025-02-21 15:12:33\",\"updateBy\":null,\"updateTime\":null,\"id\":\"1892834779062108161\",\"userId\":\"2\",\"content\":\"<p>2344-fixed</p>\",\"star\":\"3\",\"isGood\":\"0\",\"status\":\"0\"}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-02-21 15:12:41');
|
|
INSERT INTO `sys_oper_log` (`oper_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`) VALUES (1892834997090418690, '菜单管理', 1, 'com.coin.web.controller.system.SysMenuController.add()', 'POST', 1, 'admin', '研发部门', '/system/menu', '127.0.0.1', '内网IP', '{\"createBy\":\"admin\",\"createTime\":\"2025-02-21 15:13:25\",\"updateBy\":\"admin\",\"updateTime\":\"2025-02-21 15:13:25\",\"parentName\":null,\"parentId\":0,\"children\":[],\"menuId\":\"1892834997065252865\",\"menuName\":\"公共\",\"orderNum\":8,\"path\":\"/common\",\"component\":null,\"queryParam\":null,\"isFrame\":\"1\",\"isCache\":\"0\",\"menuType\":\"M\",\"visible\":\"0\",\"status\":\"0\",\"icon\":\"component\",\"remark\":null}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-02-21 15:13:25');
|
|
INSERT INTO `sys_oper_log` (`oper_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`) VALUES (1892835175939735553, '菜单管理', 2, 'com.coin.web.controller.system.SysMenuController.edit()', 'PUT', 1, 'admin', '研发部门', '/system/menu', '127.0.0.1', '内网IP', '{\"createBy\":\"admin\",\"createTime\":\"2025-02-21 02:09:14\",\"updateBy\":\"admin\",\"updateTime\":\"2025-02-21 15:14:07\",\"parentName\":null,\"parentId\":\"1892834997065252865\",\"children\":[],\"menuId\":\"1892831810421862402\",\"menuName\":\"关于信息\",\"orderNum\":1,\"path\":\"commonInfo\",\"component\":\"business/commonInfo/index\",\"queryParam\":null,\"isFrame\":\"1\",\"isCache\":\"0\",\"menuType\":\"C\",\"visible\":\"0\",\"status\":\"0\",\"perms\":\"business:commonInfo:list\",\"icon\":\"question\",\"remark\":\"关于信息菜单\"}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-02-21 15:14:08');
|
|
INSERT INTO `sys_oper_log` (`oper_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`) VALUES (1892835291719303170, '菜单管理', 2, 'com.coin.web.controller.system.SysMenuController.edit()', 'PUT', 1, 'admin', '研发部门', '/system/menu', '127.0.0.1', '内网IP', '{\"createBy\":\"admin\",\"createTime\":\"2025-02-21 02:09:14\",\"updateBy\":\"admin\",\"updateTime\":\"2025-02-21 15:14:35\",\"parentName\":null,\"parentId\":\"1892834997065252865\",\"children\":[],\"menuId\":\"1892831809482338305\",\"menuName\":\"反馈信息\",\"orderNum\":2,\"path\":\"commonFeedback\",\"component\":\"business/commonFeedback/index\",\"queryParam\":null,\"isFrame\":\"1\",\"isCache\":\"0\",\"menuType\":\"C\",\"visible\":\"0\",\"status\":\"0\",\"perms\":\"business:commonFeedback:list\",\"icon\":\"log\",\"remark\":\"反馈信息菜单\"}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-02-21 15:14:35');
|
|
INSERT INTO `sys_oper_log` (`oper_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`) VALUES (1892835361806123009, '菜单管理', 2, 'com.coin.web.controller.system.SysMenuController.edit()', 'PUT', 1, 'admin', '研发部门', '/system/menu', '127.0.0.1', '内网IP', '{\"createBy\":\"admin\",\"createTime\":\"2025-02-21 02:09:14\",\"updateBy\":\"admin\",\"updateTime\":\"2025-02-21 15:14:52\",\"parentName\":null,\"parentId\":\"1892834997065252865\",\"children\":[],\"menuId\":\"1892831810627383298\",\"menuName\":\"消息通知\",\"orderNum\":3,\"path\":\"commonNotify\",\"component\":\"business/commonNotify/index\",\"queryParam\":null,\"isFrame\":\"1\",\"isCache\":\"0\",\"menuType\":\"C\",\"visible\":\"0\",\"status\":\"0\",\"perms\":\"business:commonNotify:list\",\"icon\":\"message\",\"remark\":\"消息通知菜单\"}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-02-21 15:14:52');
|
|
INSERT INTO `sys_oper_log` (`oper_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`) VALUES (1893194816410398721, '代码生成', 6, 'com.coin.generator.controller.GenController.importTableSave()', 'POST', 1, 'admin', '研发部门', '/tool/gen/importTable', '127.0.0.1', '内网IP', '\"t_record_transaction\"', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-02-22 15:03:13');
|
|
INSERT INTO `sys_oper_log` (`oper_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`) VALUES (1893195181482618882, '代码生成', 2, 'com.coin.generator.controller.GenController.editSave()', 'PUT', 1, 'admin', '研发部门', '/tool/gen', '127.0.0.1', '内网IP', '{\"createBy\":null,\"createTime\":null,\"updateBy\":\"admin\",\"updateTime\":\"2025-02-22 15:04:39\",\"params\":{\"treeCode\":null,\"treeName\":null,\"treeParentCode\":null,\"parentMenuId\":null},\"tableId\":\"1893194816032911361\",\"tableName\":\"t_record_transaction\",\"tableComment\":\"交易动账记录表\",\"subTableName\":null,\"subTableFkName\":null,\"className\":\"RecordTransaction\",\"tplCategory\":\"crud\",\"packageName\":\"com.coin.business\",\"moduleName\":\"business\",\"businessName\":\"recordTransaction\",\"functionName\":\"交易动账记录\",\"functionAuthor\":\"coin\",\"genType\":\"0\",\"genPath\":\"/\",\"pkColumn\":null,\"subTable\":null,\"columns\":[{\"createBy\":\"admin\",\"createTime\":\"2025-02-22 15:03:13\",\"updateBy\":\"admin\",\"updateTime\":\"2025-02-22 15:04:39\",\"columnId\":\"1893194816129380354\",\"tableId\":\"1893194816032911361\",\"columnName\":\"id\",\"columnComment\":\"ID\",\"columnType\":\"bigint\",\"javaType\":\"Long\",\"javaField\":\"id\",\"isPk\":\"1\",\"isIncrement\":\"1\",\"isRequired\":\"0\",\"isInsert\":null,\"isEdit\":\"1\",\"isList\":\"1\",\"isQuery\":null,\"queryType\":\"EQ\",\"htmlType\":\"input\",\"dictType\":\"\",\"sort\":1,\"query\":false,\"insert\":false,\"edit\":true,\"pk\":true,\"list\":true,\"increment\":true,\"capJavaField\":\"Id\",\"usableColumn\":false,\"superColumn\":false,\"required\":false},{\"createBy\":\"admin\",\"createTime\":\"2025-02-22 15:03:13\",\"updateBy\":\"admin\",\"updateTime\":\"2025-02-22 15:04:39\",\"columnId\":\"1893194816141963265\",\"tableId\":\"1893194816032911361\",\"columnName\":\"sender_id\",\"columnComment\":\"用户ID\",\"columnType\":\"varchar(255)\",\"javaType\":\"String\",\"javaField\":\"senderId\",\"isPk\":\"0\",\"isIncrement\":\"0\",\"isRequired\":\"0\",\"isInsert\":\"1\",\"isEdit\":\"1\",\"isList\":\"1\",\"isQuery\":\"1\",\"queryType\":\"EQ\",\"htmlType\":\"input\",\"dictType\":\"\",\"sort\":2,\"query\":true,\"insert\":true,\"edit\":true,\"pk\":false,\"list\":true,\"increment\":false,\"capJavaField\":\"SenderId\",\"usableColumn\":false,\"superColumn\":false,\"required\":false},{\"createBy\":\"admin\",\"createTime\":\"2025-02-22 15:03:13\",\"updateBy\":\"admin\",\"updateTime\":\"2025-02-22 15:04:39\",\"columnId\":\"1893194816162934785\",\"tableId\":\"1893194816032911361\",\"columnName\":\"sender_account\",\"columnComment', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-02-22 15:04:40');
|
|
INSERT INTO `sys_oper_log` (`oper_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`) VALUES (1893195271752429569, '代码生成', 8, 'com.coin.generator.controller.GenController.batchGenCode()', 'GET', 1, 'admin', '研发部门', '/tool/gen/batchGenCode', '127.0.0.1', '内网IP', '{\"tables\":\"t_record_transaction\"}', '', 0, '', '2025-02-22 15:05:01');
|
|
INSERT INTO `sys_oper_log` (`oper_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`) VALUES (1893197301137141762, '交易动账记录', 1, 'com.coin.business.controller.RecordTransactionController.add()', 'POST', 1, 'admin', '研发部门', '/business/recordTransaction', '127.0.0.1', '内网IP', '{\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"id\":null,\"senderId\":\"1\",\"senderAccount\":\"1code\",\"type\":null,\"receiverId\":\"66\",\"receiverAccount\":\"66-2-code\",\"previous\":\"123\",\"change\":23,\"current\":\"100\",\"note\":\"哦豁\",\"time\":\"2025-02-22 15:13:04\",\"status\":null}', '', 1, '\n### Error updating database. Cause: java.sql.SQLSyntaxErrorException: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near \'change, current, note, time, create_by, create_time, update_by, update_time ) \' at line 1\n### The error may exist in com/coin/business/mapper/RecordTransactionMapper.java (best guess)\n### The error may involve com.coin.business.mapper.RecordTransactionMapper.insert-Inline\n### The error occurred while setting parameters\n### SQL: INSERT INTO t_record_transaction ( id, sender_id, sender_account, receiver_id, receiver_account, previous, change, current, note, time, create_by, create_time, update_by, update_time ) VALUES ( ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ? )\n### Cause: java.sql.SQLSyntaxErrorException: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near \'change, current, note, time, create_by, create_time, update_by, update_time ) \' at line 1\n; bad SQL grammar []; nested exception is java.sql.SQLSyntaxErrorException: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near \'change, current, note, time, create_by, create_time, update_by, update_time ) \' at line 1', '2025-02-22 15:13:05');
|
|
INSERT INTO `sys_oper_log` (`oper_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`) VALUES (1893198799187222530, '交易动账记录', 1, 'com.coin.business.controller.RecordTransactionController.add()', 'POST', 1, 'admin', '研发部门', '/business/recordTransaction', '127.0.0.1', '内网IP', '{\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"id\":\"1893198798960730113\",\"senderId\":\"1\",\"senderAccount\":\"1-code\",\"type\":null,\"receiverId\":\"2\",\"receiverAccount\":\"2-code-2\",\"previous\":null,\"change\":null,\"current\":null,\"note\":\"aha \",\"time\":\"2025-02-22 15:19:01\",\"status\":null}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-02-22 15:19:02');
|
|
INSERT INTO `sys_oper_log` (`oper_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`) VALUES (1893199076363608065, '菜单管理', 1, 'com.coin.web.controller.system.SysMenuController.add()', 'POST', 1, 'admin', '研发部门', '/system/menu', '127.0.0.1', '内网IP', '{\"createBy\":\"admin\",\"createTime\":\"2025-02-22 15:20:08\",\"updateBy\":\"admin\",\"updateTime\":\"2025-02-22 15:20:08\",\"parentName\":null,\"parentId\":0,\"children\":[],\"menuId\":\"1893199076321665026\",\"menuName\":\"记录\",\"orderNum\":9,\"path\":\"/record\",\"component\":null,\"queryParam\":null,\"isFrame\":\"1\",\"isCache\":\"0\",\"menuType\":\"M\",\"visible\":\"0\",\"status\":\"0\",\"icon\":\"log\",\"remark\":null}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-02-22 15:20:08');
|
|
INSERT INTO `sys_oper_log` (`oper_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`) VALUES (1893199157267537922, '菜单管理', 2, 'com.coin.web.controller.system.SysMenuController.edit()', 'PUT', 1, 'admin', '研发部门', '/system/menu', '127.0.0.1', '内网IP', '{\"createBy\":\"admin\",\"createTime\":\"2025-02-22 02:09:50\",\"updateBy\":\"admin\",\"updateTime\":\"2025-02-22 15:20:27\",\"parentName\":null,\"parentId\":\"1893199076321665026\",\"children\":[],\"menuId\":\"1893195271509159937\",\"menuName\":\"交易动账记录\",\"orderNum\":1,\"path\":\"recordTransaction\",\"component\":\"business/recordTransaction/index\",\"queryParam\":null,\"isFrame\":\"1\",\"isCache\":\"0\",\"menuType\":\"C\",\"visible\":\"0\",\"status\":\"0\",\"perms\":\"business:recordTransaction:list\",\"icon\":\"money\",\"remark\":\"交易动账记录菜单\"}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-02-22 15:20:28');
|
|
INSERT INTO `sys_oper_log` (`oper_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`) VALUES (1893199285164449793, '交易动账记录', 2, 'com.coin.business.controller.RecordTransactionController.edit()', 'PUT', 1, 'admin', '研发部门', '/business/recordTransaction', '127.0.0.1', '内网IP', '{\"createBy\":null,\"createTime\":\"2025-02-22 15:19:02\",\"updateBy\":null,\"updateTime\":null,\"id\":\"1893198798960730113\",\"senderId\":\"1\",\"senderAccount\":\"1-code\",\"type\":null,\"receiverId\":\"2\",\"receiverAccount\":\"2-code-2\",\"previous\":null,\"change\":null,\"current\":null,\"note\":\"aha \",\"time\":\"2025-02-22 15:19:01\",\"status\":\"0\"}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-02-22 15:20:58');
|
|
INSERT INTO `sys_oper_log` (`oper_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`) VALUES (1893199431092674562, '交易动账记录', 2, 'com.coin.business.controller.RecordTransactionController.edit()', 'PUT', 1, 'admin', '研发部门', '/business/recordTransaction', '127.0.0.1', '内网IP', '{\"createBy\":null,\"createTime\":\"2025-02-22 15:19:02\",\"updateBy\":null,\"updateTime\":null,\"id\":\"1893198798960730113\",\"senderId\":\"1\",\"senderAccount\":\"1-code\",\"type\":null,\"receiverId\":\"2\",\"receiverAccount\":\"2-code-2\",\"previous\":null,\"change\":null,\"current\":null,\"note\":\"aha \",\"time\":\"2025-02-22 15:19:01\",\"status\":\"0\"}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-02-22 15:21:33');
|
|
INSERT INTO `sys_oper_log` (`oper_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`) VALUES (1893199780599832577, '交易动账记录', 2, 'com.coin.business.controller.RecordTransactionController.edit()', 'PUT', 1, 'admin', '研发部门', '/business/recordTransaction', '127.0.0.1', '内网IP', '{\"createBy\":null,\"createTime\":\"2025-02-22 15:19:02\",\"updateBy\":null,\"updateTime\":null,\"id\":\"1893198798960730113\",\"senderId\":\"1\",\"senderAccount\":\"1-code\",\"type\":null,\"receiverId\":\"2\",\"receiverAccount\":\"2-code-2\",\"previous\":null,\"change\":null,\"current\":null,\"note\":\"aha \",\"time\":\"2025-02-22 15:19:01\",\"status\":\"0\"}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-02-22 15:22:56');
|
|
INSERT INTO `sys_oper_log` (`oper_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`) VALUES (1893199842025414657, '交易动账记录', 2, 'com.coin.business.controller.RecordTransactionController.edit()', 'PUT', 1, 'admin', '研发部门', '/business/recordTransaction', '127.0.0.1', '内网IP', '{\"createBy\":null,\"createTime\":\"2025-02-22 15:19:02\",\"updateBy\":null,\"updateTime\":null,\"id\":\"1893198798960730113\",\"senderId\":\"1\",\"senderAccount\":\"1-code\",\"type\":null,\"receiverId\":\"2\",\"receiverAccount\":\"2-code-2\",\"previous\":null,\"change\":null,\"current\":null,\"note\":\"aha \",\"time\":\"2025-02-22 15:19:01\",\"status\":\"0\"}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-02-22 15:23:11');
|
|
INSERT INTO `sys_oper_log` (`oper_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`) VALUES (1893200650972520449, '交易动账记录', 2, 'com.coin.business.controller.RecordTransactionController.edit()', 'PUT', 1, 'admin', '研发部门', '/business/recordTransaction', '127.0.0.1', '内网IP', '{\"createBy\":null,\"createTime\":\"2025-02-22 15:19:02\",\"updateBy\":null,\"updateTime\":null,\"id\":\"1893198798960730113\",\"senderId\":\"1\",\"senderAccount\":\"1-code\",\"type\":null,\"receiverId\":\"2\",\"receiverAccount\":\"2-code-2\",\"previousBalance\":\"100\",\"changeBalance\":20,\"currentBalance\":\"80\",\"note\":\"aha \",\"time\":\"2025-02-22 15:19:01\",\"status\":\"0\"}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-02-22 15:26:24');
|
|
INSERT INTO `sys_oper_log` (`oper_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`) VALUES (1893202504062119937, '消息通知', 2, 'com.coin.business.controller.CommonNotifyController.edit()', 'PUT', 1, 'admin', '研发部门', '/business/commonNotify', '127.0.0.1', '内网IP', '{\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"id\":\"1892834567090372609\",\"eventId\":\"1\",\"messageType\":null,\"messageScene\":\"12\",\"sender\":\"33-fix\",\"receiver\":\"1\",\"title\":\"转账通知\",\"content\":\"2025-02-03 21:15:34 账号互转账 50000PLA 请注意查收\",\"imgUrl\":\"<p>3223434</p>\",\"status\":\"0\"}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-02-22 15:33:46');
|
|
COMMIT;
|
|
|
|
-- ----------------------------
|
|
-- Table structure for sys_oss
|
|
-- ----------------------------
|
|
DROP TABLE IF EXISTS `sys_oss`;
|
|
CREATE TABLE `sys_oss` (
|
|
`oss_id` bigint NOT NULL COMMENT '对象存储主键',
|
|
`file_name` varchar(255) NOT NULL DEFAULT '' COMMENT '文件名',
|
|
`original_name` varchar(255) NOT NULL DEFAULT '' COMMENT '原名',
|
|
`file_suffix` varchar(10) NOT NULL DEFAULT '' COMMENT '文件后缀名',
|
|
`url` varchar(500) NOT NULL COMMENT 'URL地址',
|
|
`create_time` datetime DEFAULT NULL COMMENT '创建时间',
|
|
`create_by` varchar(64) DEFAULT '' COMMENT '上传人',
|
|
`update_time` datetime DEFAULT NULL COMMENT '更新时间',
|
|
`update_by` varchar(64) DEFAULT '' COMMENT '更新人',
|
|
`service` varchar(20) NOT NULL DEFAULT 'minio' COMMENT '服务商',
|
|
PRIMARY KEY (`oss_id`)
|
|
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='OSS对象存储表';
|
|
|
|
-- ----------------------------
|
|
-- Records of sys_oss
|
|
-- ----------------------------
|
|
BEGIN;
|
|
COMMIT;
|
|
|
|
-- ----------------------------
|
|
-- Table structure for sys_oss_config
|
|
-- ----------------------------
|
|
DROP TABLE IF EXISTS `sys_oss_config`;
|
|
CREATE TABLE `sys_oss_config` (
|
|
`oss_config_id` bigint NOT NULL COMMENT '主建',
|
|
`config_key` varchar(20) NOT NULL DEFAULT '' COMMENT '配置key',
|
|
`access_key` varchar(255) DEFAULT '' COMMENT 'accessKey',
|
|
`secret_key` varchar(255) DEFAULT '' COMMENT '秘钥',
|
|
`bucket_name` varchar(255) DEFAULT '' COMMENT '桶名称',
|
|
`prefix` varchar(255) DEFAULT '' COMMENT '前缀',
|
|
`endpoint` varchar(255) DEFAULT '' COMMENT '访问站点',
|
|
`domain` varchar(255) DEFAULT '' COMMENT '自定义域名',
|
|
`is_https` char(1) DEFAULT 'N' COMMENT '是否https(Y=是,N=否)',
|
|
`region` varchar(255) DEFAULT '' COMMENT '域',
|
|
`access_policy` char(1) NOT NULL DEFAULT '1' COMMENT '桶权限类型(0=private 1=public 2=custom)',
|
|
`status` char(1) DEFAULT '1' COMMENT '是否默认(0=是,1=否)',
|
|
`ext1` varchar(255) DEFAULT '' COMMENT '扩展字段',
|
|
`create_by` varchar(64) DEFAULT '' COMMENT '创建者',
|
|
`create_time` datetime DEFAULT NULL COMMENT '创建时间',
|
|
`update_by` varchar(64) DEFAULT '' COMMENT '更新者',
|
|
`update_time` datetime DEFAULT NULL COMMENT '更新时间',
|
|
`remark` varchar(500) DEFAULT NULL COMMENT '备注',
|
|
PRIMARY KEY (`oss_config_id`)
|
|
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='对象存储配置表';
|
|
|
|
-- ----------------------------
|
|
-- Records of sys_oss_config
|
|
-- ----------------------------
|
|
BEGIN;
|
|
INSERT INTO `sys_oss_config` (`oss_config_id`, `config_key`, `access_key`, `secret_key`, `bucket_name`, `prefix`, `endpoint`, `domain`, `is_https`, `region`, `access_policy`, `status`, `ext1`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1, 'minio', 'ruoyi', 'ruoyi123', 'ruoyi', '', '127.0.0.1:9000', '', 'N', '', '1', '0', '', 'admin', '2025-02-19 05:35:30', 'admin', '2025-02-19 05:35:30', NULL);
|
|
INSERT INTO `sys_oss_config` (`oss_config_id`, `config_key`, `access_key`, `secret_key`, `bucket_name`, `prefix`, `endpoint`, `domain`, `is_https`, `region`, `access_policy`, `status`, `ext1`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (2, 'qiniu', 'XXXXXXXXXXXXXXX', 'XXXXXXXXXXXXXXX', 'ruoyi', '', 's3-cn-north-1.qiniucs.com', '', 'N', '', '1', '1', '', 'admin', '2025-02-19 05:35:30', 'admin', '2025-02-19 05:35:30', NULL);
|
|
INSERT INTO `sys_oss_config` (`oss_config_id`, `config_key`, `access_key`, `secret_key`, `bucket_name`, `prefix`, `endpoint`, `domain`, `is_https`, `region`, `access_policy`, `status`, `ext1`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (3, 'aliyun', 'XXXXXXXXXXXXXXX', 'XXXXXXXXXXXXXXX', 'ruoyi', '', 'oss-cn-beijing.aliyuncs.com', '', 'N', '', '1', '1', '', 'admin', '2025-02-19 05:35:30', 'admin', '2025-02-19 05:35:30', NULL);
|
|
INSERT INTO `sys_oss_config` (`oss_config_id`, `config_key`, `access_key`, `secret_key`, `bucket_name`, `prefix`, `endpoint`, `domain`, `is_https`, `region`, `access_policy`, `status`, `ext1`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (4, 'qcloud', 'XXXXXXXXXXXXXXX', 'XXXXXXXXXXXXXXX', 'ruoyi-1250000000', '', 'cos.ap-beijing.myqcloud.com', '', 'N', 'ap-beijing', '1', '1', '', 'admin', '2025-02-19 05:35:30', 'admin', '2025-02-19 05:35:30', NULL);
|
|
INSERT INTO `sys_oss_config` (`oss_config_id`, `config_key`, `access_key`, `secret_key`, `bucket_name`, `prefix`, `endpoint`, `domain`, `is_https`, `region`, `access_policy`, `status`, `ext1`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (5, 'image', 'ruoyi', 'ruoyi123', 'ruoyi', 'image', '127.0.0.1:9000', '', 'N', '', '1', '1', '', 'admin', '2025-02-19 05:35:30', 'admin', '2025-02-19 05:35:30', NULL);
|
|
COMMIT;
|
|
|
|
-- ----------------------------
|
|
-- Table structure for sys_post
|
|
-- ----------------------------
|
|
DROP TABLE IF EXISTS `sys_post`;
|
|
CREATE TABLE `sys_post` (
|
|
`post_id` bigint NOT NULL COMMENT '岗位ID',
|
|
`post_code` varchar(64) NOT NULL COMMENT '岗位编码',
|
|
`post_name` varchar(50) NOT NULL COMMENT '岗位名称',
|
|
`post_sort` int NOT NULL COMMENT '显示顺序',
|
|
`status` char(1) NOT NULL COMMENT '状态(0正常 1停用)',
|
|
`create_by` varchar(64) DEFAULT '' COMMENT '创建者',
|
|
`create_time` datetime DEFAULT NULL COMMENT '创建时间',
|
|
`update_by` varchar(64) DEFAULT '' COMMENT '更新者',
|
|
`update_time` datetime DEFAULT NULL COMMENT '更新时间',
|
|
`remark` varchar(500) DEFAULT NULL COMMENT '备注',
|
|
PRIMARY KEY (`post_id`)
|
|
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='岗位信息表';
|
|
|
|
-- ----------------------------
|
|
-- Records of sys_post
|
|
-- ----------------------------
|
|
BEGIN;
|
|
INSERT INTO `sys_post` (`post_id`, `post_code`, `post_name`, `post_sort`, `status`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1, 'ceo', '董事长', 1, '0', 'admin', '2025-02-19 05:35:30', '', NULL, '');
|
|
INSERT INTO `sys_post` (`post_id`, `post_code`, `post_name`, `post_sort`, `status`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (2, 'se', '项目经理', 2, '0', 'admin', '2025-02-19 05:35:30', '', NULL, '');
|
|
INSERT INTO `sys_post` (`post_id`, `post_code`, `post_name`, `post_sort`, `status`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (3, 'hr', '人力资源', 3, '0', 'admin', '2025-02-19 05:35:30', '', NULL, '');
|
|
INSERT INTO `sys_post` (`post_id`, `post_code`, `post_name`, `post_sort`, `status`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (4, 'user', '普通员工', 4, '0', 'admin', '2025-02-19 05:35:30', '', NULL, '');
|
|
COMMIT;
|
|
|
|
-- ----------------------------
|
|
-- Table structure for sys_role
|
|
-- ----------------------------
|
|
DROP TABLE IF EXISTS `sys_role`;
|
|
CREATE TABLE `sys_role` (
|
|
`role_id` bigint NOT NULL COMMENT '角色ID',
|
|
`role_name` varchar(30) NOT NULL COMMENT '角色名称',
|
|
`role_key` varchar(100) NOT NULL COMMENT '角色权限字符串',
|
|
`role_sort` int NOT NULL COMMENT '显示顺序',
|
|
`data_scope` char(1) DEFAULT '1' COMMENT '数据范围(1:全部数据权限 2:自定数据权限 3:本部门数据权限 4:本部门及以下数据权限)',
|
|
`menu_check_strictly` tinyint(1) DEFAULT '1' COMMENT '菜单树选择项是否关联显示',
|
|
`dept_check_strictly` tinyint(1) DEFAULT '1' COMMENT '部门树选择项是否关联显示',
|
|
`status` char(1) NOT NULL COMMENT '角色状态(0正常 1停用)',
|
|
`del_flag` char(1) DEFAULT '0' COMMENT '删除标志(0代表存在 2代表删除)',
|
|
`create_by` varchar(64) DEFAULT '' COMMENT '创建者',
|
|
`create_time` datetime DEFAULT NULL COMMENT '创建时间',
|
|
`update_by` varchar(64) DEFAULT '' COMMENT '更新者',
|
|
`update_time` datetime DEFAULT NULL COMMENT '更新时间',
|
|
`remark` varchar(500) DEFAULT NULL COMMENT '备注',
|
|
PRIMARY KEY (`role_id`)
|
|
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='角色信息表';
|
|
|
|
-- ----------------------------
|
|
-- Records of sys_role
|
|
-- ----------------------------
|
|
BEGIN;
|
|
INSERT INTO `sys_role` (`role_id`, `role_name`, `role_key`, `role_sort`, `data_scope`, `menu_check_strictly`, `dept_check_strictly`, `status`, `del_flag`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1, '超级管理员', 'admin', 1, '1', 1, 1, '0', '0', 'admin', '2025-02-19 05:35:30', '', NULL, '超级管理员');
|
|
INSERT INTO `sys_role` (`role_id`, `role_name`, `role_key`, `role_sort`, `data_scope`, `menu_check_strictly`, `dept_check_strictly`, `status`, `del_flag`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (2, '普通角色', 'common', 2, '2', 1, 1, '0', '0', 'admin', '2025-02-19 05:35:30', 'admin', '2025-02-21 11:37:03', '普通角色');
|
|
INSERT INTO `sys_role` (`role_id`, `role_name`, `role_key`, `role_sort`, `data_scope`, `menu_check_strictly`, `dept_check_strictly`, `status`, `del_flag`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (3, '本部门及以下', 'test1', 3, '4', 1, 1, '0', '0', 'admin', '2025-02-19 05:36:01', 'admin', NULL, NULL);
|
|
INSERT INTO `sys_role` (`role_id`, `role_name`, `role_key`, `role_sort`, `data_scope`, `menu_check_strictly`, `dept_check_strictly`, `status`, `del_flag`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (4, '仅本人', 'test2', 4, '5', 1, 1, '0', '0', 'admin', '2025-02-19 05:36:01', 'admin', NULL, NULL);
|
|
COMMIT;
|
|
|
|
-- ----------------------------
|
|
-- Table structure for sys_role_dept
|
|
-- ----------------------------
|
|
DROP TABLE IF EXISTS `sys_role_dept`;
|
|
CREATE TABLE `sys_role_dept` (
|
|
`role_id` bigint NOT NULL COMMENT '角色ID',
|
|
`dept_id` bigint NOT NULL COMMENT '部门ID',
|
|
PRIMARY KEY (`role_id`,`dept_id`)
|
|
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='角色和部门关联表';
|
|
|
|
-- ----------------------------
|
|
-- Records of sys_role_dept
|
|
-- ----------------------------
|
|
BEGIN;
|
|
INSERT INTO `sys_role_dept` (`role_id`, `dept_id`) VALUES (2, 100);
|
|
INSERT INTO `sys_role_dept` (`role_id`, `dept_id`) VALUES (2, 101);
|
|
INSERT INTO `sys_role_dept` (`role_id`, `dept_id`) VALUES (2, 105);
|
|
COMMIT;
|
|
|
|
-- ----------------------------
|
|
-- Table structure for sys_role_menu
|
|
-- ----------------------------
|
|
DROP TABLE IF EXISTS `sys_role_menu`;
|
|
CREATE TABLE `sys_role_menu` (
|
|
`role_id` bigint NOT NULL COMMENT '角色ID',
|
|
`menu_id` bigint NOT NULL COMMENT '菜单ID',
|
|
PRIMARY KEY (`role_id`,`menu_id`)
|
|
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='角色和菜单关联表';
|
|
|
|
-- ----------------------------
|
|
-- Records of sys_role_menu
|
|
-- ----------------------------
|
|
BEGIN;
|
|
INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (2, 1);
|
|
INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (2, 2);
|
|
INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (2, 3);
|
|
INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (2, 100);
|
|
INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (2, 101);
|
|
INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (2, 102);
|
|
INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (2, 103);
|
|
INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (2, 104);
|
|
INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (2, 105);
|
|
INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (2, 106);
|
|
INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (2, 107);
|
|
INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (2, 108);
|
|
INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (2, 109);
|
|
INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (2, 112);
|
|
INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (2, 113);
|
|
INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (2, 114);
|
|
INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (2, 115);
|
|
INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (2, 500);
|
|
INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (2, 501);
|
|
INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (2, 1001);
|
|
INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (2, 1002);
|
|
INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (2, 1003);
|
|
INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (2, 1004);
|
|
INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (2, 1005);
|
|
INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (2, 1006);
|
|
INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (2, 1007);
|
|
INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (2, 1008);
|
|
INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (2, 1009);
|
|
INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (2, 1010);
|
|
INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (2, 1011);
|
|
INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (2, 1012);
|
|
INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (2, 1013);
|
|
INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (2, 1014);
|
|
INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (2, 1015);
|
|
INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (2, 1016);
|
|
INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (2, 1017);
|
|
INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (2, 1018);
|
|
INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (2, 1019);
|
|
INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (2, 1020);
|
|
INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (2, 1021);
|
|
INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (2, 1022);
|
|
INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (2, 1023);
|
|
INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (2, 1024);
|
|
INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (2, 1025);
|
|
INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (2, 1026);
|
|
INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (2, 1027);
|
|
INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (2, 1028);
|
|
INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (2, 1029);
|
|
INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (2, 1030);
|
|
INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (2, 1031);
|
|
INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (2, 1032);
|
|
INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (2, 1033);
|
|
INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (2, 1034);
|
|
INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (2, 1035);
|
|
INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (2, 1036);
|
|
INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (2, 1037);
|
|
INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (2, 1038);
|
|
INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (2, 1039);
|
|
INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (2, 1040);
|
|
INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (2, 1041);
|
|
INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (2, 1042);
|
|
INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (2, 1043);
|
|
INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (2, 1044);
|
|
INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (2, 1045);
|
|
INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (2, 1046);
|
|
INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (2, 1047);
|
|
INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (2, 1048);
|
|
INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (2, 1050);
|
|
INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (2, 1055);
|
|
INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (2, 1056);
|
|
INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (2, 1057);
|
|
INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (2, 1058);
|
|
INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (2, 1059);
|
|
INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (2, 1060);
|
|
INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (3, 1);
|
|
INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (3, 5);
|
|
INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (3, 100);
|
|
INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (3, 101);
|
|
INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (3, 102);
|
|
INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (3, 103);
|
|
INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (3, 104);
|
|
INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (3, 105);
|
|
INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (3, 106);
|
|
INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (3, 107);
|
|
INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (3, 108);
|
|
INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (3, 500);
|
|
INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (3, 501);
|
|
INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (3, 1001);
|
|
INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (3, 1002);
|
|
INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (3, 1003);
|
|
INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (3, 1004);
|
|
INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (3, 1005);
|
|
INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (3, 1006);
|
|
INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (3, 1007);
|
|
INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (3, 1008);
|
|
INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (3, 1009);
|
|
INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (3, 1010);
|
|
INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (3, 1011);
|
|
INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (3, 1012);
|
|
INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (3, 1013);
|
|
INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (3, 1014);
|
|
INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (3, 1015);
|
|
INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (3, 1016);
|
|
INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (3, 1017);
|
|
INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (3, 1018);
|
|
INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (3, 1019);
|
|
INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (3, 1020);
|
|
INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (3, 1021);
|
|
INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (3, 1022);
|
|
INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (3, 1023);
|
|
INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (3, 1024);
|
|
INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (3, 1025);
|
|
INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (3, 1026);
|
|
INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (3, 1027);
|
|
INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (3, 1028);
|
|
INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (3, 1029);
|
|
INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (3, 1030);
|
|
INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (3, 1031);
|
|
INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (3, 1032);
|
|
INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (3, 1033);
|
|
INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (3, 1034);
|
|
INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (3, 1035);
|
|
INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (3, 1036);
|
|
INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (3, 1037);
|
|
INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (3, 1038);
|
|
INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (3, 1039);
|
|
INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (3, 1040);
|
|
INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (3, 1041);
|
|
INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (3, 1042);
|
|
INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (3, 1043);
|
|
INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (3, 1044);
|
|
INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (3, 1045);
|
|
INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (3, 1500);
|
|
INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (3, 1501);
|
|
INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (3, 1502);
|
|
INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (3, 1503);
|
|
INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (3, 1504);
|
|
INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (3, 1505);
|
|
INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (3, 1506);
|
|
INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (3, 1507);
|
|
INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (3, 1508);
|
|
INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (3, 1509);
|
|
INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (3, 1510);
|
|
INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (3, 1511);
|
|
INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (4, 5);
|
|
INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (4, 1500);
|
|
INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (4, 1501);
|
|
INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (4, 1502);
|
|
INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (4, 1503);
|
|
INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (4, 1504);
|
|
INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (4, 1505);
|
|
INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (4, 1506);
|
|
INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (4, 1507);
|
|
INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (4, 1508);
|
|
INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (4, 1509);
|
|
INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (4, 1510);
|
|
INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (4, 1511);
|
|
COMMIT;
|
|
|
|
-- ----------------------------
|
|
-- Table structure for sys_user
|
|
-- ----------------------------
|
|
DROP TABLE IF EXISTS `sys_user`;
|
|
CREATE TABLE `sys_user` (
|
|
`user_id` bigint NOT NULL COMMENT '用户ID',
|
|
`dept_id` bigint DEFAULT NULL COMMENT '部门ID',
|
|
`user_name` varchar(30) NOT NULL COMMENT '用户账号',
|
|
`nick_name` varchar(30) NOT NULL COMMENT '用户昵称',
|
|
`user_type` varchar(10) DEFAULT 'sys_user' COMMENT '用户类型(sys_user系统用户)',
|
|
`email` varchar(50) DEFAULT '' COMMENT '用户邮箱',
|
|
`phonenumber` varchar(11) DEFAULT '' COMMENT '手机号码',
|
|
`sex` char(1) DEFAULT '0' COMMENT '用户性别(0男 1女 2未知)',
|
|
`avatar` varchar(100) DEFAULT '' COMMENT '头像地址',
|
|
`password` varchar(100) DEFAULT '' COMMENT '密码',
|
|
`status` char(1) DEFAULT '0' COMMENT '帐号状态(0正常 1停用)',
|
|
`del_flag` char(1) DEFAULT '0' COMMENT '删除标志(0代表存在 2代表删除)',
|
|
`login_ip` varchar(128) DEFAULT '' COMMENT '最后登录IP',
|
|
`login_date` datetime DEFAULT NULL COMMENT '最后登录时间',
|
|
`create_by` varchar(64) DEFAULT '' COMMENT '创建者',
|
|
`create_time` datetime DEFAULT NULL COMMENT '创建时间',
|
|
`update_by` varchar(64) DEFAULT '' COMMENT '更新者',
|
|
`update_time` datetime DEFAULT NULL COMMENT '更新时间',
|
|
`remark` varchar(500) DEFAULT NULL COMMENT '备注',
|
|
PRIMARY KEY (`user_id`)
|
|
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='用户信息表';
|
|
|
|
-- ----------------------------
|
|
-- Records of sys_user
|
|
-- ----------------------------
|
|
BEGIN;
|
|
INSERT INTO `sys_user` (`user_id`, `dept_id`, `user_name`, `nick_name`, `user_type`, `email`, `phonenumber`, `sex`, `avatar`, `password`, `status`, `del_flag`, `login_ip`, `login_date`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1, 103, 'admin', 'Dear Coin', 'sys_user', 'crazyLionLi@163.com', '15888888888', '1', '', '$2a$10$7JB720yubVSZvUI0rEqK/.VqGOZTH.ulu33dHOiBE8ByOhJIrdAu2', '0', '0', '127.0.0.1', '2025-02-22 15:02:56', 'admin', '2025-02-19 05:35:30', 'admin', '2025-02-22 15:02:56', '管理员');
|
|
INSERT INTO `sys_user` (`user_id`, `dept_id`, `user_name`, `nick_name`, `user_type`, `email`, `phonenumber`, `sex`, `avatar`, `password`, `status`, `del_flag`, `login_ip`, `login_date`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (2, 105, 'lionli', '一只小鹿', 'sys_user', 'crazyLionLi@qq.com', '15666666666', '1', '', '$2a$10$7JB720yubVSZvUI0rEqK/.VqGOZTH.ulu33dHOiBE8ByOhJIrdAu2', '0', '0', '127.0.0.1', '2025-02-19 05:35:30', 'admin', '2025-02-19 05:35:30', 'admin', '2025-02-20 09:12:06', '测试员');
|
|
INSERT INTO `sys_user` (`user_id`, `dept_id`, `user_name`, `nick_name`, `user_type`, `email`, `phonenumber`, `sex`, `avatar`, `password`, `status`, `del_flag`, `login_ip`, `login_date`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (3, 108, 'test', '本部门及以下 密码666666', 'sys_user', '', '', '0', '', '$2a$10$b8yUzN0C71sbz.PhNOCgJe.Tu1yWC3RNrTyjSQ8p1W0.aaUXUJ.Ne', '0', '0', '127.0.0.1', '2025-02-19 05:36:01', 'admin', '2025-02-19 05:36:01', 'test', '2025-02-19 05:36:01', NULL);
|
|
INSERT INTO `sys_user` (`user_id`, `dept_id`, `user_name`, `nick_name`, `user_type`, `email`, `phonenumber`, `sex`, `avatar`, `password`, `status`, `del_flag`, `login_ip`, `login_date`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (4, 102, 'test1', '仅本人 密码666666', 'sys_user', '', '', '0', '', '$2a$10$b8yUzN0C71sbz.PhNOCgJe.Tu1yWC3RNrTyjSQ8p1W0.aaUXUJ.Ne', '0', '0', '127.0.0.1', '2025-02-19 05:36:01', 'admin', '2025-02-19 05:36:01', 'test1', '2025-02-19 05:36:01', NULL);
|
|
COMMIT;
|
|
|
|
-- ----------------------------
|
|
-- Table structure for sys_user_post
|
|
-- ----------------------------
|
|
DROP TABLE IF EXISTS `sys_user_post`;
|
|
CREATE TABLE `sys_user_post` (
|
|
`user_id` bigint NOT NULL COMMENT '用户ID',
|
|
`post_id` bigint NOT NULL COMMENT '岗位ID',
|
|
PRIMARY KEY (`user_id`,`post_id`)
|
|
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='用户与岗位关联表';
|
|
|
|
-- ----------------------------
|
|
-- Records of sys_user_post
|
|
-- ----------------------------
|
|
BEGIN;
|
|
INSERT INTO `sys_user_post` (`user_id`, `post_id`) VALUES (1, 1);
|
|
INSERT INTO `sys_user_post` (`user_id`, `post_id`) VALUES (2, 2);
|
|
COMMIT;
|
|
|
|
-- ----------------------------
|
|
-- Table structure for sys_user_role
|
|
-- ----------------------------
|
|
DROP TABLE IF EXISTS `sys_user_role`;
|
|
CREATE TABLE `sys_user_role` (
|
|
`user_id` bigint NOT NULL COMMENT '用户ID',
|
|
`role_id` bigint NOT NULL COMMENT '角色ID',
|
|
PRIMARY KEY (`user_id`,`role_id`)
|
|
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='用户和角色关联表';
|
|
|
|
-- ----------------------------
|
|
-- Records of sys_user_role
|
|
-- ----------------------------
|
|
BEGIN;
|
|
INSERT INTO `sys_user_role` (`user_id`, `role_id`) VALUES (1, 1);
|
|
INSERT INTO `sys_user_role` (`user_id`, `role_id`) VALUES (2, 2);
|
|
INSERT INTO `sys_user_role` (`user_id`, `role_id`) VALUES (3, 3);
|
|
INSERT INTO `sys_user_role` (`user_id`, `role_id`) VALUES (4, 4);
|
|
COMMIT;
|
|
|
|
-- ----------------------------
|
|
-- Table structure for t_account
|
|
-- ----------------------------
|
|
DROP TABLE IF EXISTS `t_account`;
|
|
CREATE TABLE `t_account` (
|
|
`account_id` bigint unsigned NOT NULL AUTO_INCREMENT COMMENT '账户ID',
|
|
`user_id` bigint unsigned NOT NULL COMMENT '用户ID',
|
|
`plat_id` varchar(11) CHARACTER SET utf8 COLLATE utf8_bin NOT NULL COMMENT '平台标识(CUSTOMER:用户,MCH:商户)',
|
|
`account_1` decimal(10,10) DEFAULT NULL COMMENT '账户1余额',
|
|
`account_1_total` decimal(10,10) NOT NULL COMMENT '账户1总余额',
|
|
`account_1_take` decimal(10,10) DEFAULT NULL COMMENT '账户1已提现余额',
|
|
`account_1_status` varchar(255) CHARACTER SET utf8 COLLATE utf8_general_ci DEFAULT NULL COMMENT '账户1状态:\r\nY正常\r\nN冻结',
|
|
`cre_user_id` bigint NOT NULL COMMENT '创建人',
|
|
`upd_user_id` bigint DEFAULT NULL COMMENT '修改人',
|
|
`cre_time` datetime NOT NULL COMMENT '创建时间',
|
|
`upd_time` datetime DEFAULT NULL COMMENT '最后修改时间',
|
|
PRIMARY KEY (`account_id`) USING BTREE,
|
|
UNIQUE KEY `UQE_USER_ID_ACCOUNT_TYPE` (`user_id`) USING BTREE,
|
|
KEY `IDX_USER_ID_ORG_ID` (`user_id`,`cre_time`) USING BTREE
|
|
) ENGINE=InnoDB AUTO_INCREMENT=345 DEFAULT CHARSET=utf8 ROW_FORMAT=DYNAMIC COMMENT='账户余额表';
|
|
|
|
-- ----------------------------
|
|
-- Records of t_account
|
|
-- ----------------------------
|
|
BEGIN;
|
|
COMMIT;
|
|
|
|
-- ----------------------------
|
|
-- Table structure for t_common_feedback
|
|
-- ----------------------------
|
|
DROP TABLE IF EXISTS `t_common_feedback`;
|
|
CREATE TABLE `t_common_feedback` (
|
|
`id` bigint NOT NULL AUTO_INCREMENT COMMENT '唯一ID',
|
|
`user_id` varchar(255) DEFAULT NULL COMMENT '反馈人',
|
|
`content` varchar(255) DEFAULT NULL COMMENT '反馈内容',
|
|
`star` varchar(4) DEFAULT '5' COMMENT '星级(程度1-5)',
|
|
`is_good` varchar(4) DEFAULT '0' COMMENT '是否正向(0正向,1负向)',
|
|
`status` varchar(16) DEFAULT '0' COMMENT '状态(0正常,1封禁)',
|
|
`del_flag` char(1) DEFAULT '0' COMMENT '删除标志(0代表存在 2代表删除)',
|
|
`create_by` varchar(64) DEFAULT NULL COMMENT '创建者',
|
|
`create_time` datetime DEFAULT NULL COMMENT '创建时间',
|
|
`update_by` varchar(64) DEFAULT NULL COMMENT '更新者',
|
|
`update_time` datetime DEFAULT NULL COMMENT '更新时间',
|
|
PRIMARY KEY (`id`)
|
|
) ENGINE=InnoDB AUTO_INCREMENT=1892834779062108162 DEFAULT CHARSET=utf8 COMMENT='反馈信息表';
|
|
|
|
-- ----------------------------
|
|
-- Records of t_common_feedback
|
|
-- ----------------------------
|
|
BEGIN;
|
|
INSERT INTO `t_common_feedback` (`id`, `user_id`, `content`, `star`, `is_good`, `status`, `del_flag`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1892834779062108161, '2', '<p>2344-fixed</p>', '3', '0', '0', '0', 'admin', '2025-02-21 15:12:33', 'admin', '2025-02-21 15:12:41');
|
|
COMMIT;
|
|
|
|
-- ----------------------------
|
|
-- Table structure for t_common_info
|
|
-- ----------------------------
|
|
DROP TABLE IF EXISTS `t_common_info`;
|
|
CREATE TABLE `t_common_info` (
|
|
`id` bigint NOT NULL AUTO_INCREMENT COMMENT '唯一ID',
|
|
`version` varchar(255) DEFAULT '1.0.0' COMMENT '版本号',
|
|
`release_date` datetime DEFAULT NULL COMMENT '发版日期',
|
|
`privacy_policy` text COMMENT '隐私政策',
|
|
`privacy_setting` text COMMENT '隐私设置',
|
|
`feature_desc` text COMMENT '功能说明',
|
|
`tech_desc` text COMMENT '技术说明',
|
|
`user_agreement` text COMMENT '用户协议',
|
|
`disclaimer` text COMMENT '免责声明',
|
|
`about` varchar(255) DEFAULT NULL COMMENT '关于我们',
|
|
`share_info_list` text COMMENT '个人信息共享清单',
|
|
`collect_info_list` text COMMENT '个人信息已收集清单',
|
|
`status` varchar(16) DEFAULT '0' COMMENT '状态(0正常,1停用)',
|
|
`del_flag` char(1) DEFAULT '0' COMMENT '删除标志(0代表存在 2代表删除)',
|
|
`create_by` varchar(64) DEFAULT NULL COMMENT '创建者',
|
|
`create_time` datetime DEFAULT NULL COMMENT '创建时间',
|
|
`update_by` varchar(64) DEFAULT NULL COMMENT '更新者',
|
|
`update_time` datetime DEFAULT NULL COMMENT '更新时间',
|
|
PRIMARY KEY (`id`)
|
|
) ENGINE=InnoDB AUTO_INCREMENT=1892834686489624579 DEFAULT CHARSET=utf8 COMMENT='关于信息表';
|
|
|
|
-- ----------------------------
|
|
-- Records of t_common_info
|
|
-- ----------------------------
|
|
BEGIN;
|
|
INSERT INTO `t_common_info` (`id`, `version`, `release_date`, `privacy_policy`, `privacy_setting`, `feature_desc`, `tech_desc`, `user_agreement`, `disclaimer`, `about`, `share_info_list`, `collect_info_list`, `status`, `del_flag`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1892834686489624578, '1.2.1', '2025-02-21 15:11:59', '2344-fix', '2423', 'd', '2', '2', '1', '1', '1', '1', '0', '0', 'admin', '2025-02-21 15:12:11', 'admin', '2025-02-21 15:12:18');
|
|
COMMIT;
|
|
|
|
-- ----------------------------
|
|
-- Table structure for t_common_notify
|
|
-- ----------------------------
|
|
DROP TABLE IF EXISTS `t_common_notify`;
|
|
CREATE TABLE `t_common_notify` (
|
|
`id` bigint NOT NULL AUTO_INCREMENT COMMENT '唯一ID',
|
|
`event_id` varchar(255) DEFAULT NULL COMMENT '触发事务ID',
|
|
`message_type` varchar(255) DEFAULT NULL COMMENT '消息类型(系统、通知、活动等)',
|
|
`message_scene` varchar(255) DEFAULT NULL COMMENT '消息场景(支付、提现等)',
|
|
`sender` varchar(255) DEFAULT NULL COMMENT '发送者',
|
|
`receiver` varchar(255) DEFAULT NULL COMMENT '接收者',
|
|
`title` varchar(255) DEFAULT NULL COMMENT '标题',
|
|
`content` varchar(511) DEFAULT NULL COMMENT '内容',
|
|
`img_url` varchar(511) CHARACTER SET utf8 COLLATE utf8_general_ci DEFAULT NULL COMMENT '文件地址(add',
|
|
`status` varchar(16) DEFAULT '0' COMMENT '状态(0正常,1封禁)',
|
|
`del_flag` char(1) DEFAULT '0' COMMENT '删除标志(0代表存在 2代表删除)',
|
|
`create_by` varchar(64) DEFAULT NULL COMMENT '创建者',
|
|
`create_time` datetime DEFAULT NULL COMMENT '创建时间',
|
|
`update_by` varchar(64) DEFAULT NULL COMMENT '更新者',
|
|
`update_time` datetime DEFAULT NULL COMMENT '更新时间',
|
|
PRIMARY KEY (`id`)
|
|
) ENGINE=InnoDB AUTO_INCREMENT=1892834567090372610 DEFAULT CHARSET=utf8 COMMENT='消息通知表';
|
|
|
|
-- ----------------------------
|
|
-- Records of t_common_notify
|
|
-- ----------------------------
|
|
BEGIN;
|
|
INSERT INTO `t_common_notify` (`id`, `event_id`, `message_type`, `message_scene`, `sender`, `receiver`, `title`, `content`, `img_url`, `status`, `del_flag`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1892834567090372609, '1', NULL, '12', '33-fix', '1', '转账通知', '2025-02-03 21:15:34 账号互转账 50000PLA 请注意查收', '<p>3223434</p>', '0', '0', 'admin', '2025-02-21 15:11:43', 'admin', '2025-02-22 15:33:45');
|
|
COMMIT;
|
|
|
|
-- ----------------------------
|
|
-- Table structure for t_deal_cashout
|
|
-- ----------------------------
|
|
DROP TABLE IF EXISTS `t_deal_cashout`;
|
|
CREATE TABLE `t_deal_cashout` (
|
|
`id` bigint NOT NULL AUTO_INCREMENT COMMENT '唯一ID',
|
|
`user_id` varchar(255) DEFAULT NULL COMMENT '提现ID',
|
|
`user_account` varchar(255) DEFAULT NULL COMMENT '提现账户',
|
|
`to_id` varchar(255) DEFAULT NULL COMMENT '目标ID',
|
|
`to_account` varchar(255) DEFAULT NULL COMMENT '目标账户',
|
|
`bill_code` varchar(255) DEFAULT NULL COMMENT '账单唯一编号',
|
|
`amount` decimal(22,6) DEFAULT '0.000000' COMMENT '提现金额',
|
|
`transfer_type` varchar(255) DEFAULT '0' COMMENT '提现类型(0直接提,1审核)',
|
|
`remark` varchar(255) DEFAULT NULL COMMENT '提现备注',
|
|
`status` int DEFAULT '0' COMMENT '状态(0发起,1拒绝,2通过)',
|
|
`del_flag` char(1) DEFAULT '0' COMMENT '删除标志(0代表存在 2代表删除)',
|
|
`create_by` varchar(64) DEFAULT NULL COMMENT '创建者',
|
|
`create_time` datetime DEFAULT NULL COMMENT '创建时间',
|
|
`update_by` varchar(64) DEFAULT NULL COMMENT '更新者',
|
|
`update_time` datetime DEFAULT NULL COMMENT '更新时间',
|
|
PRIMARY KEY (`id`)
|
|
) ENGINE=InnoDB AUTO_INCREMENT=1892779585788555267 DEFAULT CHARSET=utf8 COMMENT='提现表';
|
|
|
|
-- ----------------------------
|
|
-- Records of t_deal_cashout
|
|
-- ----------------------------
|
|
BEGIN;
|
|
INSERT INTO `t_deal_cashout` (`id`, `user_id`, `user_account`, `to_id`, `to_account`, `bill_code`, `amount`, `transfer_type`, `remark`, `status`, `del_flag`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1892779585788555266, '6', 'six', '6', 'six-second', 'code-xckds', 78242.231789, '0', '立刻马上', 0, '0', 'admin', '2025-02-21 11:33:14', 'admin', '2025-02-21 11:33:28');
|
|
COMMIT;
|
|
|
|
-- ----------------------------
|
|
-- Table structure for t_deal_pay
|
|
-- ----------------------------
|
|
DROP TABLE IF EXISTS `t_deal_pay`;
|
|
CREATE TABLE `t_deal_pay` (
|
|
`id` bigint NOT NULL AUTO_INCREMENT COMMENT '唯一ID',
|
|
`user_id` varchar(255) DEFAULT NULL COMMENT '付款ID',
|
|
`user_account` varchar(255) DEFAULT NULL COMMENT '付款账户',
|
|
`to_id` varchar(255) DEFAULT NULL COMMENT '目标ID',
|
|
`to_account` varchar(255) DEFAULT NULL COMMENT '目标账户',
|
|
`bill_code` varchar(255) DEFAULT NULL COMMENT '账单唯一编号',
|
|
`amount` decimal(22,6) DEFAULT '0.000000' COMMENT '付款金额',
|
|
`transfer_type` varchar(255) DEFAULT '0' COMMENT '付款类型(0直接付,1审核)',
|
|
`qr_code` varchar(255) DEFAULT NULL COMMENT '二维码解析',
|
|
`remark` varchar(255) DEFAULT NULL COMMENT '付款备注',
|
|
`status` int DEFAULT '0' COMMENT '状态(0发起,1拒绝,2通过)',
|
|
`del_flag` char(1) DEFAULT '0' COMMENT '删除标志(0代表存在 2代表删除)',
|
|
`create_by` varchar(64) DEFAULT NULL COMMENT '创建者',
|
|
`create_time` datetime DEFAULT NULL COMMENT '创建时间',
|
|
`update_by` varchar(64) DEFAULT NULL COMMENT '更新者',
|
|
`update_time` datetime DEFAULT NULL COMMENT '更新时间',
|
|
PRIMARY KEY (`id`)
|
|
) ENGINE=InnoDB AUTO_INCREMENT=1892779403755761667 DEFAULT CHARSET=utf8 COMMENT='付款表';
|
|
|
|
-- ----------------------------
|
|
-- Records of t_deal_pay
|
|
-- ----------------------------
|
|
BEGIN;
|
|
INSERT INTO `t_deal_pay` (`id`, `user_id`, `user_account`, `to_id`, `to_account`, `bill_code`, `amount`, `transfer_type`, `qr_code`, `remark`, `status`, `del_flag`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1892779403755761666, '3', 'three', '5', 'five', 'codenihih-fix', 987239878923.287400, '0', '22', 'wnkjndkjfd', 0, '0', 'admin', '2025-02-21 11:32:31', 'admin', '2025-02-21 11:32:37');
|
|
COMMIT;
|
|
|
|
-- ----------------------------
|
|
-- Table structure for t_deal_receive
|
|
-- ----------------------------
|
|
DROP TABLE IF EXISTS `t_deal_receive`;
|
|
CREATE TABLE `t_deal_receive` (
|
|
`id` bigint NOT NULL AUTO_INCREMENT COMMENT '唯一ID',
|
|
`user_id` varchar(255) DEFAULT NULL COMMENT '收款ID',
|
|
`user_account` varchar(255) DEFAULT NULL COMMENT '收款账户',
|
|
`to_id` varchar(255) DEFAULT NULL COMMENT '目标ID',
|
|
`to_account` varchar(255) DEFAULT NULL COMMENT '目标账户',
|
|
`bill_code` varchar(255) DEFAULT NULL COMMENT '账单唯一编号',
|
|
`amount` decimal(22,6) DEFAULT '0.000000' COMMENT '收款金额',
|
|
`transfer_type` varchar(255) DEFAULT '0' COMMENT '提现类型(0直接提,1审核)',
|
|
`qr_code` varchar(255) DEFAULT NULL COMMENT '二维码解析',
|
|
`remark` varchar(255) DEFAULT NULL COMMENT '提现备注',
|
|
`status` int DEFAULT '0' COMMENT '状态(0发起,1拒绝,2通过)',
|
|
`del_flag` char(1) DEFAULT '0' COMMENT '删除标志(0代表存在 2代表删除)',
|
|
`create_by` varchar(64) DEFAULT NULL COMMENT '创建者',
|
|
`create_time` datetime DEFAULT NULL COMMENT '创建时间',
|
|
`update_by` varchar(64) DEFAULT NULL COMMENT '更新者',
|
|
`update_time` datetime DEFAULT NULL COMMENT '更新时间',
|
|
PRIMARY KEY (`id`)
|
|
) ENGINE=InnoDB AUTO_INCREMENT=1892779125530800131 DEFAULT CHARSET=utf8 COMMENT='收款表';
|
|
|
|
-- ----------------------------
|
|
-- Records of t_deal_receive
|
|
-- ----------------------------
|
|
BEGIN;
|
|
INSERT INTO `t_deal_receive` (`id`, `user_id`, `user_account`, `to_id`, `to_account`, `bill_code`, `amount`, `transfer_type`, `qr_code`, `remark`, `status`, `del_flag`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1892779125530800130, '2', 'two', '1', 'one', 'code1-fix', 890233398.234123, '0', 'qrcode', 'en', 0, '0', 'admin', '2025-02-21 11:31:24', 'admin', '2025-02-21 11:31:31');
|
|
COMMIT;
|
|
|
|
-- ----------------------------
|
|
-- Table structure for t_deal_transfer
|
|
-- ----------------------------
|
|
DROP TABLE IF EXISTS `t_deal_transfer`;
|
|
CREATE TABLE `t_deal_transfer` (
|
|
`id` bigint NOT NULL AUTO_INCREMENT COMMENT '唯一ID',
|
|
`user_id` varchar(255) DEFAULT NULL COMMENT '转账ID',
|
|
`user_account` varchar(255) DEFAULT NULL COMMENT '转账账户',
|
|
`to_id` varchar(255) DEFAULT NULL COMMENT '接收ID',
|
|
`to_account` varchar(255) DEFAULT NULL COMMENT '接收账户',
|
|
`bill_code` varchar(255) DEFAULT NULL COMMENT '账单唯一编号',
|
|
`amount` decimal(22,6) DEFAULT '0.000000' COMMENT '转账金额',
|
|
`transfer_type` varchar(255) DEFAULT '0' COMMENT '转账类型(0直接转,1审核)',
|
|
`remark` varchar(255) DEFAULT NULL COMMENT '转账备注',
|
|
`status` int DEFAULT '0' COMMENT '状态(0发起,1拒绝,2通过)',
|
|
`del_flag` char(1) DEFAULT '0' COMMENT '删除标志(0代表存在 2代表删除)',
|
|
`create_by` varchar(64) DEFAULT NULL COMMENT '创建者',
|
|
`create_time` datetime DEFAULT NULL COMMENT '创建时间',
|
|
`update_by` varchar(64) DEFAULT NULL COMMENT '更新者',
|
|
`update_time` datetime DEFAULT NULL COMMENT '更新时间',
|
|
PRIMARY KEY (`id`)
|
|
) ENGINE=InnoDB AUTO_INCREMENT=1892778835494678531 DEFAULT CHARSET=utf8 COMMENT='转账表';
|
|
|
|
-- ----------------------------
|
|
-- Records of t_deal_transfer
|
|
-- ----------------------------
|
|
BEGIN;
|
|
INSERT INTO `t_deal_transfer` (`id`, `user_id`, `user_account`, `to_id`, `to_account`, `bill_code`, `amount`, `transfer_type`, `remark`, `status`, `del_flag`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1892778835494678530, '1', 'one', '2', 'two', 'code', 23.123423, '0', 'aha', 0, '0', 'admin', '2025-02-21 11:30:15', 'admin', '2025-02-21 11:30:25');
|
|
COMMIT;
|
|
|
|
-- ----------------------------
|
|
-- Table structure for t_record_transaction
|
|
-- ----------------------------
|
|
DROP TABLE IF EXISTS `t_record_transaction`;
|
|
CREATE TABLE `t_record_transaction` (
|
|
`id` bigint NOT NULL AUTO_INCREMENT COMMENT 'ID',
|
|
`sender_id` varchar(255) DEFAULT NULL COMMENT '用户ID',
|
|
`sender_account` varchar(255) DEFAULT NULL COMMENT '账户编号',
|
|
`type` varchar(64) DEFAULT NULL COMMENT '交易类型',
|
|
`receiver_id` varchar(255) DEFAULT NULL COMMENT '目标用户ID',
|
|
`receiver_account` varchar(255) DEFAULT NULL COMMENT '目标用户账户编号',
|
|
`previous_balance` decimal(22,6) DEFAULT NULL COMMENT '交易前金额',
|
|
`change_balance` decimal(10,0) DEFAULT NULL COMMENT '交易金额(负数为支出)',
|
|
`current_balance` decimal(22,6) DEFAULT NULL COMMENT '当前金额',
|
|
`note` varchar(511) DEFAULT NULL COMMENT '交易备注',
|
|
`time` datetime DEFAULT NULL COMMENT '交易时间',
|
|
`status` varchar(16) DEFAULT '0' COMMENT '状态(0正常,1封禁)',
|
|
`del_flag` char(1) DEFAULT '0' COMMENT '删除标志(0代表存在 2代表删除)',
|
|
`create_by` varchar(64) DEFAULT NULL COMMENT '创建者',
|
|
`create_time` datetime DEFAULT NULL COMMENT '创建时间',
|
|
`update_by` varchar(64) DEFAULT NULL COMMENT '更新者',
|
|
`update_time` datetime DEFAULT NULL COMMENT '更新时间',
|
|
PRIMARY KEY (`id`)
|
|
) ENGINE=InnoDB AUTO_INCREMENT=1893198798960730114 DEFAULT CHARSET=utf8 COMMENT='交易动账记录表';
|
|
|
|
-- ----------------------------
|
|
-- Records of t_record_transaction
|
|
-- ----------------------------
|
|
BEGIN;
|
|
INSERT INTO `t_record_transaction` (`id`, `sender_id`, `sender_account`, `type`, `receiver_id`, `receiver_account`, `previous_balance`, `change_balance`, `current_balance`, `note`, `time`, `status`, `del_flag`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1893198798960730113, '1', '1-code', NULL, '2', '2-code-2', 100.000000, 20, 80.000000, 'aha ', '2025-02-22 15:19:01', '0', '0', 'admin', '2025-02-22 15:19:02', 'admin', '2025-02-22 15:26:24');
|
|
COMMIT;
|
|
|
|
-- ----------------------------
|
|
-- Table structure for t_user_account
|
|
-- ----------------------------
|
|
DROP TABLE IF EXISTS `t_user_account`;
|
|
CREATE TABLE `t_user_account` (
|
|
`id` bigint NOT NULL AUTO_INCREMENT COMMENT '唯一ID',
|
|
`user_id` varchar(255) DEFAULT NULL COMMENT '用户id',
|
|
`account_id` varchar(255) DEFAULT NULL COMMENT '账户唯一ID',
|
|
`account_code` varchar(255) DEFAULT NULL COMMENT '账户唯一编号',
|
|
`account_name` varchar(255) DEFAULT NULL COMMENT '账户名称',
|
|
`account_amount` decimal(22,6) DEFAULT '0.000000' COMMENT '账户余额',
|
|
`status` int DEFAULT '0' COMMENT '状态(0正常,1冻结)',
|
|
`del_flag` char(1) DEFAULT '0' COMMENT '删除标志(0代表存在 2代表删除)',
|
|
`create_by` varchar(64) DEFAULT NULL COMMENT '创建者',
|
|
`create_time` datetime DEFAULT NULL COMMENT '创建时间',
|
|
`update_by` varchar(64) DEFAULT NULL COMMENT '更新者',
|
|
`update_time` datetime DEFAULT NULL COMMENT '更新时间',
|
|
PRIMARY KEY (`id`)
|
|
) ENGINE=InnoDB AUTO_INCREMENT=1892770074247938050 DEFAULT CHARSET=utf8 COMMENT='用户账户表';
|
|
|
|
-- ----------------------------
|
|
-- Records of t_user_account
|
|
-- ----------------------------
|
|
BEGIN;
|
|
INSERT INTO `t_user_account` (`id`, `user_id`, `account_id`, `account_code`, `account_name`, `account_amount`, `status`, `del_flag`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1892770074247938049, '12', '12', '234-fix ', '啊哈', 789.123400, 0, '0', 'admin', '2025-02-21 10:55:26', 'admin', '2025-02-21 10:55:36');
|
|
COMMIT;
|
|
|
|
-- ----------------------------
|
|
-- Table structure for t_user_card
|
|
-- ----------------------------
|
|
DROP TABLE IF EXISTS `t_user_card`;
|
|
CREATE TABLE `t_user_card` (
|
|
`id` bigint NOT NULL AUTO_INCREMENT COMMENT '唯一ID',
|
|
`user_id` varchar(255) DEFAULT NULL COMMENT '用户ID',
|
|
`card_num` varchar(64) DEFAULT '0' COMMENT '银行卡号',
|
|
`card_amount` decimal(22,6) DEFAULT NULL COMMENT '银行卡余额',
|
|
`bank_name` varchar(256) DEFAULT NULL COMMENT '银行名称',
|
|
`dept_name` varchar(256) DEFAULT NULL COMMENT '具体分行',
|
|
`status` char(1) DEFAULT '0' COMMENT '卡状态(0正常 1停用)',
|
|
`del_flag` char(1) DEFAULT '0' COMMENT '删除标志(0代表存在 2代表删除)',
|
|
`create_by` varchar(64) DEFAULT NULL COMMENT '创建者',
|
|
`create_time` datetime DEFAULT NULL COMMENT '创建时间',
|
|
`update_by` varchar(64) DEFAULT NULL COMMENT '更新者',
|
|
`update_time` datetime DEFAULT NULL COMMENT '更新时间',
|
|
PRIMARY KEY (`id`)
|
|
) ENGINE=InnoDB AUTO_INCREMENT=1892770210013364227 DEFAULT CHARSET=utf8 COMMENT='用户银行卡表';
|
|
|
|
-- ----------------------------
|
|
-- Records of t_user_card
|
|
-- ----------------------------
|
|
BEGIN;
|
|
INSERT INTO `t_user_card` (`id`, `user_id`, `card_num`, `card_amount`, `bank_name`, `dept_name`, `status`, `del_flag`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1892770210013364226, '12', '22-234-134', 234.123420, '芜湖', '下至', '0', '0', 'admin', '2025-02-21 10:55:59', 'admin', '2025-02-21 10:56:07');
|
|
COMMIT;
|
|
|
|
-- ----------------------------
|
|
-- Table structure for t_user_friend
|
|
-- ----------------------------
|
|
DROP TABLE IF EXISTS `t_user_friend`;
|
|
CREATE TABLE `t_user_friend` (
|
|
`id` bigint NOT NULL AUTO_INCREMENT COMMENT '唯一ID',
|
|
`user_id` varchar(255) DEFAULT NULL COMMENT '用户id',
|
|
`friend_id` varchar(255) DEFAULT NULL COMMENT '好友id',
|
|
`status` int DEFAULT '0' COMMENT '状态(0正常,1拉黑)',
|
|
`del_flag` char(1) DEFAULT '0' COMMENT '删除标志(0代表存在 2代表删除)',
|
|
`create_by` varchar(64) DEFAULT NULL COMMENT '创建者',
|
|
`create_time` datetime DEFAULT NULL COMMENT '创建时间',
|
|
`update_by` varchar(64) DEFAULT NULL COMMENT '更新者',
|
|
`update_time` datetime DEFAULT NULL COMMENT '更新时间',
|
|
PRIMARY KEY (`id`)
|
|
) ENGINE=InnoDB AUTO_INCREMENT=1892770300983623683 DEFAULT CHARSET=utf8 COMMENT='用户好友表';
|
|
|
|
-- ----------------------------
|
|
-- Records of t_user_friend
|
|
-- ----------------------------
|
|
BEGIN;
|
|
INSERT INTO `t_user_friend` (`id`, `user_id`, `friend_id`, `status`, `del_flag`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1892770275608084481, '1', '4', 0, '0', 'admin', '2025-02-21 10:56:14', 'admin', '2025-02-21 10:56:25');
|
|
INSERT INTO `t_user_friend` (`id`, `user_id`, `friend_id`, `status`, `del_flag`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1892770300983623682, '2', '4', 0, '0', 'admin', '2025-02-21 10:56:20', 'admin', '2025-02-21 10:56:20');
|
|
COMMIT;
|
|
|
|
-- ----------------------------
|
|
-- Table structure for t_user_info
|
|
-- ----------------------------
|
|
DROP TABLE IF EXISTS `t_user_info`;
|
|
CREATE TABLE `t_user_info` (
|
|
`id` bigint NOT NULL AUTO_INCREMENT COMMENT '唯一ID',
|
|
`user_id` varchar(255) DEFAULT NULL COMMENT '用户ID',
|
|
`user_code` varchar(255) DEFAULT NULL COMMENT '用户唯一编码',
|
|
`name` varchar(255) DEFAULT NULL COMMENT '姓名',
|
|
`gender` varchar(255) DEFAULT NULL COMMENT '性别',
|
|
`id_card` varchar(255) DEFAULT NULL COMMENT '唯一ID(身份证)',
|
|
`phone` varchar(255) DEFAULT NULL COMMENT '手机号',
|
|
`age` varchar(255) DEFAULT NULL COMMENT '年龄',
|
|
`addr` varchar(255) DEFAULT NULL COMMENT '地址',
|
|
`status` char(1) DEFAULT '0' COMMENT '用户状态(0正常 1停用)',
|
|
`del_flag` char(1) DEFAULT '0' COMMENT '删除标志(0代表存在 2代表删除)',
|
|
`create_by` varchar(64) DEFAULT NULL COMMENT '创建者',
|
|
`create_time` datetime DEFAULT NULL COMMENT '创建时间',
|
|
`update_by` varchar(64) DEFAULT NULL COMMENT '更新者',
|
|
`update_time` datetime DEFAULT NULL COMMENT '更新时间',
|
|
PRIMARY KEY (`id`)
|
|
) ENGINE=InnoDB AUTO_INCREMENT=1892770402968125443 DEFAULT CHARSET=utf8 COMMENT='用户信息表';
|
|
|
|
-- ----------------------------
|
|
-- Records of t_user_info
|
|
-- ----------------------------
|
|
BEGIN;
|
|
INSERT INTO `t_user_info` (`id`, `user_id`, `user_code`, `name`, `gender`, `id_card`, `phone`, `age`, `addr`, `status`, `del_flag`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1892770402968125442, '13', 'CODE', 'SI', NULL, NULL, '22334', '12', NULL, '0', '0', 'admin', '2025-02-21 10:56:45', 'admin', '2025-02-21 10:56:55');
|
|
COMMIT;
|
|
|
|
-- ----------------------------
|
|
-- Table structure for t_user_passwd
|
|
-- ----------------------------
|
|
DROP TABLE IF EXISTS `t_user_passwd`;
|
|
CREATE TABLE `t_user_passwd` (
|
|
`id` bigint NOT NULL AUTO_INCREMENT COMMENT '唯一ID',
|
|
`user_id` varchar(64) DEFAULT NULL COMMENT '用户id',
|
|
`pay_passwd` varchar(64) DEFAULT '0' COMMENT '支付密码(数字组合)',
|
|
`phone_lock` varchar(256) DEFAULT NULL COMMENT '设备锁(九宫)',
|
|
`login_passwd` varchar(255) DEFAULT NULL COMMENT '登录密码(数字组合)',
|
|
`pay_status` int DEFAULT '0' COMMENT '支付状态(0正常,1仅收款,2冻结)',
|
|
`del_flag` char(1) DEFAULT '0' COMMENT '删除标志(0代表存在 2代表删除)',
|
|
`create_by` varchar(64) DEFAULT NULL COMMENT '创建者',
|
|
`create_time` datetime DEFAULT NULL COMMENT '创建时间',
|
|
`update_by` varchar(64) DEFAULT NULL COMMENT '更新者',
|
|
`update_time` datetime DEFAULT NULL COMMENT '更新时间',
|
|
PRIMARY KEY (`id`)
|
|
) ENGINE=InnoDB AUTO_INCREMENT=1892770517887860738 DEFAULT CHARSET=utf8 COMMENT='用户密码表';
|
|
|
|
-- ----------------------------
|
|
-- Records of t_user_passwd
|
|
-- ----------------------------
|
|
BEGIN;
|
|
INSERT INTO `t_user_passwd` (`id`, `user_id`, `pay_passwd`, `phone_lock`, `login_passwd`, `pay_status`, `del_flag`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1892770517887860737, '1', '234123', '23WEFWE2123-12', '2231', 0, '0', 'admin', '2025-02-21 10:57:12', 'admin', '2025-02-21 10:57:18');
|
|
COMMIT;
|
|
|
|
-- ----------------------------
|
|
-- Table structure for t_user_register
|
|
-- ----------------------------
|
|
DROP TABLE IF EXISTS `t_user_register`;
|
|
CREATE TABLE `t_user_register` (
|
|
`id` bigint NOT NULL AUTO_INCREMENT COMMENT '唯一ID',
|
|
`user_id` varchar(255) DEFAULT NULL COMMENT '用户id',
|
|
`name` varchar(255) DEFAULT NULL COMMENT '名字',
|
|
`phone` varchar(255) DEFAULT NULL COMMENT '电话',
|
|
`passwd` varchar(255) DEFAULT NULL COMMENT '密码',
|
|
`verify_code` varchar(255) DEFAULT NULL COMMENT '验证码',
|
|
`status` int DEFAULT '0' COMMENT '状态(0发起,1拒绝,2通过)',
|
|
`del_flag` char(1) DEFAULT '0' COMMENT '删除标志(0代表存在 2代表删除)',
|
|
`create_by` varchar(64) DEFAULT NULL COMMENT '创建者',
|
|
`create_time` datetime DEFAULT NULL COMMENT '创建时间',
|
|
`update_by` varchar(64) DEFAULT NULL COMMENT '更新者',
|
|
`update_time` datetime DEFAULT NULL COMMENT '更新时间',
|
|
PRIMARY KEY (`id`)
|
|
) ENGINE=InnoDB AUTO_INCREMENT=1892763076366295042 DEFAULT CHARSET=utf8 COMMENT='用户注册表';
|
|
|
|
-- ----------------------------
|
|
-- Records of t_user_register
|
|
-- ----------------------------
|
|
BEGIN;
|
|
INSERT INTO `t_user_register` (`id`, `user_id`, `name`, `phone`, `passwd`, `verify_code`, `status`, `del_flag`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1892763076366295041, '1', '23', '44', '3', '4', 0, '0', 'admin', '2025-02-21 10:27:38', 'admin', '2025-02-21 10:27:45');
|
|
COMMIT;
|
|
|
|
-- ----------------------------
|
|
-- Table structure for test_demo
|
|
-- ----------------------------
|
|
DROP TABLE IF EXISTS `test_demo`;
|
|
CREATE TABLE `test_demo` (
|
|
`id` bigint NOT NULL COMMENT '主键',
|
|
`dept_id` bigint DEFAULT NULL COMMENT '部门id',
|
|
`user_id` bigint DEFAULT NULL COMMENT '用户id',
|
|
`order_num` int DEFAULT '0' COMMENT '排序号',
|
|
`test_key` varchar(255) DEFAULT NULL COMMENT 'key键',
|
|
`value` varchar(255) DEFAULT NULL COMMENT '值',
|
|
`version` int DEFAULT '0' COMMENT '版本',
|
|
`create_time` datetime DEFAULT NULL COMMENT '创建时间',
|
|
`create_by` varchar(64) DEFAULT NULL COMMENT '创建人',
|
|
`update_time` datetime DEFAULT NULL COMMENT '更新时间',
|
|
`update_by` varchar(64) DEFAULT NULL COMMENT '更新人',
|
|
`del_flag` int DEFAULT '0' COMMENT '删除标志',
|
|
PRIMARY KEY (`id`) USING BTREE
|
|
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='测试单表';
|
|
|
|
-- ----------------------------
|
|
-- Records of test_demo
|
|
-- ----------------------------
|
|
BEGIN;
|
|
INSERT INTO `test_demo` (`id`, `dept_id`, `user_id`, `order_num`, `test_key`, `value`, `version`, `create_time`, `create_by`, `update_time`, `update_by`, `del_flag`) VALUES (1, 102, 4, 1, '测试数据权限', '测试', 0, '2025-02-19 05:36:01', 'admin', NULL, NULL, 0);
|
|
INSERT INTO `test_demo` (`id`, `dept_id`, `user_id`, `order_num`, `test_key`, `value`, `version`, `create_time`, `create_by`, `update_time`, `update_by`, `del_flag`) VALUES (2, 102, 3, 2, '子节点1', '111', 0, '2025-02-19 05:36:01', 'admin', NULL, NULL, 0);
|
|
INSERT INTO `test_demo` (`id`, `dept_id`, `user_id`, `order_num`, `test_key`, `value`, `version`, `create_time`, `create_by`, `update_time`, `update_by`, `del_flag`) VALUES (3, 102, 3, 3, '子节点2', '222', 0, '2025-02-19 05:36:01', 'admin', NULL, NULL, 0);
|
|
INSERT INTO `test_demo` (`id`, `dept_id`, `user_id`, `order_num`, `test_key`, `value`, `version`, `create_time`, `create_by`, `update_time`, `update_by`, `del_flag`) VALUES (4, 108, 4, 4, '测试数据', 'demo', 0, '2025-02-19 05:36:01', 'admin', NULL, NULL, 0);
|
|
INSERT INTO `test_demo` (`id`, `dept_id`, `user_id`, `order_num`, `test_key`, `value`, `version`, `create_time`, `create_by`, `update_time`, `update_by`, `del_flag`) VALUES (5, 108, 3, 13, '子节点11', '1111', 0, '2025-02-19 05:36:01', 'admin', NULL, NULL, 0);
|
|
INSERT INTO `test_demo` (`id`, `dept_id`, `user_id`, `order_num`, `test_key`, `value`, `version`, `create_time`, `create_by`, `update_time`, `update_by`, `del_flag`) VALUES (6, 108, 3, 12, '子节点22', '2222', 0, '2025-02-19 05:36:01', 'admin', NULL, NULL, 0);
|
|
INSERT INTO `test_demo` (`id`, `dept_id`, `user_id`, `order_num`, `test_key`, `value`, `version`, `create_time`, `create_by`, `update_time`, `update_by`, `del_flag`) VALUES (7, 108, 3, 11, '子节点33', '3333', 0, '2025-02-19 05:36:01', 'admin', NULL, NULL, 0);
|
|
INSERT INTO `test_demo` (`id`, `dept_id`, `user_id`, `order_num`, `test_key`, `value`, `version`, `create_time`, `create_by`, `update_time`, `update_by`, `del_flag`) VALUES (8, 108, 3, 10, '子节点44', '4444', 0, '2025-02-19 05:36:01', 'admin', NULL, NULL, 0);
|
|
INSERT INTO `test_demo` (`id`, `dept_id`, `user_id`, `order_num`, `test_key`, `value`, `version`, `create_time`, `create_by`, `update_time`, `update_by`, `del_flag`) VALUES (9, 108, 3, 9, '子节点55', '5555', 0, '2025-02-19 05:36:01', 'admin', NULL, NULL, 0);
|
|
INSERT INTO `test_demo` (`id`, `dept_id`, `user_id`, `order_num`, `test_key`, `value`, `version`, `create_time`, `create_by`, `update_time`, `update_by`, `del_flag`) VALUES (10, 108, 3, 8, '子节点66', '6666', 0, '2025-02-19 05:36:01', 'admin', NULL, NULL, 0);
|
|
INSERT INTO `test_demo` (`id`, `dept_id`, `user_id`, `order_num`, `test_key`, `value`, `version`, `create_time`, `create_by`, `update_time`, `update_by`, `del_flag`) VALUES (11, 108, 3, 7, '子节点77', '7777', 0, '2025-02-19 05:36:01', 'admin', NULL, NULL, 0);
|
|
INSERT INTO `test_demo` (`id`, `dept_id`, `user_id`, `order_num`, `test_key`, `value`, `version`, `create_time`, `create_by`, `update_time`, `update_by`, `del_flag`) VALUES (12, 108, 3, 6, '子节点88', '8888', 0, '2025-02-19 05:36:01', 'admin', NULL, NULL, 0);
|
|
INSERT INTO `test_demo` (`id`, `dept_id`, `user_id`, `order_num`, `test_key`, `value`, `version`, `create_time`, `create_by`, `update_time`, `update_by`, `del_flag`) VALUES (13, 108, 3, 5, '子节点99', '9999', 0, '2025-02-19 05:36:01', 'admin', NULL, NULL, 0);
|
|
COMMIT;
|
|
|
|
-- ----------------------------
|
|
-- Table structure for test_tree
|
|
-- ----------------------------
|
|
DROP TABLE IF EXISTS `test_tree`;
|
|
CREATE TABLE `test_tree` (
|
|
`id` bigint NOT NULL COMMENT '主键',
|
|
`parent_id` bigint DEFAULT '0' COMMENT '父id',
|
|
`dept_id` bigint DEFAULT NULL COMMENT '部门id',
|
|
`user_id` bigint DEFAULT NULL COMMENT '用户id',
|
|
`tree_name` varchar(255) DEFAULT NULL COMMENT '值',
|
|
`version` int DEFAULT '0' COMMENT '版本',
|
|
`create_time` datetime DEFAULT NULL COMMENT '创建时间',
|
|
`create_by` varchar(64) DEFAULT NULL COMMENT '创建人',
|
|
`update_time` datetime DEFAULT NULL COMMENT '更新时间',
|
|
`update_by` varchar(64) DEFAULT NULL COMMENT '更新人',
|
|
`del_flag` int DEFAULT '0' COMMENT '删除标志',
|
|
PRIMARY KEY (`id`) USING BTREE
|
|
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='测试树表';
|
|
|
|
-- ----------------------------
|
|
-- Records of test_tree
|
|
-- ----------------------------
|
|
BEGIN;
|
|
INSERT INTO `test_tree` (`id`, `parent_id`, `dept_id`, `user_id`, `tree_name`, `version`, `create_time`, `create_by`, `update_time`, `update_by`, `del_flag`) VALUES (1, 0, 102, 4, '测试数据权限', 0, '2025-02-19 05:36:01', 'admin', NULL, NULL, 0);
|
|
INSERT INTO `test_tree` (`id`, `parent_id`, `dept_id`, `user_id`, `tree_name`, `version`, `create_time`, `create_by`, `update_time`, `update_by`, `del_flag`) VALUES (2, 1, 102, 3, '子节点1', 0, '2025-02-19 05:36:01', 'admin', NULL, NULL, 0);
|
|
INSERT INTO `test_tree` (`id`, `parent_id`, `dept_id`, `user_id`, `tree_name`, `version`, `create_time`, `create_by`, `update_time`, `update_by`, `del_flag`) VALUES (3, 2, 102, 3, '子节点2', 0, '2025-02-19 05:36:01', 'admin', NULL, NULL, 0);
|
|
INSERT INTO `test_tree` (`id`, `parent_id`, `dept_id`, `user_id`, `tree_name`, `version`, `create_time`, `create_by`, `update_time`, `update_by`, `del_flag`) VALUES (4, 0, 108, 4, '测试树1', 0, '2025-02-19 05:36:01', 'admin', NULL, NULL, 0);
|
|
INSERT INTO `test_tree` (`id`, `parent_id`, `dept_id`, `user_id`, `tree_name`, `version`, `create_time`, `create_by`, `update_time`, `update_by`, `del_flag`) VALUES (5, 4, 108, 3, '子节点11', 0, '2025-02-19 05:36:01', 'admin', NULL, NULL, 0);
|
|
INSERT INTO `test_tree` (`id`, `parent_id`, `dept_id`, `user_id`, `tree_name`, `version`, `create_time`, `create_by`, `update_time`, `update_by`, `del_flag`) VALUES (6, 4, 108, 3, '子节点22', 0, '2025-02-19 05:36:01', 'admin', NULL, NULL, 0);
|
|
INSERT INTO `test_tree` (`id`, `parent_id`, `dept_id`, `user_id`, `tree_name`, `version`, `create_time`, `create_by`, `update_time`, `update_by`, `del_flag`) VALUES (7, 4, 108, 3, '子节点33', 0, '2025-02-19 05:36:01', 'admin', NULL, NULL, 0);
|
|
INSERT INTO `test_tree` (`id`, `parent_id`, `dept_id`, `user_id`, `tree_name`, `version`, `create_time`, `create_by`, `update_time`, `update_by`, `del_flag`) VALUES (8, 5, 108, 3, '子节点44', 0, '2025-02-19 05:36:01', 'admin', NULL, NULL, 0);
|
|
INSERT INTO `test_tree` (`id`, `parent_id`, `dept_id`, `user_id`, `tree_name`, `version`, `create_time`, `create_by`, `update_time`, `update_by`, `del_flag`) VALUES (9, 6, 108, 3, '子节点55', 0, '2025-02-19 05:36:01', 'admin', NULL, NULL, 0);
|
|
INSERT INTO `test_tree` (`id`, `parent_id`, `dept_id`, `user_id`, `tree_name`, `version`, `create_time`, `create_by`, `update_time`, `update_by`, `del_flag`) VALUES (10, 7, 108, 3, '子节点66', 0, '2025-02-19 05:36:01', 'admin', NULL, NULL, 0);
|
|
INSERT INTO `test_tree` (`id`, `parent_id`, `dept_id`, `user_id`, `tree_name`, `version`, `create_time`, `create_by`, `update_time`, `update_by`, `del_flag`) VALUES (11, 7, 108, 3, '子节点77', 0, '2025-02-19 05:36:01', 'admin', NULL, NULL, 0);
|
|
INSERT INTO `test_tree` (`id`, `parent_id`, `dept_id`, `user_id`, `tree_name`, `version`, `create_time`, `create_by`, `update_time`, `update_by`, `del_flag`) VALUES (12, 10, 108, 3, '子节点88', 0, '2025-02-19 05:36:01', 'admin', NULL, NULL, 0);
|
|
INSERT INTO `test_tree` (`id`, `parent_id`, `dept_id`, `user_id`, `tree_name`, `version`, `create_time`, `create_by`, `update_time`, `update_by`, `del_flag`) VALUES (13, 10, 108, 3, '子节点99', 0, '2025-02-19 05:36:01', 'admin', NULL, NULL, 0);
|
|
COMMIT;
|
|
|
|
-- ----------------------------
|
|
-- Table structure for xxl_job_group
|
|
-- ----------------------------
|
|
DROP TABLE IF EXISTS `xxl_job_group`;
|
|
CREATE TABLE `xxl_job_group` (
|
|
`id` int NOT NULL AUTO_INCREMENT,
|
|
`app_name` varchar(64) NOT NULL COMMENT '执行器AppName',
|
|
`title` varchar(12) NOT NULL COMMENT '执行器名称',
|
|
`address_type` tinyint NOT NULL DEFAULT '0' COMMENT '执行器地址类型:0=自动注册、1=手动录入',
|
|
`address_list` text COMMENT '执行器地址列表,多地址逗号分隔',
|
|
`update_time` datetime DEFAULT NULL,
|
|
PRIMARY KEY (`id`)
|
|
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci;
|
|
|
|
-- ----------------------------
|
|
-- Records of xxl_job_group
|
|
-- ----------------------------
|
|
BEGIN;
|
|
INSERT INTO `xxl_job_group` (`id`, `app_name`, `title`, `address_type`, `address_list`, `update_time`) VALUES (1, 'xxl-job-executor', '示例执行器', 0, NULL, '2018-11-03 22:21:31');
|
|
COMMIT;
|
|
|
|
-- ----------------------------
|
|
-- Table structure for xxl_job_info
|
|
-- ----------------------------
|
|
DROP TABLE IF EXISTS `xxl_job_info`;
|
|
CREATE TABLE `xxl_job_info` (
|
|
`id` int NOT NULL AUTO_INCREMENT,
|
|
`job_group` int NOT NULL COMMENT '执行器主键ID',
|
|
`job_desc` varchar(255) NOT NULL,
|
|
`add_time` datetime DEFAULT NULL,
|
|
`update_time` datetime DEFAULT NULL,
|
|
`author` varchar(64) DEFAULT NULL COMMENT '作者',
|
|
`alarm_email` varchar(255) DEFAULT NULL COMMENT '报警邮件',
|
|
`schedule_type` varchar(50) NOT NULL DEFAULT 'NONE' COMMENT '调度类型',
|
|
`schedule_conf` varchar(128) DEFAULT NULL COMMENT '调度配置,值含义取决于调度类型',
|
|
`misfire_strategy` varchar(50) NOT NULL DEFAULT 'DO_NOTHING' COMMENT '调度过期策略',
|
|
`executor_route_strategy` varchar(50) DEFAULT NULL COMMENT '执行器路由策略',
|
|
`executor_handler` varchar(255) DEFAULT NULL COMMENT '执行器任务handler',
|
|
`executor_param` varchar(512) DEFAULT NULL COMMENT '执行器任务参数',
|
|
`executor_block_strategy` varchar(50) DEFAULT NULL COMMENT '阻塞处理策略',
|
|
`executor_timeout` int NOT NULL DEFAULT '0' COMMENT '任务执行超时时间,单位秒',
|
|
`executor_fail_retry_count` int NOT NULL DEFAULT '0' COMMENT '失败重试次数',
|
|
`glue_type` varchar(50) NOT NULL COMMENT 'GLUE类型',
|
|
`glue_source` mediumtext COMMENT 'GLUE源代码',
|
|
`glue_remark` varchar(128) DEFAULT NULL COMMENT 'GLUE备注',
|
|
`glue_updatetime` datetime DEFAULT NULL COMMENT 'GLUE更新时间',
|
|
`child_jobid` varchar(255) DEFAULT NULL COMMENT '子任务ID,多个逗号分隔',
|
|
`trigger_status` tinyint NOT NULL DEFAULT '0' COMMENT '调度状态:0-停止,1-运行',
|
|
`trigger_last_time` bigint NOT NULL DEFAULT '0' COMMENT '上次调度时间',
|
|
`trigger_next_time` bigint NOT NULL DEFAULT '0' COMMENT '下次调度时间',
|
|
PRIMARY KEY (`id`)
|
|
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci;
|
|
|
|
-- ----------------------------
|
|
-- Records of xxl_job_info
|
|
-- ----------------------------
|
|
BEGIN;
|
|
INSERT INTO `xxl_job_info` (`id`, `job_group`, `job_desc`, `add_time`, `update_time`, `author`, `alarm_email`, `schedule_type`, `schedule_conf`, `misfire_strategy`, `executor_route_strategy`, `executor_handler`, `executor_param`, `executor_block_strategy`, `executor_timeout`, `executor_fail_retry_count`, `glue_type`, `glue_source`, `glue_remark`, `glue_updatetime`, `child_jobid`, `trigger_status`, `trigger_last_time`, `trigger_next_time`) VALUES (1, 1, '测试任务1', '2018-11-03 22:21:31', '2018-11-03 22:21:31', 'XXL', '', 'CRON', '0 0 0 * * ? *', 'DO_NOTHING', 'FIRST', 'demoJobHandler', '', 'SERIAL_EXECUTION', 0, 0, 'BEAN', '', 'GLUE代码初始化', '2018-11-03 22:21:31', '', 0, 0, 0);
|
|
COMMIT;
|
|
|
|
-- ----------------------------
|
|
-- Table structure for xxl_job_lock
|
|
-- ----------------------------
|
|
DROP TABLE IF EXISTS `xxl_job_lock`;
|
|
CREATE TABLE `xxl_job_lock` (
|
|
`lock_name` varchar(50) NOT NULL COMMENT '锁名称',
|
|
PRIMARY KEY (`lock_name`)
|
|
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci;
|
|
|
|
-- ----------------------------
|
|
-- Records of xxl_job_lock
|
|
-- ----------------------------
|
|
BEGIN;
|
|
INSERT INTO `xxl_job_lock` (`lock_name`) VALUES ('schedule_lock');
|
|
COMMIT;
|
|
|
|
-- ----------------------------
|
|
-- Table structure for xxl_job_log
|
|
-- ----------------------------
|
|
DROP TABLE IF EXISTS `xxl_job_log`;
|
|
CREATE TABLE `xxl_job_log` (
|
|
`id` bigint NOT NULL AUTO_INCREMENT,
|
|
`job_group` int NOT NULL COMMENT '执行器主键ID',
|
|
`job_id` int NOT NULL COMMENT '任务,主键ID',
|
|
`executor_address` varchar(255) DEFAULT NULL COMMENT '执行器地址,本次执行的地址',
|
|
`executor_handler` varchar(255) DEFAULT NULL COMMENT '执行器任务handler',
|
|
`executor_param` varchar(512) DEFAULT NULL COMMENT '执行器任务参数',
|
|
`executor_sharding_param` varchar(20) DEFAULT NULL COMMENT '执行器任务分片参数,格式如 1/2',
|
|
`executor_fail_retry_count` int NOT NULL DEFAULT '0' COMMENT '失败重试次数',
|
|
`trigger_time` datetime DEFAULT NULL COMMENT '调度-时间',
|
|
`trigger_code` int NOT NULL COMMENT '调度-结果',
|
|
`trigger_msg` text COMMENT '调度-日志',
|
|
`handle_time` datetime DEFAULT NULL COMMENT '执行-时间',
|
|
`handle_code` int NOT NULL COMMENT '执行-状态',
|
|
`handle_msg` text COMMENT '执行-日志',
|
|
`alarm_status` tinyint NOT NULL DEFAULT '0' COMMENT '告警状态:0-默认、1-无需告警、2-告警成功、3-告警失败',
|
|
PRIMARY KEY (`id`),
|
|
KEY `I_trigger_time` (`trigger_time`),
|
|
KEY `I_handle_code` (`handle_code`)
|
|
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci;
|
|
|
|
-- ----------------------------
|
|
-- Records of xxl_job_log
|
|
-- ----------------------------
|
|
BEGIN;
|
|
COMMIT;
|
|
|
|
-- ----------------------------
|
|
-- Table structure for xxl_job_log_report
|
|
-- ----------------------------
|
|
DROP TABLE IF EXISTS `xxl_job_log_report`;
|
|
CREATE TABLE `xxl_job_log_report` (
|
|
`id` int NOT NULL AUTO_INCREMENT,
|
|
`trigger_day` datetime DEFAULT NULL COMMENT '调度-时间',
|
|
`running_count` int NOT NULL DEFAULT '0' COMMENT '运行中-日志数量',
|
|
`suc_count` int NOT NULL DEFAULT '0' COMMENT '执行成功-日志数量',
|
|
`fail_count` int NOT NULL DEFAULT '0' COMMENT '执行失败-日志数量',
|
|
`update_time` datetime DEFAULT NULL,
|
|
PRIMARY KEY (`id`),
|
|
UNIQUE KEY `i_trigger_day` (`trigger_day`) USING BTREE
|
|
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci;
|
|
|
|
-- ----------------------------
|
|
-- Records of xxl_job_log_report
|
|
-- ----------------------------
|
|
BEGIN;
|
|
COMMIT;
|
|
|
|
-- ----------------------------
|
|
-- Table structure for xxl_job_logglue
|
|
-- ----------------------------
|
|
DROP TABLE IF EXISTS `xxl_job_logglue`;
|
|
CREATE TABLE `xxl_job_logglue` (
|
|
`id` int NOT NULL AUTO_INCREMENT,
|
|
`job_id` int NOT NULL COMMENT '任务,主键ID',
|
|
`glue_type` varchar(50) DEFAULT NULL COMMENT 'GLUE类型',
|
|
`glue_source` mediumtext COMMENT 'GLUE源代码',
|
|
`glue_remark` varchar(128) NOT NULL COMMENT 'GLUE备注',
|
|
`add_time` datetime DEFAULT NULL,
|
|
`update_time` datetime DEFAULT NULL,
|
|
PRIMARY KEY (`id`)
|
|
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci;
|
|
|
|
-- ----------------------------
|
|
-- Records of xxl_job_logglue
|
|
-- ----------------------------
|
|
BEGIN;
|
|
COMMIT;
|
|
|
|
-- ----------------------------
|
|
-- Table structure for xxl_job_registry
|
|
-- ----------------------------
|
|
DROP TABLE IF EXISTS `xxl_job_registry`;
|
|
CREATE TABLE `xxl_job_registry` (
|
|
`id` int NOT NULL AUTO_INCREMENT,
|
|
`registry_group` varchar(50) NOT NULL,
|
|
`registry_key` varchar(255) NOT NULL,
|
|
`registry_value` varchar(255) NOT NULL,
|
|
`update_time` datetime DEFAULT NULL,
|
|
PRIMARY KEY (`id`),
|
|
KEY `i_g_k_v` (`registry_group`,`registry_key`,`registry_value`)
|
|
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci;
|
|
|
|
-- ----------------------------
|
|
-- Records of xxl_job_registry
|
|
-- ----------------------------
|
|
BEGIN;
|
|
COMMIT;
|
|
|
|
-- ----------------------------
|
|
-- Table structure for xxl_job_user
|
|
-- ----------------------------
|
|
DROP TABLE IF EXISTS `xxl_job_user`;
|
|
CREATE TABLE `xxl_job_user` (
|
|
`id` int NOT NULL AUTO_INCREMENT,
|
|
`username` varchar(50) NOT NULL COMMENT '账号',
|
|
`password` varchar(50) NOT NULL COMMENT '密码',
|
|
`role` tinyint NOT NULL COMMENT '角色:0-普通用户、1-管理员',
|
|
`permission` varchar(255) DEFAULT NULL COMMENT '权限:执行器ID列表,多个逗号分割',
|
|
PRIMARY KEY (`id`),
|
|
UNIQUE KEY `i_username` (`username`) USING BTREE
|
|
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci;
|
|
|
|
-- ----------------------------
|
|
-- Records of xxl_job_user
|
|
-- ----------------------------
|
|
BEGIN;
|
|
INSERT INTO `xxl_job_user` (`id`, `username`, `password`, `role`, `permission`) VALUES (1, 'admin', 'e10adc3949ba59abbe56e057f20f883e', 1, NULL);
|
|
COMMIT;
|
|
|
|
SET FOREIGN_KEY_CHECKS = 1;
|
|
|