sadjv3_java/db/三期/artificer_partitioning_deta...

56 lines
3.1 KiB
SQL

/*
Navicat Premium Data Transfer
Source Server : 192.168.1.102
Source Server Type : MySQL
Source Server Version : 50722 (5.7.22-log)
Source Host : 192.168.1.102:3306
Source Schema : anmoceshi
Target Server Type : MySQL
Target Server Version : 50722 (5.7.22-log)
File Encoding : 65001
Date: 21/03/2024 15:08:11
*/
SET NAMES utf8mb4;
SET FOREIGN_KEY_CHECKS = 0;
-- ----------------------------
-- Table structure for artificer_partitioning_details
-- ----------------------------
DROP TABLE IF EXISTS `artificer_partitioning_details`;
CREATE TABLE `artificer_partitioning_details` (
`id` bigint(20) NOT NULL,
`grade` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL COMMENT '等级',
`outstanding_achievement` decimal(20, 2) NULL DEFAULT NULL COMMENT '最低业绩',
`clock_rate` decimal(20, 2) NULL DEFAULT NULL COMMENT '加钟率',
`deposit_rate` decimal(20, 2) NULL DEFAULT NULL COMMENT '充值率',
`duration_online` int(11) NULL DEFAULT NULL COMMENT '在线时长',
`integral` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL COMMENT '积分',
`proportional_sharing` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT '0' COMMENT '分成比例',
`classify_id` int(11) NULL DEFAULT NULL COMMENT '项目类型id',
PRIMARY KEY (`id`) USING BTREE
) ENGINE = InnoDB CHARACTER SET = utf8mb4 COLLATE = utf8mb4_general_ci COMMENT = '技师等级表' ROW_FORMAT = Dynamic;
-- ----------------------------
-- Records of artificer_partitioning_details
-- ----------------------------
INSERT INTO `artificer_partitioning_details` VALUES (1, '', 0.00, 0.00, 0.00, 0, '0', '0.65', 91);
INSERT INTO `artificer_partitioning_details` VALUES (3, 'A0', 0.00, 0.00, 0.00, 50, '0', '0.6', 91);
INSERT INTO `artificer_partitioning_details` VALUES (5, 'A1', 4000.00, 0.06, 0.10, 80, '0', '0.7', 91);
INSERT INTO `artificer_partitioning_details` VALUES (7, 'A2', 6000.00, 0.15, 0.15, 0, '1000', '0.75', 91);
INSERT INTO `artificer_partitioning_details` VALUES (9, 'A3', 8000.00, 0.20, 0.20, 0, '1200', '0.8', 91);
INSERT INTO `artificer_partitioning_details` VALUES (11, 'A4', 10000.00, 0.30, 0.30, 0, '2500', '0.9', 91);
INSERT INTO `artificer_partitioning_details` VALUES (13, 'A5', 12000.00, 0.35, 0.35, 0, '6000', '0.95', 91);
INSERT INTO `artificer_partitioning_details` VALUES (27, '', 0.00, 0.00, 0.00, 0, '0', '0.65', 95);
INSERT INTO `artificer_partitioning_details` VALUES (29, 'A0', 0.00, 0.00, 0.00, 50, '0', '0.6', 95);
INSERT INTO `artificer_partitioning_details` VALUES (31, 'A1', 4000.00, 0.10, 0.20, 80, '0', '0.7', 95);
INSERT INTO `artificer_partitioning_details` VALUES (33, 'A2', 6000.00, 0.15, 0.15, 0, '1000', '0.75', 95);
INSERT INTO `artificer_partitioning_details` VALUES (35, 'A3', 8000.00, 0.20, 0.20, 0, '1200', '0.8', 95);
INSERT INTO `artificer_partitioning_details` VALUES (37, 'A4', 10000.00, 0.30, 0.30, 0, '2500', '0.9', 95);
INSERT INTO `artificer_partitioning_details` VALUES (39, 'A5', 12000.00, 0.35, 0.35, 0, '6000', '0.95', 95);
SET FOREIGN_KEY_CHECKS = 1;