2021-10-11 10:00:13 +00:00
|
|
|
|
CREATE database if NOT EXISTS `jimureport` default character set utf8mb4 collate utf8mb4_unicode_ci;
|
|
|
|
|
use `jimureport`;
|
2021-06-23 03:13:11 +00:00
|
|
|
|
/*
|
|
|
|
|
Navicat Premium Data Transfer
|
|
|
|
|
|
|
|
|
|
Source Server : mysql5.7
|
|
|
|
|
Source Server Type : MySQL
|
2022-12-07 13:22:18 +00:00
|
|
|
|
Source Server Version : 50738
|
2021-06-23 03:13:11 +00:00
|
|
|
|
Source Host : 127.0.0.1:3306
|
|
|
|
|
Source Schema : jimureport
|
|
|
|
|
|
|
|
|
|
Target Server Type : MySQL
|
2022-12-07 13:22:18 +00:00
|
|
|
|
Target Server Version : 50738
|
2021-06-23 03:13:11 +00:00
|
|
|
|
File Encoding : 65001
|
|
|
|
|
|
2024-02-18 11:29:58 +00:00
|
|
|
|
Date: 18/02/2024 19:28:44
|
2021-06-23 03:13:11 +00:00
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
SET NAMES utf8mb4;
|
|
|
|
|
SET FOREIGN_KEY_CHECKS = 0;
|
|
|
|
|
|
2023-09-08 16:18:56 +00:00
|
|
|
|
-- ----------------------------
|
|
|
|
|
-- Table structure for huiyuan_age
|
|
|
|
|
-- ----------------------------
|
|
|
|
|
DROP TABLE IF EXISTS `huiyuan_age`;
|
|
|
|
|
CREATE TABLE `huiyuan_age` (
|
|
|
|
|
`id` varchar(36) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NOT NULL,
|
|
|
|
|
`name` varchar(50) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL COMMENT '名称',
|
|
|
|
|
`value` varchar(20) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL COMMENT '值',
|
|
|
|
|
PRIMARY KEY (`id`) USING BTREE
|
|
|
|
|
) ENGINE = InnoDB CHARACTER SET = utf8mb4 COLLATE = utf8mb4_general_ci ROW_FORMAT = Dynamic;
|
|
|
|
|
|
|
|
|
|
-- ----------------------------
|
|
|
|
|
-- Records of huiyuan_age
|
|
|
|
|
-- ----------------------------
|
|
|
|
|
INSERT INTO `huiyuan_age` VALUES ('1339875613023969282', '25岁以下', '1500');
|
|
|
|
|
INSERT INTO `huiyuan_age` VALUES ('1339875692078211073', '26~30岁', '800');
|
|
|
|
|
INSERT INTO `huiyuan_age` VALUES ('1339875766099288066', '31~35岁', '1200');
|
|
|
|
|
INSERT INTO `huiyuan_age` VALUES ('1339875822382653442', '36~40岁', '1200');
|
|
|
|
|
INSERT INTO `huiyuan_age` VALUES ('1339875892473667586', '41~45岁', '1800');
|
|
|
|
|
INSERT INTO `huiyuan_age` VALUES ('1339875949587505153', '45~50岁', '1800');
|
|
|
|
|
INSERT INTO `huiyuan_age` VALUES ('1339876015857508354', '50岁以上', '2000');
|
|
|
|
|
|
|
|
|
|
-- ----------------------------
|
|
|
|
|
-- Table structure for huiyuan_fengongsi
|
|
|
|
|
-- ----------------------------
|
|
|
|
|
DROP TABLE IF EXISTS `huiyuan_fengongsi`;
|
|
|
|
|
CREATE TABLE `huiyuan_fengongsi` (
|
|
|
|
|
`id` varchar(36) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NOT NULL COMMENT '主键',
|
|
|
|
|
`name` varchar(50) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL COMMENT '名称',
|
|
|
|
|
`value` varchar(20) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL COMMENT '值',
|
|
|
|
|
`type` varchar(32) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL COMMENT '类型',
|
|
|
|
|
PRIMARY KEY (`id`) USING BTREE
|
|
|
|
|
) ENGINE = InnoDB CHARACTER SET = utf8mb4 COLLATE = utf8mb4_general_ci ROW_FORMAT = Dynamic;
|
|
|
|
|
|
|
|
|
|
-- ----------------------------
|
|
|
|
|
-- Records of huiyuan_fengongsi
|
|
|
|
|
-- ----------------------------
|
|
|
|
|
INSERT INTO `huiyuan_fengongsi` VALUES ('1339888040117575682', '广州', '5800', '会员数量');
|
|
|
|
|
INSERT INTO `huiyuan_fengongsi` VALUES ('1339888087966195714', '北京', '6500', '会员数量');
|
|
|
|
|
INSERT INTO `huiyuan_fengongsi` VALUES ('1339888128680304642', '河北', '3500', '会员数量');
|
|
|
|
|
INSERT INTO `huiyuan_fengongsi` VALUES ('1339888173316087809', '天津', '3000', '会员数量');
|
|
|
|
|
INSERT INTO `huiyuan_fengongsi` VALUES ('1339888235672805377', '山东', '2500', '会员数量');
|
|
|
|
|
INSERT INTO `huiyuan_fengongsi` VALUES ('1339888289066295297', '福建', '6500', '会员数量');
|
|
|
|
|
INSERT INTO `huiyuan_fengongsi` VALUES ('1339888343613218817', '上海', '7500', '会员数量');
|
|
|
|
|
|
|
|
|
|
-- ----------------------------
|
|
|
|
|
-- Table structure for huiyuan_huoyuedu
|
|
|
|
|
-- ----------------------------
|
|
|
|
|
DROP TABLE IF EXISTS `huiyuan_huoyuedu`;
|
|
|
|
|
CREATE TABLE `huiyuan_huoyuedu` (
|
|
|
|
|
`id` varchar(36) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NOT NULL,
|
|
|
|
|
`name` varchar(50) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL COMMENT '名称',
|
|
|
|
|
`value` varchar(20) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL COMMENT '值',
|
|
|
|
|
PRIMARY KEY (`id`) USING BTREE
|
|
|
|
|
) ENGINE = InnoDB CHARACTER SET = utf8mb4 COLLATE = utf8mb4_general_ci ROW_FORMAT = Dynamic;
|
|
|
|
|
|
|
|
|
|
-- ----------------------------
|
|
|
|
|
-- Records of huiyuan_huoyuedu
|
|
|
|
|
-- ----------------------------
|
|
|
|
|
INSERT INTO `huiyuan_huoyuedu` VALUES ('1339883861898731521', '08:00~10:00', '1500');
|
|
|
|
|
INSERT INTO `huiyuan_huoyuedu` VALUES ('1339883933516472322', '10:00~12:00', '1800');
|
|
|
|
|
INSERT INTO `huiyuan_huoyuedu` VALUES ('1339884020753801217', '12:00~14:00', '2500');
|
|
|
|
|
INSERT INTO `huiyuan_huoyuedu` VALUES ('1339884087271268353', '14:00~16:00', '3000');
|
|
|
|
|
INSERT INTO `huiyuan_huoyuedu` VALUES ('1339884151599308802', '16:00~18:00', '1500');
|
|
|
|
|
|
|
|
|
|
-- ----------------------------
|
|
|
|
|
-- Table structure for huiyuan_sex
|
|
|
|
|
-- ----------------------------
|
|
|
|
|
DROP TABLE IF EXISTS `huiyuan_sex`;
|
|
|
|
|
CREATE TABLE `huiyuan_sex` (
|
|
|
|
|
`id` varchar(36) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NOT NULL,
|
|
|
|
|
`name` varchar(50) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL COMMENT '性别',
|
|
|
|
|
`value` varchar(20) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL COMMENT '值',
|
|
|
|
|
PRIMARY KEY (`id`) USING BTREE
|
|
|
|
|
) ENGINE = InnoDB CHARACTER SET = utf8mb4 COLLATE = utf8mb4_general_ci ROW_FORMAT = Dynamic;
|
|
|
|
|
|
|
|
|
|
-- ----------------------------
|
|
|
|
|
-- Records of huiyuan_sex
|
|
|
|
|
-- ----------------------------
|
|
|
|
|
INSERT INTO `huiyuan_sex` VALUES ('1339872878782357506', '2', '8800');
|
|
|
|
|
INSERT INTO `huiyuan_sex` VALUES ('1339872907911798785', '1', '5000');
|
|
|
|
|
|
|
|
|
|
-- ----------------------------
|
|
|
|
|
-- Table structure for huiyuan_work
|
|
|
|
|
-- ----------------------------
|
|
|
|
|
DROP TABLE IF EXISTS `huiyuan_work`;
|
|
|
|
|
CREATE TABLE `huiyuan_work` (
|
|
|
|
|
`id` varchar(36) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NOT NULL,
|
|
|
|
|
`name` varchar(50) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL COMMENT '姓名',
|
|
|
|
|
`value` varchar(20) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL COMMENT '值',
|
|
|
|
|
PRIMARY KEY (`id`) USING BTREE
|
|
|
|
|
) ENGINE = InnoDB CHARACTER SET = utf8mb4 COLLATE = utf8mb4_general_ci ROW_FORMAT = Dynamic;
|
|
|
|
|
|
|
|
|
|
-- ----------------------------
|
|
|
|
|
-- Records of huiyuan_work
|
|
|
|
|
-- ----------------------------
|
|
|
|
|
INSERT INTO `huiyuan_work` VALUES ('1339878370892095489', '全职', '1200');
|
|
|
|
|
INSERT INTO `huiyuan_work` VALUES ('1339878416278659073', '兼职', '500');
|
|
|
|
|
INSERT INTO `huiyuan_work` VALUES ('1339878481793687553', '自由职业者', '5800');
|
|
|
|
|
|
|
|
|
|
-- ----------------------------
|
|
|
|
|
-- Table structure for huiyuan_wxtl
|
|
|
|
|
-- ----------------------------
|
|
|
|
|
DROP TABLE IF EXISTS `huiyuan_wxtl`;
|
|
|
|
|
CREATE TABLE `huiyuan_wxtl` (
|
|
|
|
|
`id` varchar(36) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NOT NULL,
|
|
|
|
|
`name` varchar(50) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL COMMENT '名称',
|
|
|
|
|
`value` varchar(20) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL COMMENT '值',
|
|
|
|
|
PRIMARY KEY (`id`) USING BTREE
|
|
|
|
|
) ENGINE = InnoDB CHARACTER SET = utf8mb4 COLLATE = utf8mb4_general_ci ROW_FORMAT = Dynamic;
|
|
|
|
|
|
|
|
|
|
-- ----------------------------
|
|
|
|
|
-- Records of huiyuan_wxtl
|
|
|
|
|
-- ----------------------------
|
|
|
|
|
INSERT INTO `huiyuan_wxtl` VALUES ('1338720458886877186', '宜兴市', '250');
|
|
|
|
|
INSERT INTO `huiyuan_wxtl` VALUES ('1338720538293440513', '江阴市', '500');
|
|
|
|
|
|
|
|
|
|
-- ----------------------------
|
|
|
|
|
-- Table structure for huiyuan_wxtlshuliang
|
|
|
|
|
-- ----------------------------
|
|
|
|
|
DROP TABLE IF EXISTS `huiyuan_wxtlshuliang`;
|
|
|
|
|
CREATE TABLE `huiyuan_wxtlshuliang` (
|
|
|
|
|
`id` varchar(36) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NOT NULL COMMENT '主键',
|
|
|
|
|
`name` varchar(50) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL COMMENT '名称',
|
|
|
|
|
`value` int(10) NULL DEFAULT NULL COMMENT '值',
|
|
|
|
|
PRIMARY KEY (`id`) USING BTREE
|
|
|
|
|
) ENGINE = InnoDB CHARACTER SET = utf8mb4 COLLATE = utf8mb4_general_ci ROW_FORMAT = Dynamic;
|
|
|
|
|
|
|
|
|
|
-- ----------------------------
|
|
|
|
|
-- Records of huiyuan_wxtlshuliang
|
|
|
|
|
-- ----------------------------
|
|
|
|
|
INSERT INTO `huiyuan_wxtlshuliang` VALUES ('1339869672819957762', '顾客', 394);
|
|
|
|
|
INSERT INTO `huiyuan_wxtlshuliang` VALUES ('1339869752553676802', '二星', 515);
|
|
|
|
|
INSERT INTO `huiyuan_wxtlshuliang` VALUES ('1339869801396346882', '一星', 334);
|
|
|
|
|
INSERT INTO `huiyuan_wxtlshuliang` VALUES ('1339869877590073345', '明星', 150);
|
|
|
|
|
INSERT INTO `huiyuan_wxtlshuliang` VALUES ('1339869910850904066', '总监', 54);
|
|
|
|
|
INSERT INTO `huiyuan_wxtlshuliang` VALUES ('1339869987145293826', '三星', 50);
|
|
|
|
|
INSERT INTO `huiyuan_wxtlshuliang` VALUES ('1339870030401150978', '大使', 17);
|
|
|
|
|
INSERT INTO `huiyuan_wxtlshuliang` VALUES ('1339870121811812354', '高级', 7);
|
|
|
|
|
INSERT INTO `huiyuan_wxtlshuliang` VALUES ('1339870161078886402', '金鹰', 2);
|
|
|
|
|
|
|
|
|
|
-- ----------------------------
|
|
|
|
|
-- Table structure for huiyuan_xueli
|
|
|
|
|
-- ----------------------------
|
|
|
|
|
DROP TABLE IF EXISTS `huiyuan_xueli`;
|
|
|
|
|
CREATE TABLE `huiyuan_xueli` (
|
|
|
|
|
`id` varchar(36) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NOT NULL,
|
|
|
|
|
`name` varchar(50) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL COMMENT '名称',
|
|
|
|
|
`value` varchar(20) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL COMMENT '值',
|
|
|
|
|
PRIMARY KEY (`id`) USING BTREE
|
|
|
|
|
) ENGINE = InnoDB CHARACTER SET = utf8mb4 COLLATE = utf8mb4_general_ci ROW_FORMAT = Dynamic;
|
|
|
|
|
|
|
|
|
|
-- ----------------------------
|
|
|
|
|
-- Records of huiyuan_xueli
|
|
|
|
|
-- ----------------------------
|
|
|
|
|
INSERT INTO `huiyuan_xueli` VALUES ('1339885864196546562', '本科', '9487');
|
|
|
|
|
INSERT INTO `huiyuan_xueli` VALUES ('1339885895406362625', '专科', '5400');
|
|
|
|
|
INSERT INTO `huiyuan_xueli` VALUES ('1339885927278878721', '高中', '3200');
|
|
|
|
|
INSERT INTO `huiyuan_xueli` VALUES ('1339885965992304641', '初中', '1900');
|
|
|
|
|
INSERT INTO `huiyuan_xueli` VALUES ('1339886032929202177', '未知', '1500');
|
|
|
|
|
|
2021-06-23 03:13:11 +00:00
|
|
|
|
-- ----------------------------
|
|
|
|
|
-- Table structure for jimu_dict
|
|
|
|
|
-- ----------------------------
|
|
|
|
|
DROP TABLE IF EXISTS `jimu_dict`;
|
|
|
|
|
CREATE TABLE `jimu_dict` (
|
|
|
|
|
`id` varchar(32) CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL,
|
|
|
|
|
`dict_name` varchar(100) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '字典名称',
|
|
|
|
|
`dict_code` varchar(100) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '字典编码',
|
|
|
|
|
`description` varchar(255) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '描述',
|
|
|
|
|
`del_flag` int(1) NULL DEFAULT NULL COMMENT '删除状态',
|
|
|
|
|
`create_by` varchar(32) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '创建人',
|
|
|
|
|
`create_time` datetime NULL DEFAULT NULL COMMENT '创建时间',
|
|
|
|
|
`update_by` varchar(32) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '更新人',
|
|
|
|
|
`update_time` datetime NULL DEFAULT NULL COMMENT '更新时间',
|
|
|
|
|
`type` int(1) UNSIGNED ZEROFILL NULL DEFAULT 0 COMMENT '字典类型0为string,1为number',
|
2022-12-07 13:22:18 +00:00
|
|
|
|
`tenant_id` varchar(10) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '多租户标识',
|
2021-06-23 03:13:11 +00:00
|
|
|
|
PRIMARY KEY (`id`) USING BTREE,
|
|
|
|
|
UNIQUE INDEX `uk_sd_dict_code`(`dict_code`) USING BTREE
|
2022-12-07 13:22:18 +00:00
|
|
|
|
) ENGINE = InnoDB CHARACTER SET = utf8 COLLATE = utf8_general_ci ROW_FORMAT = DYNAMIC;
|
2021-06-23 03:13:11 +00:00
|
|
|
|
|
|
|
|
|
-- ----------------------------
|
|
|
|
|
-- Records of jimu_dict
|
|
|
|
|
-- ----------------------------
|
2022-12-07 13:22:18 +00:00
|
|
|
|
INSERT INTO `jimu_dict` VALUES ('0b1dac3e87ed7229ae19a586a8b8c8f8', '物资类型', 'wz_cc_type', NULL, 0, 'admin', '2019-04-26 18:25:48', NULL, NULL, 0, NULL);
|
|
|
|
|
INSERT INTO `jimu_dict` VALUES ('0b5d19e1fce4b2e6647e6b4a17760c14', '通告类型', 'msg_category', '消息类型1:通知公告2:系统消息', 0, 'admin', '2019-04-22 18:01:35', NULL, NULL, 0, NULL);
|
|
|
|
|
INSERT INTO `jimu_dict` VALUES ('1166528843122561025', '测试字典员工类型', 'ceshi_code', '', 0, 'admin', '2019-08-28 09:52:04', 'admin', '2021-01-08 14:33:43', 0, NULL);
|
|
|
|
|
INSERT INTO `jimu_dict` VALUES ('1174509082208395266', '职务职级', 'position_rank', '职务表职级字典', 0, 'admin', '2019-09-19 10:22:41', NULL, NULL, 0, NULL);
|
|
|
|
|
INSERT INTO `jimu_dict` VALUES ('1174511106530525185', '机构类型', 'org_category', '机构类型 1公司,2部门 3岗位', 0, 'admin', '2019-09-19 10:30:43', NULL, NULL, 0, NULL);
|
|
|
|
|
INSERT INTO `jimu_dict` VALUES ('1178295274528845826', '表单权限策略', 'form_perms_type', '', 0, 'admin', '2019-09-29 21:07:39', 'admin', '2019-09-29 21:08:26', NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_dict` VALUES ('1199517671259906049', '紧急程度', 'urgent_level', '日程计划紧急程度', 0, 'admin', '2019-11-27 10:37:53', NULL, NULL, 0, NULL);
|
|
|
|
|
INSERT INTO `jimu_dict` VALUES ('1199518099888414722', '日程计划类型', 'eoa_plan_type', '', 0, 'admin', '2019-11-27 10:39:36', NULL, NULL, 0, NULL);
|
|
|
|
|
INSERT INTO `jimu_dict` VALUES ('1199525215290306561', '日程计划状态', 'eoa_plan_status', '', 0, 'admin', '2019-11-27 11:07:52', 'admin', '2019-11-27 11:10:11', 0, NULL);
|
|
|
|
|
INSERT INTO `jimu_dict` VALUES ('1204580702536957953', '打卡类型', 'sign_type', '', 0, 'admin', '2019-12-11 09:56:34', 'admin', '2020-02-13 14:21:36', 0, NULL);
|
|
|
|
|
INSERT INTO `jimu_dict` VALUES ('1204581134206337025', '打卡状态', 'sign_status', '', 0, 'admin', '2019-12-11 09:58:17', NULL, NULL, 0, NULL);
|
|
|
|
|
INSERT INTO `jimu_dict` VALUES ('1209733563293962241', '数据库类型', 'database_type', '', 0, 'admin', '2019-12-25 15:12:12', NULL, NULL, 0, NULL);
|
|
|
|
|
INSERT INTO `jimu_dict` VALUES ('1232913193820581889', 'Online表单业务分类', 'ol_form_biz_type', '', 0, 'admin', '2020-02-27 14:19:46', 'admin', '2020-02-27 14:20:23', 0, NULL);
|
|
|
|
|
INSERT INTO `jimu_dict` VALUES ('1242281790421389314', '会议类型', 'mettingType', '', 0, 'admin', '2020-03-24 10:47:13', NULL, NULL, 0, NULL);
|
|
|
|
|
INSERT INTO `jimu_dict` VALUES ('1242298510024429569', '提醒方式', 'remindMode', '', 0, 'admin', '2020-03-24 11:53:40', 'admin', '2020-03-24 12:03:22', 0, NULL);
|
|
|
|
|
INSERT INTO `jimu_dict` VALUES ('1244538302904672258', '提醒时间', 'remindTime', '', 0, 'admin', '2020-03-30 16:13:48', NULL, NULL, 0, NULL);
|
|
|
|
|
INSERT INTO `jimu_dict` VALUES ('1244538772909989889', '重复提醒', 'reminders', '', 0, 'admin', '2020-03-30 16:15:40', NULL, NULL, 0, NULL);
|
|
|
|
|
INSERT INTO `jimu_dict` VALUES ('1244941599661178882', '表单设计器路由类型', 'desform_route_type', '表单设计器下一步路由跳转类型', 0, 'admin', '2020-03-31 18:56:22', NULL, NULL, 0, NULL);
|
|
|
|
|
INSERT INTO `jimu_dict` VALUES ('1250687930947620866', '定时任务状态', 'quartz_status', '', 0, 'admin', '2020-04-16 15:30:14', '', NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_dict` VALUES ('1252881342601908225', '栏目类型', 'cms_menu_type', '', 0, 'admin', '2020-04-22 16:46:04', '', NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_dict` VALUES ('1253673013610672130', '会议室规模', 'meeting_scale', '', 0, 'admin', '2020-04-24 21:11:53', '', NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_dict` VALUES ('1272739651112034306', '缓急', 'urgency', '', 0, 'admin', '2020-06-16 11:55:54', NULL, NULL, 0, NULL);
|
|
|
|
|
INSERT INTO `jimu_dict` VALUES ('1272740254731100161', '密级', 'secret_level', '', 0, 'admin', '2020-06-16 11:58:18', NULL, NULL, 0, NULL);
|
|
|
|
|
INSERT INTO `jimu_dict` VALUES ('1280401766745718786', '租户状态', 'tenant_status', '租户状态', 0, 'admin', '2020-07-07 15:22:25', NULL, NULL, 0, NULL);
|
|
|
|
|
INSERT INTO `jimu_dict` VALUES ('1336551227544694785', '999', '999', '', 1, 'admin', '2020-12-09 14:00:19', NULL, NULL, 0, NULL);
|
|
|
|
|
INSERT INTO `jimu_dict` VALUES ('1338811917237489665', '报表测试职务', 'zhiwu', '积木报表演示', 0, 'admin', '2020-12-15 19:43:30', 'admin', '2021-01-13 14:03:13', 0, NULL);
|
|
|
|
|
INSERT INTO `jimu_dict` VALUES ('20863a840c7622c3eab0ee69e55a8c7c', '常用审批语', 'approval_remarks', '常用审批语', 0, 'admin', '2019-03-15 11:03:26', 'admin', '2019-06-10 19:38:31', 0, NULL);
|
|
|
|
|
INSERT INTO `jimu_dict` VALUES ('236e8a4baff0db8c62c00dd95632834f', '同步工作流引擎', 'activiti_sync', '同步工作流引擎', 0, 'admin', '2019-05-15 15:27:33', NULL, NULL, 0, NULL);
|
|
|
|
|
INSERT INTO `jimu_dict` VALUES ('2e02df51611a4b9632828ab7e5338f00', '权限策略', 'perms_type', '权限策略', 0, 'admin', '2019-04-26 18:26:55', NULL, NULL, 0, NULL);
|
|
|
|
|
INSERT INTO `jimu_dict` VALUES ('2f0320997ade5dd147c90130f7218c3e', '推送类别', 'msg_type', '', 0, 'admin', '2019-03-17 21:21:32', 'admin', '2019-03-26 19:57:45', 0, NULL);
|
|
|
|
|
INSERT INTO `jimu_dict` VALUES ('3486f32803bb953e7155dab3513dc68b', '删除状态', 'del_flag', '', 0, 'admin', '2019-10-18 21:46:26', 'admin', '2019-05-31 11:32:41', 0, NULL);
|
|
|
|
|
INSERT INTO `jimu_dict` VALUES ('36d57175542a3ea85073923e8fccc21c', '尺码类型', 'air_china_size', NULL, 0, 'admin', '2019-04-23 23:02:44', NULL, NULL, 0, NULL);
|
|
|
|
|
INSERT INTO `jimu_dict` VALUES ('3d9a351be3436fbefb1307d4cfb49bf2', '性别', 'sex', NULL, 0, NULL, '2019-01-04 14:56:32', 'admin', '2019-03-30 11:28:27', 1, NULL);
|
|
|
|
|
INSERT INTO `jimu_dict` VALUES ('4274efc2292239b6f000b153f50823ff', '全局权限策略', 'global_perms_type', '全局权限策略', 0, 'admin', '2019-05-10 17:54:05', NULL, NULL, 0, NULL);
|
|
|
|
|
INSERT INTO `jimu_dict` VALUES ('49a0f7247f9c2a7df4e5733b790a4c9f', '供应商', 'air_china_ supplier', NULL, 0, 'admin', '2019-04-24 16:49:25', NULL, NULL, 0, NULL);
|
|
|
|
|
INSERT INTO `jimu_dict` VALUES ('4c03fca6bf1f0299c381213961566349', 'Online图表展示模板', 'online_graph_display_template', 'Online图表展示模板', 0, 'admin', '2019-04-12 17:28:50', NULL, NULL, 0, NULL);
|
|
|
|
|
INSERT INTO `jimu_dict` VALUES ('4c753b5293304e7a445fd2741b46529d', '字典状态', 'dict_item_status', NULL, 0, 'admin', '2019-06-18 23:18:42', 'admin', '2019-03-30 19:33:52', 1, NULL);
|
|
|
|
|
INSERT INTO `jimu_dict` VALUES ('4d7fec1a7799a436d26d02325eff295e', '优先级', 'priority', '优先级', 0, 'admin', '2019-03-16 17:03:34', 'admin', '2019-04-16 17:39:23', 0, NULL);
|
|
|
|
|
INSERT INTO `jimu_dict` VALUES ('4e4602b3e3686f0911384e188dc7efb4', '条件规则', 'rule_conditions', '', 0, 'admin', '2019-04-01 10:15:03', 'admin', '2019-04-01 10:30:47', 0, NULL);
|
|
|
|
|
INSERT INTO `jimu_dict` VALUES ('4f69be5f507accea8d5df5f11346181a', '发送消息类型', 'msgType', NULL, 0, 'admin', '2019-04-11 14:27:09', NULL, NULL, 0, NULL);
|
|
|
|
|
INSERT INTO `jimu_dict` VALUES ('68168534ff5065a152bfab275c2136f8', '有效无效状态', 'valid_status', '有效无效状态', 0, 'admin', '2020-09-26 19:21:14', 'admin', '2019-06-07 00:30:10', 0, NULL);
|
|
|
|
|
INSERT INTO `jimu_dict` VALUES ('72cce0989df68887546746d8f09811aa', 'Online表单类型', 'cgform_table_type', '', 0, 'admin', '2019-01-27 10:13:02', 'admin', '2019-03-30 11:37:36', 0, NULL);
|
|
|
|
|
INSERT INTO `jimu_dict` VALUES ('76c1d6755018a918c9eeda575dbf3f98', '计量单位', 'air_china_unit', NULL, 0, 'admin', '2017-12-23 23:00:02', 'admin', '2019-04-23 23:13:52', 0, NULL);
|
|
|
|
|
INSERT INTO `jimu_dict` VALUES ('78bda155fe380b1b3f175f1e88c284c6', '流程状态', 'bpm_status', '流程状态', 0, 'admin', '2019-05-09 16:31:52', NULL, NULL, 0, NULL);
|
|
|
|
|
INSERT INTO `jimu_dict` VALUES ('83bfb33147013cc81640d5fd9eda030c', '日志类型', 'log_type', NULL, 0, 'admin', '2019-03-18 23:22:19', NULL, NULL, 1, NULL);
|
|
|
|
|
INSERT INTO `jimu_dict` VALUES ('880a895c98afeca9d9ac39f29e67c13e', '操作类型', 'operate_type', '操作类型', 0, 'admin', '2019-07-22 10:54:29', NULL, NULL, 0, NULL);
|
|
|
|
|
INSERT INTO `jimu_dict` VALUES ('8dfe32e2d29ea9430a988b3b558bf233', '发布状态', 'send_status', '发布状态', 0, 'admin', '2019-04-16 17:40:42', NULL, NULL, 0, NULL);
|
|
|
|
|
INSERT INTO `jimu_dict` VALUES ('a9d9942bd0eccb6e89de92d130ec4c4a', '消息发送状态', 'msgSendStatus', NULL, 0, 'admin', '2019-04-12 18:18:17', NULL, NULL, 0, NULL);
|
|
|
|
|
INSERT INTO `jimu_dict` VALUES ('ac2f7c0c5c5775fcea7e2387bcb22f01', '菜单类型', 'menu_type', NULL, 0, 'admin', '2019-12-18 23:24:32', 'admin', '2019-04-01 15:27:06', 1, NULL);
|
|
|
|
|
INSERT INTO `jimu_dict` VALUES ('bd1b8bc28e65d6feefefb6f3c79f42fd', 'Online图表数据类型', 'online_graph_data_type', 'Online图表数据类型', 0, 'admin', '2019-04-12 17:24:24', 'admin', '2019-04-12 17:24:57', 0, NULL);
|
|
|
|
|
INSERT INTO `jimu_dict` VALUES ('c36169beb12de8a71c8683ee7c28a503', '部门状态', 'depart_status', NULL, 0, 'admin', '2019-03-18 21:59:51', NULL, NULL, 0, NULL);
|
|
|
|
|
INSERT INTO `jimu_dict` VALUES ('c5a14c75172783d72cbee6ee7f5df5d1', 'Online图表类型', 'online_graph_type', 'Online图表类型', 0, 'admin', '2019-04-12 17:04:06', NULL, NULL, 0, NULL);
|
|
|
|
|
INSERT INTO `jimu_dict` VALUES ('c72e92c2c13cdbc07b455e6abcc60d47', '启动状态', 'air_china_valid', NULL, 0, 'admin', '2019-04-23 23:05:29', NULL, NULL, 0, NULL);
|
|
|
|
|
INSERT INTO `jimu_dict` VALUES ('d6e1152968b02d69ff358c75b48a6ee1', '流程类型', 'bpm_process_type', NULL, 0, 'admin', '2019-02-22 19:26:54', 'admin', '2019-03-30 18:14:44', 0, NULL);
|
|
|
|
|
INSERT INTO `jimu_dict` VALUES ('fc6cd58fde2e8481db10d3a1e68ce70c', '用户状态', 'user_status', NULL, 0, 'admin', '2019-03-18 21:57:25', 'admin', '2019-03-18 23:11:58', 1, NULL);
|
2021-06-23 03:13:11 +00:00
|
|
|
|
|
|
|
|
|
-- ----------------------------
|
|
|
|
|
-- Table structure for jimu_dict_item
|
|
|
|
|
-- ----------------------------
|
|
|
|
|
DROP TABLE IF EXISTS `jimu_dict_item`;
|
|
|
|
|
CREATE TABLE `jimu_dict_item` (
|
|
|
|
|
`id` varchar(32) CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL,
|
|
|
|
|
`dict_id` varchar(32) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '字典id',
|
|
|
|
|
`item_text` varchar(100) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '字典项文本',
|
|
|
|
|
`item_value` varchar(100) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '字典项值',
|
|
|
|
|
`description` varchar(255) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '描述',
|
|
|
|
|
`sort_order` int(10) NULL DEFAULT NULL COMMENT '排序',
|
|
|
|
|
`status` int(11) NULL DEFAULT NULL COMMENT '状态(1启用 0不启用)',
|
|
|
|
|
`create_by` varchar(32) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL,
|
|
|
|
|
`create_time` datetime NULL DEFAULT NULL,
|
|
|
|
|
`update_by` varchar(32) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL,
|
|
|
|
|
`update_time` datetime NULL DEFAULT NULL,
|
|
|
|
|
PRIMARY KEY (`id`) USING BTREE,
|
|
|
|
|
INDEX `idx_sdi_role_dict_id`(`dict_id`) USING BTREE,
|
|
|
|
|
INDEX `idx_sdi_role_sort_order`(`sort_order`) USING BTREE,
|
|
|
|
|
INDEX `idx_sdi_status`(`status`) USING BTREE,
|
|
|
|
|
INDEX `idx_sdi_dict_val`(`dict_id`, `item_value`) USING BTREE
|
2022-12-07 13:22:18 +00:00
|
|
|
|
) ENGINE = InnoDB CHARACTER SET = utf8 COLLATE = utf8_general_ci ROW_FORMAT = DYNAMIC;
|
2021-06-23 03:13:11 +00:00
|
|
|
|
|
|
|
|
|
-- ----------------------------
|
|
|
|
|
-- Records of jimu_dict_item
|
|
|
|
|
-- ----------------------------
|
|
|
|
|
INSERT INTO `jimu_dict_item` VALUES ('0072d115e07c875d76c9b022e2179128', '4d7fec1a7799a436d26d02325eff295e', '低', 'L', '低', 3, 1, 'admin', '2019-04-16 17:04:59', NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_dict_item` VALUES ('00cd5762c968332e2bf8d1fdae872f26', '76c1d6755018a918c9eeda575dbf3f98', '条', '3', NULL, 3, 1, 'admin', '2019-04-23 23:00:42', NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_dict_item` VALUES ('05a2e732ce7b00aa52141ecc3e330b4e', '3486f32803bb953e7155dab3513dc68b', '已删除', '1', NULL, NULL, 1, 'admin', '2025-10-18 21:46:56', 'admin', '2019-03-28 22:23:20');
|
|
|
|
|
INSERT INTO `jimu_dict_item` VALUES ('0737b49b097033b35e1882f970d43263', '36d57175542a3ea85073923e8fccc21c', '量体类', '1', NULL, 1, 1, 'admin', '2019-04-23 23:03:02', NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_dict_item` VALUES ('08ec6c5c986766cc0f398bf88b2c7fd5', '20863a840c7622c3eab0ee69e55a8c7c', '呈领导阅示', '呈领导阅示', '呈领导阅示', 7, 1, 'admin', '2019-05-15 11:07:59', NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_dict_item` VALUES ('096c2e758d823def3855f6376bc736fb', 'bd1b8bc28e65d6feefefb6f3c79f42fd', 'SQL', 'sql', NULL, 1, 1, 'admin', '2019-04-12 17:26:26', NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_dict_item` VALUES ('0c9532916f5cd722017b46bc4d953e41', '2f0320997ade5dd147c90130f7218c3e', '指定用户', 'USER', NULL, NULL, 1, 'admin', '2019-03-17 21:22:19', 'admin', '2019-03-17 21:22:28');
|
|
|
|
|
INSERT INTO `jimu_dict_item` VALUES ('0ca4beba9efc4f9dd54af0911a946d5c', '72cce0989df68887546746d8f09811aa', '附表', '3', NULL, 3, 1, 'admin', '2019-03-27 10:13:43', NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_dict_item` VALUES ('1030a2652608f5eac3b49d70458b8532', '2e02df51611a4b9632828ab7e5338f00', '禁用', '2', '禁用', 2, 1, 'admin', '2021-03-26 18:27:28', 'admin', '2019-04-26 18:39:11');
|
|
|
|
|
INSERT INTO `jimu_dict_item` VALUES ('10e3b1b78da8b40161b7b89cefb2f31b', '0b1dac3e87ed7229ae19a586a8b8c8f8', '衣服', 'yifu', NULL, 1, 1, 'admin', '2019-04-26 18:26:04', NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_dict_item` VALUES ('1166528884218351617', '1166528843122561025', '普通员工', '1', '', 1, 1, 'admin', '2019-08-28 09:52:14', 'admin', '2021-01-08 14:33:52');
|
|
|
|
|
INSERT INTO `jimu_dict_item` VALUES ('1166528900752297986', '1166528843122561025', '领导', '2', '', 1, 1, 'admin', '2019-08-28 09:52:18', 'admin', '2021-01-08 14:33:57');
|
|
|
|
|
INSERT INTO `jimu_dict_item` VALUES ('1174509082208395266', '1174511106530525185', '岗位', '3', '岗位', 1, 1, 'admin', '2019-09-19 10:31:16', '', NULL);
|
|
|
|
|
INSERT INTO `jimu_dict_item` VALUES ('1174509601047994369', '1174509082208395266', '员级', '1', '', 1, 1, 'admin', '2019-09-19 10:24:45', 'admin', '2019-09-23 11:46:39');
|
|
|
|
|
INSERT INTO `jimu_dict_item` VALUES ('1174509667297026049', '1174509082208395266', '助级', '2', '', 2, 1, 'admin', '2019-09-19 10:25:01', 'admin', '2019-09-23 11:46:47');
|
|
|
|
|
INSERT INTO `jimu_dict_item` VALUES ('1174509713568587777', '1174509082208395266', '中级', '3', '', 3, 1, 'admin', '2019-09-19 10:25:12', 'admin', '2019-09-23 11:46:56');
|
|
|
|
|
INSERT INTO `jimu_dict_item` VALUES ('1174509788361416705', '1174509082208395266', '副高级', '4', '', 4, 1, 'admin', '2019-09-19 10:25:30', 'admin', '2019-09-23 11:47:06');
|
|
|
|
|
INSERT INTO `jimu_dict_item` VALUES ('1174509835803189250', '1174509082208395266', '正高级', '5', '', 5, 1, 'admin', '2019-09-19 10:25:41', 'admin', '2019-09-23 11:47:12');
|
|
|
|
|
INSERT INTO `jimu_dict_item` VALUES ('1174511197735665665', '1174511106530525185', '公司', '1', '公司', 1, 1, 'admin', '2019-09-19 10:31:05', NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_dict_item` VALUES ('1174511244036587521', '1174511106530525185', '部门', '2', '部门', 1, 1, 'admin', '2019-09-19 10:31:16', NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_dict_item` VALUES ('1178295553450061826', '1178295274528845826', '可编辑(未授权禁用)', '2', '', 2, 1, 'admin', '2019-09-29 21:08:46', 'admin', '2019-09-29 21:09:18');
|
|
|
|
|
INSERT INTO `jimu_dict_item` VALUES ('1178295639554928641', '1178295274528845826', '可见(未授权不可见)', '1', '', 1, 1, 'admin', '2019-09-29 21:09:06', 'admin', '2019-09-29 21:09:24');
|
|
|
|
|
INSERT INTO `jimu_dict_item` VALUES ('1199517884758368257', '1199517671259906049', '一般', '1', '', 1, 1, 'admin', '2019-11-27 10:38:44', NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_dict_item` VALUES ('1199517914017832962', '1199517671259906049', '重要', '2', '', 1, 1, 'admin', '2019-11-27 10:38:51', NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_dict_item` VALUES ('1199517941339529217', '1199517671259906049', '紧急', '3', '', 1, 1, 'admin', '2019-11-27 10:38:58', NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_dict_item` VALUES ('1199518186144276482', '1199518099888414722', '日常记录', '1', '', 1, 1, 'admin', '2019-11-27 10:39:56', NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_dict_item` VALUES ('1199518214858481666', '1199518099888414722', '本周工作', '2', '', 1, 1, 'admin', '2019-11-27 10:40:03', NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_dict_item` VALUES ('1199518235943247874', '1199518099888414722', '下周计划', '3', '', 1, 1, 'admin', '2019-11-27 10:40:08', NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_dict_item` VALUES ('1199525468672405505', '1199525215290306561', '未开始', '0', '', 1, 1, 'admin', '2019-11-27 11:08:52', NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_dict_item` VALUES ('1199525490575060993', '1199525215290306561', '进行中', '2', '', 3, 1, 'admin', '2019-11-27 11:08:58', NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_dict_item` VALUES ('1199525506429530114', '1199525215290306561', '已完成', '3', '', 4, 1, 'admin', '2019-11-27 11:09:02', NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_dict_item` VALUES ('1199607547704647681', '4f69be5f507accea8d5df5f11346181a', '系统', '4', '', 1, 1, 'admin', '2019-11-27 16:35:02', 'admin', '2019-11-27 19:37:46');
|
|
|
|
|
INSERT INTO `jimu_dict_item` VALUES ('1203571948706095105', '1199525215290306561', '已提醒', '1', '', 2, 1, 'admin', '2019-12-08 15:08:09', NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_dict_item` VALUES ('1204581455016067074', '1204580702536957953', '上班打卡', '1', '', 1, 1, 'admin', '2019-12-11 09:59:34', NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_dict_item` VALUES ('1204581521328013314', '1204580702536957953', '下班打卡', '2', '', 1, 1, 'admin', '2019-12-11 09:59:49', NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_dict_item` VALUES ('1204581542945456129', '1204580702536957953', '外出打卡', '3', '', 1, 1, 'admin', '2019-12-11 09:59:55', NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_dict_item` VALUES ('1204581564143468546', '1204580702536957953', '请假', '4', '', 1, 1, 'admin', '2019-12-11 10:00:00', NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_dict_item` VALUES ('1204581583089139713', '1204580702536957953', '出差', '5', '', 1, 1, 'admin', '2019-12-11 10:00:04', NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_dict_item` VALUES ('1204581803613061122', '1204581134206337025', '缺卡', '0', '', 1, 1, 'admin', '2019-12-11 10:00:57', NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_dict_item` VALUES ('1204581830603407362', '1204581134206337025', '正常', '1', '', 1, 1, 'admin', '2019-12-11 10:01:03', NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_dict_item` VALUES ('1204581850283081729', '1204581134206337025', '迟到', '2', '', 1, 1, 'admin', '2019-12-11 10:01:08', NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_dict_item` VALUES ('1204581868406669314', '1204581134206337025', '旷工', '3', '', 1, 1, 'admin', '2019-12-11 10:01:12', NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_dict_item` VALUES ('1204581886026940417', '1204581134206337025', '早退', '4', '', 1, 1, 'admin', '2019-12-11 10:01:16', NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_dict_item` VALUES ('1209733775114702850', '1209733563293962241', 'MySQL5.5', '1', '', 1, 1, 'admin', '2019-12-25 15:13:02', NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_dict_item` VALUES ('1209733839933476865', '1209733563293962241', 'Oracle', '2', '', 3, 1, 'admin', '2019-12-25 15:13:18', NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_dict_item` VALUES ('1209733903020003330', '1209733563293962241', 'SQLServer', '3', '', 4, 1, 'admin', '2019-12-25 15:13:33', NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_dict_item` VALUES ('1232913424813486081', '1232913193820581889', '官方示例', 'demo', '', 1, 1, 'admin', '2020-02-27 14:20:42', 'admin', '2020-02-27 14:21:37');
|
|
|
|
|
INSERT INTO `jimu_dict_item` VALUES ('1232913493717512194', '1232913193820581889', '流程表单', 'bpm', '', 2, 1, 'admin', '2020-02-27 14:20:58', 'admin', '2020-02-27 14:22:20');
|
|
|
|
|
INSERT INTO `jimu_dict_item` VALUES ('1232913605382467585', '1232913193820581889', '测试表单', 'temp', '', 4, 1, 'admin', '2020-02-27 14:21:25', 'admin', '2020-02-27 14:22:16');
|
|
|
|
|
INSERT INTO `jimu_dict_item` VALUES ('1232914232372195330', '1232913193820581889', '导入表单', 'bdfl_include', '', 5, 1, 'admin', '2020-02-27 14:23:54', NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_dict_item` VALUES ('1233279228474138625', '4e4602b3e3686f0911384e188dc7efb4', '左模糊', 'LEFT_LIKE', '', 7, 1, 'admin', '2020-02-28 14:34:16', NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_dict_item` VALUES ('1233279337333104641', '4e4602b3e3686f0911384e188dc7efb4', '右模糊', 'RIGHT_LIKE', '', 7, 1, 'admin', '2020-02-28 14:34:42', NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_dict_item` VALUES ('1242281959082741761', '1242281790421389314', '部门会议', 'depart', '', 1, 1, 'admin', '2020-03-24 10:47:54', NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_dict_item` VALUES ('1242282018893516802', '1242281790421389314', '临时会议', 'temp', '', 1, 1, 'admin', '2020-03-24 10:48:08', NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_dict_item` VALUES ('1242282141274918913', '1242281790421389314', '公司会议', 'company', '', 1, 1, 'admin', '2020-03-24 10:48:37', NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_dict_item` VALUES ('1242282318563954690', '1242281790421389314', '培训会议', 'train', '', 1, 1, 'admin', '2020-03-24 10:49:19', NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_dict_item` VALUES ('1242282375325470721', '1242281790421389314', '普通会议', 'common', '', 1, 1, 'admin', '2020-03-24 10:49:33', NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_dict_item` VALUES ('1242300779390357505', '1242298510024429569', '短信提醒', '2', '', 2, 1, 'admin', '2020-03-24 12:02:41', 'admin', '2020-03-30 18:21:33');
|
|
|
|
|
INSERT INTO `jimu_dict_item` VALUES ('1242300814383435777', '1242298510024429569', '邮件提醒', '1', '', 1, 1, 'admin', '2020-03-24 12:02:49', 'admin', '2020-03-30 18:21:26');
|
|
|
|
|
INSERT INTO `jimu_dict_item` VALUES ('1242300887343353857', '1242298510024429569', '系统消息', '4', '', 4, 1, 'admin', '2020-03-24 12:03:07', 'admin', '2020-03-30 18:21:43');
|
|
|
|
|
INSERT INTO `jimu_dict_item` VALUES ('1244538412480864258', '1244538302904672258', '不提醒', '0', '', 1, 1, 'admin', '2020-03-30 16:14:14', NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_dict_item` VALUES ('1244538453169807361', '1244538302904672258', '开始时', '1', '', 1, 1, 'admin', '2020-03-30 16:14:24', NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_dict_item` VALUES ('1244538498132746241', '1244538302904672258', '提前5分钟', '2', '', 2, 1, 'admin', '2020-03-30 16:14:35', NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_dict_item` VALUES ('1244538537420791810', '1244538302904672258', '提前10分钟', '3', '', 3, 1, 'admin', '2020-03-30 16:14:44', NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_dict_item` VALUES ('1244538569926647810', '1244538302904672258', '提前15分钟', '4', '', 4, 1, 'admin', '2020-03-30 16:14:52', NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_dict_item` VALUES ('1244538620744835073', '1244538302904672258', '提前30分钟', '5', '', 5, 1, 'admin', '2020-03-30 16:15:04', NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_dict_item` VALUES ('1244538674016690178', '1244538302904672258', '提前1小时', '6', '', 6, 1, 'admin', '2020-03-30 16:15:16', NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_dict_item` VALUES ('1244538712323268610', '1244538302904672258', '提前2小时', '7', '', 7, 1, 'admin', '2020-03-30 16:15:26', NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_dict_item` VALUES ('1244538832364249090', '1244538772909989889', '不重复', '0', '', 1, 1, 'admin', '2020-03-30 16:15:54', NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_dict_item` VALUES ('1244538882335186946', '1244538772909989889', '每天', '1', '', 1, 1, 'admin', '2020-03-30 16:16:06', NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_dict_item` VALUES ('1244538920792760321', '1244538772909989889', '每周', '2', '', 2, 1, 'admin', '2020-03-30 16:16:15', NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_dict_item` VALUES ('1244538964811980802', '1244538772909989889', '每月(当日)', '3', '', 3, 1, 'admin', '2020-03-30 16:16:26', NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_dict_item` VALUES ('1244539005064716289', '1244538772909989889', '每年(当日)', '4', '', 4, 1, 'admin', '2020-03-30 16:16:35', NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_dict_item` VALUES ('1244941726052335617', '1244941599661178882', '跳转到表单', '1', '', 1, 1, 'admin', '2020-03-31 18:56:52', 'admin', '2020-03-31 21:16:05');
|
|
|
|
|
INSERT INTO `jimu_dict_item` VALUES ('1244941755555069953', '1244941599661178882', '跳转到菜单', '2', '', 2, 1, 'admin', '2020-03-31 18:56:59', 'admin', '2020-03-31 21:16:09');
|
|
|
|
|
INSERT INTO `jimu_dict_item` VALUES ('1244941784743231489', '1244941599661178882', '跳转到外部', '3', '', 3, 1, 'admin', '2020-03-31 18:57:06', 'admin', '2020-03-31 21:16:14');
|
|
|
|
|
INSERT INTO `jimu_dict_item` VALUES ('1250688147579228161', '1250687930947620866', '正常', '0', '', 1, 1, 'admin', '2020-04-16 15:31:05', '', NULL);
|
|
|
|
|
INSERT INTO `jimu_dict_item` VALUES ('1250688201064992770', '1250687930947620866', '停止', '-1', '', 1, 1, 'admin', '2020-04-16 15:31:18', '', NULL);
|
|
|
|
|
INSERT INTO `jimu_dict_item` VALUES ('1252882203973537794', '1252881342601908225', '列表', '1', '', 1, 1, 'admin', '2020-04-22 16:49:29', '', NULL);
|
|
|
|
|
INSERT INTO `jimu_dict_item` VALUES ('1252882248991002626', '1252881342601908225', '链接', '2', '', 1, 1, 'admin', '2020-04-22 16:49:40', '', NULL);
|
|
|
|
|
INSERT INTO `jimu_dict_item` VALUES ('1253673087988264962', '1253673013610672130', '小型', 'S', '', 1, 1, 'admin', '2020-04-24 21:12:10', '', NULL);
|
|
|
|
|
INSERT INTO `jimu_dict_item` VALUES ('1253673146364588034', '1253673013610672130', '中型', 'M', '', 1, 1, 'admin', '2020-04-24 21:12:24', '', NULL);
|
|
|
|
|
INSERT INTO `jimu_dict_item` VALUES ('1253673184885075970', '1253673013610672130', '大型', 'L', '', 1, 1, 'admin', '2020-04-24 21:12:34', '', NULL);
|
|
|
|
|
INSERT INTO `jimu_dict_item` VALUES ('1272739846449160193', '1272739651112034306', '一般', '0', '', 1, 1, 'admin', '2020-06-16 11:56:40', NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_dict_item` VALUES ('1272739980616556545', '1272739651112034306', '平急', '1', '', 1, 1, 'admin', '2020-06-16 11:57:12', 'admin', '2020-10-28 17:50:22');
|
|
|
|
|
INSERT INTO `jimu_dict_item` VALUES ('1272740017782284289', '1272739651112034306', '加急', '2', '', 1, 1, 'admin', '2020-06-16 11:57:21', NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_dict_item` VALUES ('1272740063856713730', '1272739651112034306', '特急', '3', '', 1, 1, 'admin', '2020-06-16 11:57:32', NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_dict_item` VALUES ('1272740134505570306', '1272739651112034306', '特提', '4', '', 1, 1, 'admin', '2020-06-16 11:57:49', NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_dict_item` VALUES ('1272740342673072129', '1272740254731100161', '一般', '0', '', 1, 1, 'admin', '2020-06-16 11:58:39', NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_dict_item` VALUES ('1272740397966581762', '1272740254731100161', '秘密', '1', '', 1, 1, 'admin', '2020-06-16 11:58:52', NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_dict_item` VALUES ('1272740445697761282', '1272740254731100161', '机密', '2', '', 1, 1, 'admin', '2020-06-16 11:59:03', NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_dict_item` VALUES ('1272740494238441473', '1272740254731100161', '绝密', '3', '', 1, 1, 'admin', '2020-06-16 11:59:15', NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_dict_item` VALUES ('1280401815068295170', '1280401766745718786', '正常', '1', '', 1, 1, 'admin', '2020-07-07 15:22:36', NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_dict_item` VALUES ('1280401847607705602', '1280401766745718786', '冻结', '0', '', 1, 1, 'admin', '2020-07-07 15:22:44', NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_dict_item` VALUES ('1280417387279060994', '1199525215290306561', '已接受', '4', '', 4, 1, 'admin', '2020-07-07 16:24:28', NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_dict_item` VALUES ('1280417420456005634', '1199525215290306561', '已取消', '5', '5', 5, 1, 'admin', '2020-07-07 16:24:36', 'admin', '2020-07-07 16:24:45');
|
|
|
|
|
INSERT INTO `jimu_dict_item` VALUES ('1305827309355302914', 'bd1b8bc28e65d6feefefb6f3c79f42fd', 'API', 'api', '', 3, 1, 'admin', '2020-09-15 19:14:26', 'admin', '2020-09-15 19:14:41');
|
|
|
|
|
INSERT INTO `jimu_dict_item` VALUES ('1334440962954936321', '1209733563293962241', 'MYSQL5.7', '4', NULL, 1, 1, 'admin', '2020-12-03 18:16:02', 'admin', '2020-12-03 18:16:02');
|
|
|
|
|
INSERT INTO `jimu_dict_item` VALUES ('1338812279746990082', '1338811917237489665', '研发经理', '1', '', 1, 1, 'admin', '2020-12-15 19:44:56', 'admin', '2021-01-13 14:00:13');
|
|
|
|
|
INSERT INTO `jimu_dict_item` VALUES ('1338812321702612993', '1338811917237489665', '研发专员', '2', '', 1, 1, 'admin', '2020-12-15 19:45:06', 'admin', '2021-01-13 14:00:16');
|
|
|
|
|
INSERT INTO `jimu_dict_item` VALUES ('1338812381655994370', '1338811917237489665', '财务经理', '3', '', 1, 1, 'admin', '2020-12-15 19:45:20', NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_dict_item` VALUES ('1338812417886392322', '1338811917237489665', '财务专员', '4', '', 1, 1, 'admin', '2020-12-15 19:45:29', NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_dict_item` VALUES ('1338812461297438721', '1338811917237489665', '客服经理', '5', '', 1, 1, 'admin', '2020-12-15 19:45:39', NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_dict_item` VALUES ('1338812495665565697', '1338811917237489665', '客服专员', '6', '', 1, 1, 'admin', '2020-12-15 19:45:48', NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_dict_item` VALUES ('147c48ff4b51545032a9119d13f3222a', 'd6e1152968b02d69ff358c75b48a6ee1', '测试流程', 'test', NULL, 1, 1, 'admin', '2019-03-22 19:27:05', NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_dict_item` VALUES ('1543fe7e5e26fb97cdafe4981bedc0c8', '4c03fca6bf1f0299c381213961566349', '单排布局', 'single', NULL, 2, 1, 'admin', '2022-07-12 17:43:39', 'admin', '2019-04-12 17:43:57');
|
|
|
|
|
INSERT INTO `jimu_dict_item` VALUES ('1db531bcff19649fa82a644c8a939dc4', '4c03fca6bf1f0299c381213961566349', '组合布局', 'combination', '', 4, 1, 'admin', '2019-05-11 16:07:08', NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_dict_item` VALUES ('222705e11ef0264d4214affff1fb4ff9', '4f69be5f507accea8d5df5f11346181a', '短信', '1', '', 1, 1, 'admin', '2023-02-28 10:50:36', 'admin', '2019-04-28 10:58:11');
|
|
|
|
|
INSERT INTO `jimu_dict_item` VALUES ('23a5bb76004ed0e39414e928c4cde155', '4e4602b3e3686f0911384e188dc7efb4', '不等于', '!=', '不等于', 3, 1, 'admin', '2019-04-01 16:46:15', 'admin', '2019-04-01 17:48:40');
|
|
|
|
|
INSERT INTO `jimu_dict_item` VALUES ('25847e9cb661a7c711f9998452dc09e6', '4e4602b3e3686f0911384e188dc7efb4', '小于等于', '<=', '小于等于', 6, 1, 'admin', '2019-04-01 16:44:34', 'admin', '2019-04-01 17:49:10');
|
2022-12-07 13:22:18 +00:00
|
|
|
|
INSERT INTO `jimu_dict_item` VALUES ('2d51376643f220afdeb6d216a8ac2c01', '68168534ff5065a152bfab275c2136f8', '有效', '1', '有效', 1, 1, 'admin', '2020-10-26 19:22:01', 'admin', '2022-03-24 21:35:40');
|
2021-06-23 03:13:11 +00:00
|
|
|
|
INSERT INTO `jimu_dict_item` VALUES ('308c8aadf0c37ecdde188b97ca9833f5', '8dfe32e2d29ea9430a988b3b558bf233', '已发布', '1', '已发布', 2, 1, 'admin', '2019-04-16 17:41:24', NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_dict_item` VALUES ('333e6b2196e01ef9a5f76d74e86a6e33', '8dfe32e2d29ea9430a988b3b558bf233', '未发布', '0', '未发布', 1, 1, 'admin', '2019-04-16 17:41:12', NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_dict_item` VALUES ('337ea1e401bda7233f6258c284ce4f50', 'bd1b8bc28e65d6feefefb6f3c79f42fd', 'JSON', 'json', NULL, 1, 1, 'admin', '2019-04-12 17:26:33', NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_dict_item` VALUES ('33bc9d9f753cf7dc40e70461e50fdc54', 'a9d9942bd0eccb6e89de92d130ec4c4a', '发送失败', '2', NULL, 3, 1, 'admin', '2019-04-12 18:20:02', NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_dict_item` VALUES ('3c209b31417aba7cd5663355611d12c5', '36d57175542a3ea85073923e8fccc21c', '羊毛衫及毛背心类', '3', NULL, 3, 1, 'admin', '2019-04-23 23:03:27', NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_dict_item` VALUES ('3fbc03d6c994ae06d083751248037c0e', '78bda155fe380b1b3f175f1e88c284c6', '已完成', '3', '已完成', 3, 1, 'admin', '2019-05-09 16:33:25', NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_dict_item` VALUES ('41d7aaa40c9b61756ffb1f28da5ead8e', '0b5d19e1fce4b2e6647e6b4a17760c14', '通知公告', '1', NULL, 1, 1, 'admin', '2019-04-22 18:01:57', NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_dict_item` VALUES ('41fa1e9571505d643aea87aeb83d4d76', '4e4602b3e3686f0911384e188dc7efb4', '等于', '=', '等于', 4, 1, 'admin', '2019-04-01 16:45:24', 'admin', '2019-04-01 17:49:00');
|
|
|
|
|
INSERT INTO `jimu_dict_item` VALUES ('4d7bcaf63f274e262c8e919470e47e5f', '20863a840c7622c3eab0ee69e55a8c7c', '同意', '同意', '同意', 1, 1, 'admin', '2019-05-15 11:04:31', NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_dict_item` VALUES ('4f05fb5376f4c61502c5105f52e4dd2b', '83bfb33147013cc81640d5fd9eda030c', '操作日志', '2', NULL, NULL, 1, 'admin', '2019-03-18 23:22:49', NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_dict_item` VALUES ('50223341bfb5ba30bf6319789d8d17fe', 'd6e1152968b02d69ff358c75b48a6ee1', '业务办理', 'business', NULL, 3, 1, 'admin', '2023-04-22 19:28:05', 'admin', '2019-03-22 23:24:39');
|
|
|
|
|
INSERT INTO `jimu_dict_item` VALUES ('538fca35afe004972c5f3947c039e766', '2e02df51611a4b9632828ab7e5338f00', '显示', '1', '显示', 1, 1, 'admin', '2025-03-26 18:27:13', 'admin', '2019-04-26 18:39:07');
|
|
|
|
|
INSERT INTO `jimu_dict_item` VALUES ('5584c21993bde231bbde2b966f2633ac', '4e4602b3e3686f0911384e188dc7efb4', '自定义SQL', 'USE_SQL_RULES', '自定义SQL表达式', 9, 1, 'admin', '2019-04-01 10:45:24', 'admin', '2019-04-01 17:49:27');
|
|
|
|
|
INSERT INTO `jimu_dict_item` VALUES ('56b9f1c6364c775236e1aa16ff97afae', '20863a840c7622c3eab0ee69e55a8c7c', '不同意', '不同意', '不同意', 6, 1, 'admin', '2019-05-15 11:07:17', NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_dict_item` VALUES ('58b73b344305c99b9d8db0fc056bbc0a', '72cce0989df68887546746d8f09811aa', '主表', '2', NULL, 2, 1, 'admin', '2019-03-27 10:13:36', NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_dict_item` VALUES ('598380c65be4568b6ad507e563aba667', '76c1d6755018a918c9eeda575dbf3f98', '包', '8', NULL, 8, 1, 'admin', '2019-04-23 23:01:58', NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_dict_item` VALUES ('5b65a88f076b32e8e69d19bbaadb52d5', '2f0320997ade5dd147c90130f7218c3e', '全体用户', 'ALL', NULL, NULL, 1, 'admin', '2020-10-17 21:22:43', 'admin', '2019-03-28 22:17:09');
|
|
|
|
|
INSERT INTO `jimu_dict_item` VALUES ('5d833f69296f691843ccdd0c91212b6b', '880a895c98afeca9d9ac39f29e67c13e', '修改', '3', '', 3, 1, 'admin', '2019-07-22 10:55:07', 'admin', '2019-07-22 10:55:41');
|
|
|
|
|
INSERT INTO `jimu_dict_item` VALUES ('5d84a8634c8fdfe96275385075b105c9', '3d9a351be3436fbefb1307d4cfb49bf2', '女', '2', NULL, 2, 1, NULL, '2019-01-04 14:56:56', NULL, '2019-01-04 17:38:12');
|
|
|
|
|
INSERT INTO `jimu_dict_item` VALUES ('66c952ae2c3701a993e7db58f3baf55e', '4e4602b3e3686f0911384e188dc7efb4', '大于', '>', '大于', 1, 1, 'admin', '2019-04-01 10:45:46', 'admin', '2019-04-01 17:48:29');
|
|
|
|
|
INSERT INTO `jimu_dict_item` VALUES ('69cacf64e244100289ddd4aa9fa3b915', 'a9d9942bd0eccb6e89de92d130ec4c4a', '未发送', '0', NULL, 1, 1, 'admin', '2019-04-12 18:19:23', NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_dict_item` VALUES ('6a7a9e1403a7943aba69e54ebeff9762', '4f69be5f507accea8d5df5f11346181a', '邮件', '2', '', 2, 1, 'admin', '2031-02-28 10:50:44', 'admin', '2019-04-28 10:59:03');
|
|
|
|
|
INSERT INTO `jimu_dict_item` VALUES ('6c682d78ddf1715baf79a1d52d2aa8c2', '72cce0989df68887546746d8f09811aa', '单表', '1', NULL, 1, 1, 'admin', '2019-03-27 10:13:29', NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_dict_item` VALUES ('6d404fd2d82311fbc87722cd302a28bc', '4e4602b3e3686f0911384e188dc7efb4', '模糊', 'LIKE', '模糊', 7, 1, 'admin', '2019-04-01 16:46:02', 'admin', '2019-04-01 17:49:20');
|
|
|
|
|
INSERT INTO `jimu_dict_item` VALUES ('6d4e26e78e1a09699182e08516c49fc4', '4d7fec1a7799a436d26d02325eff295e', '高', 'H', '高', 1, 1, 'admin', '2019-04-16 17:04:24', NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_dict_item` VALUES ('6e65c7d1cb1a433b5cccc2e072f6c536', '76c1d6755018a918c9eeda575dbf3f98', '双', '4', NULL, 4, 1, 'admin', '2019-04-23 23:01:10', NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_dict_item` VALUES ('7050c1522702bac3be40e3b7d2e1dfd8', 'c5a14c75172783d72cbee6ee7f5df5d1', '柱状图', 'bar', NULL, 1, 1, 'admin', '2019-04-12 17:05:17', NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_dict_item` VALUES ('71b924faa93805c5c1579f12e001c809', 'd6e1152968b02d69ff358c75b48a6ee1', 'OA办公', 'oa', NULL, 2, 1, 'admin', '2021-03-22 19:27:17', 'admin', '2019-03-22 23:24:36');
|
|
|
|
|
INSERT INTO `jimu_dict_item` VALUES ('75b260d7db45a39fc7f21badeabdb0ed', 'c36169beb12de8a71c8683ee7c28a503', '不启用', '0', NULL, NULL, 1, 'admin', '2019-03-18 23:29:41', 'admin', '2019-03-18 23:29:54');
|
|
|
|
|
INSERT INTO `jimu_dict_item` VALUES ('7688469db4a3eba61e6e35578dc7c2e5', 'c36169beb12de8a71c8683ee7c28a503', '启用', '1', NULL, NULL, 1, 'admin', '2019-03-18 23:29:28', NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_dict_item` VALUES ('78ea6cadac457967a4b1c4eb7aaa418c', 'fc6cd58fde2e8481db10d3a1e68ce70c', '正常', '1', NULL, NULL, 1, 'admin', '2019-03-18 23:30:28', NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_dict_item` VALUES ('7ccf7b80c70ee002eceb3116854b75cb', 'ac2f7c0c5c5775fcea7e2387bcb22f01', '按钮权限', '2', NULL, NULL, 1, 'admin', '2019-03-18 23:25:40', NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_dict_item` VALUES ('81fb2bb0e838dc68b43f96cc309f8257', 'fc6cd58fde2e8481db10d3a1e68ce70c', '冻结', '2', NULL, NULL, 1, 'admin', '2019-03-18 23:30:37', NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_dict_item` VALUES ('83250269359855501ec4e9c0b7e21596', '4274efc2292239b6f000b153f50823ff', '可见/可访问(授权后可见/可访问)', '1', '', 1, 1, 'admin', '2023-06-10 17:54:51', 'admin', '2019-06-05 19:43:11');
|
|
|
|
|
INSERT INTO `jimu_dict_item` VALUES ('84778d7e928bc843ad4756db1322301f', '4e4602b3e3686f0911384e188dc7efb4', '大于等于', '>=', '大于等于', 5, 1, 'admin', '2019-04-01 10:46:02', 'admin', '2019-04-01 17:49:05');
|
|
|
|
|
INSERT INTO `jimu_dict_item` VALUES ('848d4da35ebd93782029c57b103e5b36', 'c5a14c75172783d72cbee6ee7f5df5d1', '饼图', 'pie', NULL, 3, 1, 'admin', '2019-04-12 17:05:49', NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_dict_item` VALUES ('84dfc178dd61b95a72900fcdd624c471', '78bda155fe380b1b3f175f1e88c284c6', '处理中', '2', '处理中', 2, 1, 'admin', '2019-05-09 16:33:01', NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_dict_item` VALUES ('86f19c7e0a73a0bae451021ac05b99dd', 'ac2f7c0c5c5775fcea7e2387bcb22f01', '子菜单', '1', NULL, NULL, 1, 'admin', '2019-03-18 23:25:27', NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_dict_item` VALUES ('8bccb963e1cd9e8d42482c54cc609ca2', '4f69be5f507accea8d5df5f11346181a', '微信', '3', NULL, 3, 1, 'admin', '2021-05-11 14:29:12', 'admin', '2019-04-11 14:29:31');
|
|
|
|
|
INSERT INTO `jimu_dict_item` VALUES ('8c618902365ca681ebbbe1e28f11a548', '4c753b5293304e7a445fd2741b46529d', '启用', '1', NULL, 0, 0, 'admin', '2019-03-18 23:19:27', 'admin', '2019-03-20 09:33:30');
|
|
|
|
|
INSERT INTO `jimu_dict_item` VALUES ('8cdf08045056671efd10677b8456c999', '4274efc2292239b6f000b153f50823ff', '可编辑(未授权时禁用)', '2', '', 2, 1, 'admin', '2019-05-10 17:55:38', NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_dict_item` VALUES ('8ff48e657a7c5090d4f2a59b37d1b878', '4d7fec1a7799a436d26d02325eff295e', '中', 'M', '中', 2, 1, 'admin', '2019-04-16 17:04:40', NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_dict_item` VALUES ('948923658baa330319e59b2213cda97c', '880a895c98afeca9d9ac39f29e67c13e', '添加', '2', '', 2, 1, 'admin', '2019-07-22 10:54:59', 'admin', '2019-07-22 10:55:36');
|
|
|
|
|
INSERT INTO `jimu_dict_item` VALUES ('9a96c4a4e4c5c9b4e4d0cbf6eb3243cc', '4c753b5293304e7a445fd2741b46529d', '不启用', '0', NULL, 1, 1, 'admin', '2019-03-18 23:19:53', NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_dict_item` VALUES ('9c5b6144c4f954d938c96384e2e948aa', '20863a840c7622c3eab0ee69e55a8c7c', '请审批', '请审批', '请审批', 8, 1, 'admin', '2019-05-15 11:08:35', NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_dict_item` VALUES ('a05f177a7d9aeb84125ee8bc9c4fc64b', '49a0f7247f9c2a7df4e5733b790a4c9f', '耐克供应商', '2', NULL, 1, 1, 'admin', '2023-01-24 16:49:39', 'admin', '2019-04-24 16:49:59');
|
|
|
|
|
INSERT INTO `jimu_dict_item` VALUES ('a1e7d1ca507cff4a480c8caba7c1339e', '880a895c98afeca9d9ac39f29e67c13e', '导出', '6', '', 6, 1, 'admin', '2019-07-22 12:06:50', NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_dict_item` VALUES ('a2be752dd4ec980afaec1efd1fb589af', '8dfe32e2d29ea9430a988b3b558bf233', '已撤销', '2', '已撤销', 3, 1, 'admin', '2019-04-16 17:41:39', NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_dict_item` VALUES ('aa0d8a8042a18715a17f0a888d360aa4', 'ac2f7c0c5c5775fcea7e2387bcb22f01', '一级菜单', '0', NULL, NULL, 1, 'admin', '2019-03-18 23:24:52', NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_dict_item` VALUES ('adcf2a1fe93bb99a84833043f475fe0b', '4e4602b3e3686f0911384e188dc7efb4', '包含', 'IN', '包含', 8, 1, 'admin', '2019-04-01 16:45:47', 'admin', '2019-04-01 17:49:24');
|
|
|
|
|
INSERT INTO `jimu_dict_item` VALUES ('b029a41a851465332ee4ee69dcf0a4c2', '0b5d19e1fce4b2e6647e6b4a17760c14', '系统消息', '2', NULL, 1, 1, 'admin', '2019-02-22 18:02:08', 'admin', '2019-04-22 18:02:13');
|
|
|
|
|
INSERT INTO `jimu_dict_item` VALUES ('b038e6f80c527d684c9ca0e1ecbef72f', '49a0f7247f9c2a7df4e5733b790a4c9f', '阿迪供应商', '1', NULL, 1, 1, 'admin', '2023-01-24 16:49:34', 'admin', '2019-04-24 16:50:02');
|
|
|
|
|
INSERT INTO `jimu_dict_item` VALUES ('b2a8b4bb2c8e66c2c4b1bb086337f393', '3486f32803bb953e7155dab3513dc68b', '正常', '0', NULL, NULL, 1, 'admin', '2022-10-18 21:46:48', 'admin', '2019-03-28 22:22:20');
|
|
|
|
|
INSERT INTO `jimu_dict_item` VALUES ('b5f3bd5f66bb9a83fecd89228c0d93d1', '68168534ff5065a152bfab275c2136f8', '无效', '0', '无效', 2, 1, 'admin', '2020-09-26 19:21:49', 'admin', '2019-05-13 17:20:07');
|
|
|
|
|
INSERT INTO `jimu_dict_item` VALUES ('b96af20aef0c9388f2ae843ea7f8d722', '20863a840c7622c3eab0ee69e55a8c7c', '请***阅示', '请***阅示', '请***阅示', 4, 1, 'admin', '2019-05-15 11:06:25', NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_dict_item` VALUES ('b9fbe2a3602d4a27b45c100ac5328484', '78bda155fe380b1b3f175f1e88c284c6', '待提交', '1', '待提交', 1, 1, 'admin', '2019-05-09 16:32:35', NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_dict_item` VALUES ('ba27737829c6e0e582e334832703d75e', '236e8a4baff0db8c62c00dd95632834f', '同步', '1', '同步', 1, 1, 'admin', '2019-05-15 15:28:15', NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_dict_item` VALUES ('bcec04526b04307e24a005d6dcd27fd6', '880a895c98afeca9d9ac39f29e67c13e', '导入', '5', '', 5, 1, 'admin', '2019-07-22 12:06:41', NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_dict_item` VALUES ('bdeae295bf98a61b45e9be0322657d4b', 'c72e92c2c13cdbc07b455e6abcc60d47', '不启动', '2', NULL, 1, 1, 'admin', '2019-04-23 23:05:57', NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_dict_item` VALUES ('c4896da3525689b477b3c868d728c87f', 'c72e92c2c13cdbc07b455e6abcc60d47', '启动', '1', NULL, 1, 1, 'admin', '2019-04-23 23:05:40', NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_dict_item` VALUES ('c53da022b9912e0aed691bbec3c78473', '880a895c98afeca9d9ac39f29e67c13e', '查询', '1', '', 1, 1, 'admin', '2019-07-22 10:54:51', NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_dict_item` VALUES ('c83d907903a7a5ff52de60aabf3550ee', '76c1d6755018a918c9eeda575dbf3f98', '件', '1', NULL, 1, 1, 'admin', '2018-12-23 23:00:17', 'admin', '2019-04-23 23:14:00');
|
|
|
|
|
INSERT INTO `jimu_dict_item` VALUES ('c8e63916333e588ef52d3eb3be9b6944', '0b1dac3e87ed7229ae19a586a8b8c8f8', 'dd', 'dd', NULL, 1, 1, 'admin', '2019-04-26 18:26:07', NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_dict_item` VALUES ('c9c3fb6c8a06b7bf577b4f574adccd12', '20863a840c7622c3eab0ee69e55a8c7c', '请指示', '请指示', '请指示', 3, 1, 'admin', '2019-05-15 11:05:58', NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_dict_item` VALUES ('cbfcc5b88fc3a90975df23ffc8cbe29c', 'c5a14c75172783d72cbee6ee7f5df5d1', '曲线图', 'line', NULL, 2, 1, 'admin', '2019-05-12 17:05:30', 'admin', '2019-04-12 17:06:06');
|
|
|
|
|
INSERT INTO `jimu_dict_item` VALUES ('d217592908ea3e00ff986ce97f24fb98', 'c5a14c75172783d72cbee6ee7f5df5d1', '数据列表', 'table', NULL, 4, 1, 'admin', '2019-04-12 17:05:56', NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_dict_item` VALUES ('d76e35d4fa1c2892ff812e1de08b8684', '36d57175542a3ea85073923e8fccc21c', '标准尺码类', '4', NULL, 4, 1, 'admin', '2019-04-23 23:03:37', NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_dict_item` VALUES ('da01e5c526fc1984ca60fdcf13354d05', '20863a840c7622c3eab0ee69e55a8c7c', '同意***的意见', '同意***的意见', '同意***的意见', 2, 1, 'admin', '2019-05-15 11:05:33', NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_dict_item` VALUES ('db681e7aabd2ff52fdfaf6c2770448ff', '76c1d6755018a918c9eeda575dbf3f98', '套', '2', NULL, 2, 1, 'admin', '2019-04-23 23:00:32', NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_dict_item` VALUES ('df168368dcef46cade2aadd80100d8aa', '3d9a351be3436fbefb1307d4cfb49bf2', '男', '1', '', 1, 1, NULL, '2027-08-04 14:56:49', 'admin', '2020-05-11 14:07:04');
|
|
|
|
|
INSERT INTO `jimu_dict_item` VALUES ('e05d424ee35c707d7bc20de3719fb3ae', '76c1d6755018a918c9eeda575dbf3f98', '块', '7', NULL, 7, 1, 'admin', '2019-01-23 23:01:36', 'admin', '2019-04-23 23:01:48');
|
|
|
|
|
INSERT INTO `jimu_dict_item` VALUES ('e6329e3a66a003819e2eb830b0ca2ea0', '4e4602b3e3686f0911384e188dc7efb4', '小于', '<', '小于', 2, 1, 'admin', '2019-04-01 16:44:15', 'admin', '2019-04-01 17:48:34');
|
|
|
|
|
INSERT INTO `jimu_dict_item` VALUES ('e8f34a36f38f35e2efb1aaa342509242', '78bda155fe380b1b3f175f1e88c284c6', '已挂起', '5', '已挂起', 5, 1, 'admin', '2019-05-23 16:12:42', 'admin', '2019-05-22 18:39:42');
|
|
|
|
|
INSERT INTO `jimu_dict_item` VALUES ('e94eb7af89f1dbfa0d823580a7a6e66a', '236e8a4baff0db8c62c00dd95632834f', '不同步', '0', '不同步', 2, 1, 'admin', '2019-05-15 15:28:28', NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_dict_item` VALUES ('ecb788a9b71d3d11357c31a0febefaaa', '36d57175542a3ea85073923e8fccc21c', '男衬衫类', '2', NULL, 2, 1, 'admin', '2019-04-23 23:03:18', NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_dict_item` VALUES ('f16c5706f3ae05c57a53850c64ce7c45', 'a9d9942bd0eccb6e89de92d130ec4c4a', '发送成功', '1', NULL, 2, 1, 'admin', '2019-04-12 18:19:43', NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_dict_item` VALUES ('f2688992fffa5c62e31ce50bbb1919d9', '20863a840c7622c3eab0ee69e55a8c7c', '审核无误', '审核无误', '审核无误', 9, 1, 'admin', '2019-05-15 11:08:58', NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_dict_item` VALUES ('f2bda3b1ca643b789a2e712ad53b06fb', '36d57175542a3ea85073923e8fccc21c', '固定型号', '5', NULL, 5, 1, 'admin', '2019-04-23 23:03:47', NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_dict_item` VALUES ('f37f90c496ec9841c4c326b065e00bb2', '83bfb33147013cc81640d5fd9eda030c', '登录日志', '1', NULL, NULL, 1, 'admin', '2019-03-18 23:22:37', NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_dict_item` VALUES ('f64ca22c7a2d5793a271590e7b01eb6b', '76c1d6755018a918c9eeda575dbf3f98', '个', '5', NULL, 6, 1, 'admin', '2019-04-23 23:01:21', NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_dict_item` VALUES ('f753aff60ff3931c0ecb4812d8b5e643', '4c03fca6bf1f0299c381213961566349', '双排布局', 'double', NULL, 3, 1, 'admin', '2019-04-12 17:43:51', NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_dict_item` VALUES ('f80a8f6838215753b05e1a5ba3346d22', '880a895c98afeca9d9ac39f29e67c13e', '删除', '4', '', 4, 1, 'admin', '2019-07-22 10:55:14', 'admin', '2019-07-22 10:55:30');
|
|
|
|
|
INSERT INTO `jimu_dict_item` VALUES ('fb80836f3e69d977303e56023cf4b0ca', '20863a840c7622c3eab0ee69e55a8c7c', '请处理', '请处理', '请处理', 5, 1, 'admin', '2019-05-15 11:06:57', NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_dict_item` VALUES ('fcec03570f68a175e1964808dc3f1c91', '4c03fca6bf1f0299c381213961566349', 'Tab风格', 'tab', NULL, 1, 1, 'admin', '2019-04-12 17:43:31', NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_dict_item` VALUES ('fe50b23ae5e68434def76f67cef35d2d', '78bda155fe380b1b3f175f1e88c284c6', '已作废', '4', '已作废', 4, 1, 'admin', '2021-09-09 16:33:43', 'admin', '2019-05-09 16:34:40');
|
|
|
|
|
|
|
|
|
|
-- ----------------------------
|
|
|
|
|
-- Table structure for jimu_report
|
|
|
|
|
-- ----------------------------
|
|
|
|
|
DROP TABLE IF EXISTS `jimu_report`;
|
|
|
|
|
CREATE TABLE `jimu_report` (
|
|
|
|
|
`id` varchar(32) CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL COMMENT '主键',
|
|
|
|
|
`code` varchar(50) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '编码',
|
|
|
|
|
`name` varchar(50) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '名称',
|
|
|
|
|
`note` varchar(255) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '说明',
|
|
|
|
|
`status` varchar(10) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '状态',
|
|
|
|
|
`type` varchar(10) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '类型',
|
2021-10-11 09:50:19 +00:00
|
|
|
|
`json_str` longtext CHARACTER SET utf8 COLLATE utf8_general_ci NULL COMMENT 'json字符串',
|
2021-06-23 03:13:11 +00:00
|
|
|
|
`api_url` varchar(255) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '请求地址',
|
|
|
|
|
`thumb` text CHARACTER SET utf8 COLLATE utf8_general_ci NULL COMMENT '缩略图',
|
|
|
|
|
`create_by` varchar(50) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '创建人',
|
|
|
|
|
`create_time` datetime NULL DEFAULT NULL COMMENT '创建时间',
|
|
|
|
|
`update_by` varchar(50) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '修改人',
|
|
|
|
|
`update_time` datetime NULL DEFAULT NULL COMMENT '修改时间',
|
|
|
|
|
`del_flag` tinyint(1) NULL DEFAULT NULL COMMENT '删除标识0-正常,1-已删除',
|
|
|
|
|
`api_method` varchar(255) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '请求方法0-get,1-post',
|
|
|
|
|
`api_code` varchar(255) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '请求编码',
|
|
|
|
|
`template` tinyint(1) NULL DEFAULT NULL COMMENT '是否是模板 0-是,1-不是',
|
2021-10-11 09:50:19 +00:00
|
|
|
|
`view_count` bigint(15) NULL DEFAULT 0 COMMENT '浏览次数',
|
|
|
|
|
`css_str` text CHARACTER SET utf8 COLLATE utf8_general_ci NULL COMMENT 'css增强',
|
|
|
|
|
`js_str` text CHARACTER SET utf8 COLLATE utf8_general_ci NULL COMMENT 'js增强',
|
2024-02-18 11:29:58 +00:00
|
|
|
|
`py_str` text CHARACTER SET utf8 COLLATE utf8_general_ci NULL COMMENT 'py增强',
|
2022-12-07 13:22:18 +00:00
|
|
|
|
`tenant_id` varchar(10) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '多租户标识',
|
2021-06-23 03:13:11 +00:00
|
|
|
|
PRIMARY KEY (`id`) USING BTREE,
|
2021-10-11 09:50:19 +00:00
|
|
|
|
UNIQUE INDEX `uniq_jmreport_code`(`code`) USING BTREE,
|
|
|
|
|
INDEX `uniq_jmreport_createby`(`create_by`) USING BTREE,
|
|
|
|
|
INDEX `uniq_jmreport_delflag`(`del_flag`) USING BTREE
|
2022-12-07 13:22:18 +00:00
|
|
|
|
) ENGINE = InnoDB CHARACTER SET = utf8 COLLATE = utf8_general_ci COMMENT = '在线excel设计器' ROW_FORMAT = DYNAMIC;
|
2021-06-23 03:13:11 +00:00
|
|
|
|
|
|
|
|
|
-- ----------------------------
|
|
|
|
|
-- Records of jimu_report
|
|
|
|
|
-- ----------------------------
|
2024-02-18 11:29:58 +00:00
|
|
|
|
INSERT INTO `jimu_report` VALUES ('1298922907493339136', '20200827180435', '员工信息横向统计表', NULL, NULL, 'datainfo', '{\"loopBlockList\":[],\"area\":{\"sri\":9,\"sci\":3,\"eri\":9,\"eci\":3,\"width\":100,\"height\":25},\"excel_config_id\":\"1298922907493339136\",\"printConfig\":{\"paper\":\"A4\",\"width\":210,\"height\":297,\"definition\":1,\"isBackend\":false,\"marginX\":10,\"marginY\":10},\"rows\":{\"1\":{\"cells\":{\"0\":{\"text\":\"员工信息横向统计表\",\"style\":9,\"merge\":[0,11]}},\"height\":97},\"2\":{\"cells\":{\"1\":{\"text\":\"部门\",\"style\":7},\"2\":{\"text\":\"#{hex.customGroup(department)}\",\"style\":11,\"direction\":\"right\",\"rendered\":\"\"}},\"isDrag\":true,\"height\":40},\"3\":{\"cells\":{\"1\":{\"text\":\"学历\",\"style\":7},\"2\":{\"text\":\"#{hex.customGroup(education)}\",\"style\":11,\"direction\":\"right\"}},\"isDrag\":true,\"height\":39},\"4\":{\"cells\":{\"1\":{\"text\":\"性别\",\"style\":7},\"2\":{\"text\":\"#{hex.customGroup(sex)}\",\"style\":11,\"direction\":\"right\"}},\"isDrag\":true,\"height\":41},\"5\":{\"cells\":{\"1\":{\"text\":\"年龄\",\"style\":7},\"2\":{\"text\":\"#{hex.customGroup(age)}\",\"style\":11}},\"isDrag\":true,\"height\":39},\"6\":{\"cells\":{\"1\":{\"text\":\"姓名\",\"style\":7},\"2\":{\"text\":\"#{hex.customGroup(name)}\",\"style\":11,\"direction\":\"right\"}},\"isDrag\":true,\"height\":40},\"7\":{\"cells\":{\"1\":{\"text\":\"薪水\",\"style\":7},\"2\":{\"text\":\"#{hex.customGroup(salary)}\",\"style\":11,\"direction\":\"right\"}},\"isDrag\":true,\"height\":36},\"8\":{\"cells\":{\"2\":{\"direction\":\"right\"}},\"isDrag\":true},\"9\":{\"cells\":{\"3\":{\"aggregate\":\"group\",\"direction\":\"right\"}},\"isDrag\":true},\"11\":{\"cells\":{},\"isDrag\":true},\"len\":100},\"dbexps\":[],\"toolPrintSizeObj\":{\"printType\":\"A4\",\"widthPx\":718,\"heightPx\":1047},\"dicts\":[],\"freeze\":\"A1\",\"dataRectWidth\":204,\"displayConfig\":{},\"background\":false,\"name\":\"sheet1\",\"autofilter\":{},\"styles\":[{\"bgcolor\":\"#9cc2e6\"},{\"bgcolor\":\"#9cc2e6\",\"align\":\"center\"},{\"bgcolor\":\"#9cc2e6\",\"align\":\"center\",\"border\":{\"bottom\":[\"thin\",\"#5b9cd6\"],\"top\":[\"thin\",\"#5b9cd6\"],\"left\":[\"thin\",\"#5b9cd6\"],\"right\":[\"thin\",\"#5b9cd6\"]}},{\"border\":{\"bottom\":[\"thin\",\"#5b9cd6\"],\"top\":[\"thin\",\"#5b9cd6\"],\"left\":[\"thin\",\"#5b9cd6\"],\"right\":[\"thin\",\"#5b9cd6\"]}},{\"align\":\"center\"},{\"align\":\"center\",\"font\":{\"bold\":true}},{\"align\":\"center\",\"font\":{\"bold\":true,\"size\":14}},{\"bgcolor\":\"#9cc2e6\",\"align\":\"center\",\"border\":{\"bottom\":[\"thin\",\"#5b9cd6\"],\"top\":[\"thin\",\"#5b9cd6\"],\"left\":[\"thin\",\"#5b9cd6\"],\"right\":[\"thin\",\"#5b9cd6\"]},\"font\":{\"name\":\"宋体\"}},{\"border\":{\"bottom\":[\"thin\",\"#5b9cd6\"],\"top\":[\"thin\",\"#5b9cd6\"],\"left\":[\"thin\",\"#5b9cd6\"],\"right\":[\"thin\",\"#5b9cd6\"]},\"font\":{\"name\":\"宋体\"}},{\"align\":\"center\",\"font\":{\"bold\":true,\"size\":14,\"name\":\"宋体\"}},{\"align\":\"center\",\"font\":{\"bold\":false,\"size\":14,\"name\":\"宋体\"}},{\"border\":{\"bottom\":[\"thin\",\"#5b9cd6\"],\"top\":[\"thin\",\"#5b9cd6\"],\"left\":[\"thin\",\"#5b9cd6\"],\"right\":[\"thin\",\"#5b9cd6\"]},\"font\":{\"name\":\"宋体\"},\"align\":\"center\"}],\"validations\":[],\"cols\":{\"0\":{\"width\":44},\"1\":{\"width\":79},\"2\":{\"width\":81},\"len\":50},\"merges\":[\"A2:L2\"]}', NULL, 'https://static.jeecg.com/designreport/images/QQ截图20210127135515_1611726986233.png', 'admin', '2020-08-27 18:04:35', 'admin', '2021-08-04 18:53:48', 0, NULL, NULL, 1, 2575, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report` VALUES ('1314846205892759552', '20201010163252', 'XXX有限公司员工登记表', NULL, NULL, 'printinfo', '{\"loopBlockList\":[],\"area\":{\"sri\":33,\"sci\":12,\"eri\":33,\"eci\":12,\"width\":100,\"height\":25},\"excel_config_id\":\"1314846205892759552\",\"printConfig\":{\"paper\":\"A4\",\"width\":210,\"height\":297,\"definition\":1,\"isBackend\":false,\"marginX\":10,\"marginY\":10,\"layout\":\"portrait\"},\"zonedEditionList\":[],\"rows\":{\"0\":{\"cells\":{\"1\":{\"merge\":[0,8]},\"10\":{}},\"height\":22},\"1\":{\"cells\":{\"2\":{\"style\":87,\"text\":\" \"},\"3\":{\"style\":87,\"text\":\" \"},\"4\":{\"style\":87,\"text\":\" \"},\"5\":{\"style\":87,\"text\":\" \"},\"6\":{\"style\":87,\"text\":\" \"},\"7\":{\"style\":87,\"text\":\" \"},\"8\":{\"style\":87,\"text\":\" \"},\"9\":{\"style\":87,\"text\":\" \"}},\"height\":24},\"2\":{\"cells\":{\"1\":{\"text\":\"所在部门\",\"style\":93},\"2\":{\"text\":\"${yuangongjiben.department}\",\"style\":23,\"merge\":[0,2]},\"5\":{\"text\":\"职务\",\"style\":93},\"6\":{\"text\":\"${yuangongjiben.post}\",\"style\":23},\"7\":{\"text\":\"填写日期\",\"style\":93},\"8\":{\"text\":\"${yuangongjiben.data}\",\"style\":23,\"merge\":[0,1]}},\"isDrag\":true,\"height\":36},\"3\":{\"cells\":{\"1\":{\"text\":\"姓名\",\"style\":93},\"2\":{\"text\":\"${yuangongjiben.name}\",\"style\":23},\"3\":{\"text\":\"性别\",\"style\":93},\"4\":{\"text\":\"${yuangongjiben.sex}\",\"style\":23},\"5\":{\"text\":\"出生日期\",\"style\":93},\"6\":{\"text\":\"${yuangongjiben.birth}\",\"style\":23},\"7\":{\"text\":\"政治面貌\",\"style\":93},\"8\":{\"text\":\"${yuangongjiben.political}\",\"style\":26,\"merge\":[0,1]},\"9\":{\"style\":7,\"text\":\" \"}},\"isDrag\":true,\"height\":33},\"4\":{\"cells\":{\"1\":{\"text\":\"机关\",\"style\":93},\"2\":{\"text\":\"${yuangongjiben.office}\",\"style\":23},\"3\":{\"style\":93,\"text\":\"民族\"},\"4\":{\"text\":\"${yuangongjiben.nation}\",\"style\":23},\"5\":{\"style\":93,\"text\":\"健康状况\"},\"6\":{\"text\":\"${yuangongjiben.health}\",\"style\":23},\"7\":{\"style\":93,\"text\":\"户籍类型\"},\"8\":{\"text\":\"${yuangongjiben.register}\",\"style\":26},\"9\":{\"style\":35,\"text\":\" \",\"merge\":[3,0],\"virtual\":\"AgnPgVOpFUlD88BW\"}},\"isDrag\":true,\"height\":31},\"5\":{\"cells\":{\"1\":{\"text\":\"最高学历\",\"style\":93},\"2\":{\"text\":\"${yuangongjiben.education}\",\"style\":23},\"3\":{\"text\":\"所学专业\",\"style\":93},\"4\":{\"text\":\"${yuangongjiben.major}\",\"style\":23,\"merge\":[0,2]},\"7\":{\"text\":\"毕业时间\",\"style\":93},\"8\":{\"text\":\"${yuangongjiben.gdata}\",\"style\":23}},\"isDrag\":true,\"height\":35},\"6\":{\"cells\":{\"1\":{\"text\":\"电子邮箱\",\"style\":93},\"2\":{\"text\":\"${yuangongjiben.mailbox}\",\"style\":23},\"3\":{\"text\":\"手机号\",\"style\":93},\"4\":{\"text\":\"${yuangongjiben.telphone}\",\"style\":23,\"merge\":[0,2]},\"7\":{\"text\":\"家庭电话\",\"style\":93},\"8\":{\"text\":\"${yuangongjiben.homephone}\",\"style\":23}},\"isDrag\":true,\"height\":38},\"7\":{\"cells\":{\"1\":{\"merge\":[0,1],\"text\":\"第一次参加工作时间\",\"style\":93},\"3\":{\"text\":\"${yuangongjiben.pworktime}\",\"style\":133,\"merge\":[0,2]},\"6\":{\"style\":93,\"text\":\"入职时间\"},\"7\":{\"text\":\"${yuangongjiben.entrytime}\",\"style\":24,\"merge\":[0,1]}},\"isDrag\":true,\"height\":27},\"8\":{\"cells\":{\"1\":{\"merge\":[0,1],\"text\":\"毕业院校\",\"style\":93},\"3\":{\"text\":\"${yuangongjiben.school}\",\"style\":24,\"merge\":[0,2]},\"6\":{\"style\":93,\"text\":\"身份证号\"},\"7\":{\"text\":\"${yuangongjiben.idcard}\",\"style\":24,\"merge\":[0,2]}},\"isDrag\":true,\"height\":34},\"9\":{\"cells\":{\"1\":{\"merge\":[0,1],\"text\":\"入党(团)时间、地点\",\"style\":94},\"3\":{\"text\":\"${yuangongjiben.entrytime}\",\"style\":24,\"merge\":[0,2]},\"6\":{\"text\":\"婚姻状况\",\"style\":93},\"7\":{\"text\":\"${yuangongjiben.marital}\",\"style\":23},\"8\":{\"text\":\"有无子女\",\"style\":93},\"9\":{\"text\":\"${yuangongjiben.children}\",\"style\":2
|
|
|
|
|
INSERT INTO `jimu_report` VALUES ('1316944968992034816', '20201016113231', '员工信息登记', NULL, NULL, 'printinfo', '{\"loopBlockList\":[],\"area\":false,\"excel_config_id\":\"1316944968992034816\",\"printConfig\":{\"paper\":\"A4\",\"width\":210,\"height\":297,\"definition\":1,\"isBackend\":false,\"marginX\":10,\"marginY\":10,\"layout\":\"portrait\"},\"zonedEditionList\":[],\"rows\":{\"1\":{\"cells\":{\"0\":{\"text\":\"员工信息登记表\",\"merge\":[0,6],\"style\":28}},\"height\":46},\"2\":{\"cells\":{\"0\":{\"text\":\"编号:\",\"style\":29},\"1\":{\"text\":\"${employee.num}\",\"style\":30,\"merge\":[0,3]},\"5\":{\"text\":\"填写日期:\",\"style\":29},\"6\":{\"text\":\"${employee.create_time}\",\"style\":34,\"rendered\":\"\"}},\"isDrag\":true,\"height\":44},\"3\":{\"cells\":{\"0\":{\"text\":\"姓名:\",\"style\":29},\"1\":{\"text\":\"${employee.name}\",\"style\":30},\"2\":{\"text\":\"性别:\",\"style\":29},\"3\":{\"text\":\"${employee.sex}\",\"style\":30},\"4\":{\"text\":\"出生年月:\",\"style\":29},\"5\":{\"text\":\"${employee.birthday}\",\"style\":36},\"6\":{\"style\":3,\"text\":\" \",\"merge\":[4,0],\"virtual\":\"8mRFFslT5d0Hfyos\"}},\"isDrag\":true,\"height\":42},\"4\":{\"cells\":{\"0\":{\"text\":\"民族:\",\"style\":29},\"1\":{\"text\":\"${employee.nation}\",\"style\":30},\"2\":{\"text\":\"政治面貌:\",\"style\":29},\"3\":{\"text\":\"${employee.political}\",\"style\":30},\"4\":{\"text\":\"籍贯:\",\"style\":29},\"5\":{\"text\":\"${employee.native_place}\",\"style\":30}},\"isDrag\":true,\"height\":38},\"5\":{\"cells\":{\"0\":{\"text\":\"身高(cm):\",\"style\":29},\"1\":{\"text\":\"${employee.height}\",\"style\":30},\"2\":{\"text\":\"体重(kg):\",\"style\":29},\"3\":{\"text\":\"${employee.weight}\",\"style\":30},\"4\":{\"text\":\"健康状况:\",\"style\":29},\"5\":{\"text\":\"${employee.health}\",\"style\":30}},\"isDrag\":true,\"height\":38},\"6\":{\"cells\":{\"0\":{\"text\":\"身份证号:\",\"style\":29},\"1\":{\"text\":\"${employee.id_card}\",\"style\":30,\"merge\":[0,2]},\"4\":{\"text\":\"学历:\",\"style\":29},\"5\":{\"text\":\"${employee.education}\",\"style\":30}},\"isDrag\":true,\"height\":40},\"7\":{\"cells\":{\"0\":{\"text\":\"毕业学校:\",\"style\":29},\"1\":{\"text\":\"${employee.school}\",\"style\":30,\"merge\":[0,2]},\"4\":{\"text\":\"专业:\",\"style\":29},\"5\":{\"text\":\"${employee.major}\",\"style\":30}},\"isDrag\":true,\"height\":44},\"8\":{\"cells\":{\"0\":{\"text\":\"联系地址:\",\"style\":29},\"1\":{\"text\":\"${employee.address}\",\"style\":30,\"merge\":[0,2]},\"4\":{\"text\":\"邮编:\",\"style\":29},\"5\":{\"text\":\"${employee.zip_code}\",\"style\":30,\"merge\":[0,1]}},\"isDrag\":true,\"height\":45},\"9\":{\"cells\":{\"0\":{\"text\":\"Email:\",\"style\":29},\"1\":{\"text\":\"${employee.email}\",\"style\":30,\"merge\":[0,2]},\"4\":{\"text\":\"手机号:\",\"style\":29},\"5\":{\"text\":\"${employee.phone}\",\"style\":30,\"merge\":[0,1]}},\"isDrag\":true,\"height\":40},\"10\":{\"cells\":{\"0\":{\"text\":\"外语语种:\",\"style\":29},\"1\":{\"text\":\"${employee.foreign_language}\",\"style\":30},\"2\":{\"text\":\"外语水平:\",\"style\":29},\"3\":{\"text\":\"${employee.foreign_language_level}\",\"style\":30},\"4\":{\"text\":\"计算机水平:\",\"style\":29},\"5\":{\"text\":\"${employee.computer_level}\",\"style\":30,\"merge\":[0,1]}},\"isDrag\":true,\"height\":41},\"11\":{\"cells\":{\"0\":{\"text\":\"毕业时间:\",\"style\":29},\"1\":{\"text\":\"${employee.graduation_time}\",\"style\":34,\"rendered\":\"\"},\"2\":{\"text\":\"到职时间:\",\"style\":29},\"3\":{\"text\":\"${employee.arrival_time}\",\"style\":34},\"4\":{\"text\":\"职称:\",\"style\":29},\"5\":{\"text\":\"${employee.positional_titles}\",\"style\":30,\"merge\":[0,1]}},\"isDrag\":true,\"height\":42},\"12\":{\"cells\":{\"0\":{\"text\":\"教育经历:\",\"style\":32},\"1\":{\"text\":\" \",\"style\":35,\"merge\":[0,5]}},\"isDrag\":true,\"height\":39},\"13\":{\"cells\":{\"0\":{\"text\":\"${employee.education_experience}\",\"style\":33,\"merge\":[0,6]}},\"isDrag\":true,\"height\":70},\"14\":{\"cel
|
|
|
|
|
INSERT INTO `jimu_report` VALUES ('1331429368098066432', '20201125104813', '制作业产能监控大屏', NULL, NULL, 'chartinfo', '{\"loopBlockList\":[],\"chartList\":[{\"row\":2,\"col\":5,\"colspan\":8,\"rowspan\":8,\"width\":\"893\",\"height\":\"206\",\"config\":\"{\\\"yAxis\\\":[{\\\"axisLabel\\\":{\\\"textStyle\\\":{\\\"color\\\":\\\"#EEEEEE\\\",\\\"fontSize\\\":\\\"10\\\"}},\\\"axisLine\\\":{\\\"lineStyle\\\":{\\\"color\\\":\\\"#EEEEEE\\\"}},\\\"show\\\":true,\\\"name\\\":\\\"\\\",\\\"splitLine\\\":{\\\"lineStyle\\\":{\\\"color\\\":\\\"red\\\",\\\"width\\\":1,\\\"type\\\":\\\"solid\\\"},\\\"show\\\":false},\\\"type\\\":\\\"value\\\"},{\\\"axisLabel\\\":{\\\"textStyle\\\":{\\\"color\\\":\\\"#EEEEEE\\\",\\\"fontSize\\\":12}},\\\"axisLine\\\":{\\\"lineStyle\\\":{\\\"color\\\":\\\"#EEEEEE\\\"}},\\\"show\\\":true,\\\"name\\\":\\\"\\\",\\\"splitLine\\\":{\\\"lineStyle\\\":{\\\"color\\\":\\\"red\\\",\\\"width\\\":1,\\\"type\\\":\\\"solid\\\"},\\\"show\\\":false},\\\"type\\\":\\\"value\\\"}],\\\"xAxis\\\":{\\\"axisLabel\\\":{\\\"rotate\\\":0,\\\"interval\\\":0,\\\"textStyle\\\":{\\\"color\\\":\\\"#EEEEEE\\\",\\\"fontSize\\\":\\\"10\\\"}},\\\"data\\\":[\\\"1\\\",\\\"2\\\",\\\"3\\\",\\\"4\\\",\\\"5\\\",\\\"6\\\",\\\"7\\\",\\\"8\\\",\\\"9\\\",\\\"10\\\",\\\"11\\\",\\\"12\\\",\\\"13\\\",\\\"14\\\",\\\"15\\\",\\\"16\\\",\\\"17\\\",\\\"18\\\",\\\"19\\\",\\\"20\\\",\\\"21\\\",\\\"22\\\",\\\"23\\\",\\\"24\\\",\\\"25\\\",\\\"26\\\",\\\"27\\\",\\\"28\\\",\\\"29\\\",\\\"30\\\"],\\\"axisLine\\\":{\\\"lineStyle\\\":{\\\"color\\\":\\\"#EEEEEE\\\"}},\\\"show\\\":true,\\\"splitLine\\\":{\\\"lineStyle\\\":{\\\"color\\\":\\\"red\\\",\\\"width\\\":1,\\\"type\\\":\\\"solid\\\"},\\\"show\\\":false},\\\"axisPointer\\\":{\\\"type\\\":\\\"shadow\\\"},\\\"type\\\":\\\"category\\\"},\\\"legend\\\":{\\\"padding\\\":[25,20,25,10],\\\"data\\\":[\\\"计划生产\\\",\\\"实际完成量\\\"],\\\"top\\\":\\\"top\\\",\\\"orient\\\":\\\"horizontal\\\",\\\"left\\\":\\\"right\\\",\\\"show\\\":true,\\\"textStyle\\\":{\\\"color\\\":\\\"#FFFFFF\\\",\\\"fontSize\\\":\\\"10\\\"}},\\\"grid\\\":{\\\"top\\\":56,\\\"left\\\":34,\\\"bottom\\\":37,\\\"right\\\":53},\\\"series\\\":[{\\\"barWidth\\\":8,\\\"itemStyle\\\":{\\\"color\\\":\\\"#70BDD1\\\"},\\\"barMinHeight\\\":2,\\\"label\\\":{\\\"show\\\":false,\\\"position\\\":\\\"top\\\",\\\"textStyle\\\":{\\\"color\\\":\\\"black\\\",\\\"fontSize\\\":16,\\\"fontWeight\\\":\\\"bolder\\\"},\\\"labelPositionArray\\\":[{\\\"value\\\":\\\"top\\\",\\\"text\\\":\\\"上方\\\",\\\"type\\\":\\\"bar\\\"},{\\\"value\\\":\\\"left\\\",\\\"text\\\":\\\"左边\\\",\\\"type\\\":\\\"bar\\\"},{\\\"value\\\":\\\"right\\\",\\\"text\\\":\\\"右边\\\",\\\"type\\\":\\\"bar\\\"},{\\\"value\\\":\\\"bottom\\\",\\\"text\\\":\\\"下方\\\",\\\"type\\\":\\\"bar\\\"},{\\\"value\\\":\\\"inside\\\",\\\"text\\\":\\\"内部\\\",\\\"type\\\":\\\"bar\\\"}]},\\\"type\\\":\\\"bar\\\",\\\"name\\\":\\\"计划生产\\\",\\\"data\\\":[100,130,1400,108,200,130,160,180,200,300,110,120,130,140,150,100,100,100,100,100,200,300,110,120,130,140,105,120,150,100],\\\"typeData\\\":[{\\\"name\\\":\\\"实际完成量\\\",\\\"type\\\":\\\"line\\\"}]},{\\\"itemStyle\\\":{\\\"color\\\":\\\"#D69071\\\"},\\\"symbolSize\\\":8,\\\"label\\\":{\\\"show\\\":false,\\\"position\\\":\\\"top\\\",\\\"textStyle\\\":{\\\"color\\\":\\\"black\\\",\\\"fontSize\\\":16,\\\"fontWeight\\\":\\\"bolder\\\"},\\\"labelPositionArray\\\":[{\\\"value\\\":\\\"top\\\",\\\"text\\\":\\\"上方\\\",\\\"type\\\":\\\"bar\\\"},{\\\"value\\\":\\\"left\\\",\\\"text\\\":\\\"左边\\\",\\\"type\\\":\\\"bar\\\"},{\\\"value\\\":\\\"right\\\",\\\"text\\\":\\\"右边\\\",\\\"type\\\":\\\"bar\\\"},{\\\"value\\\":\\\"bottom\\\",\\\"text\\\":\\\"下方\\\",\\\"type\\\":\\\"bar\\\"},{\\\"value\\\":\\\"inside\\\",\\\"text\\\":\\\"内部\\\",\\\"type\\\":\\\"bar\\\"}]},\\\"type\\\":\\\"line\\\",\\\"yAxisIndex\\\":1,\\\"name\\\":\\\"实际完成量\\\",\\\"data\\\":[100,130,140,108,200,130,160,180,200,300,110,120,130,140,150,100,100,100,100,100,200,300,110,120,130,140,105,120,150,100],\\\"typeData\\\":[{\\\"name\\\":\\\"实际
|
|
|
|
|
INSERT INTO `jimu_report` VALUES ('1331503965770223616', '20201125155042', '房屋销售综合展示大屏', NULL, NULL, 'chartinfo', '{\"loopBlockList\":[],\"chartList\":[{\"row\":1,\"col\":13,\"colspan\":4,\"rowspan\":6,\"width\":\"323\",\"height\":\"148\",\"config\":\"{\\\"yAxis\\\":{\\\"axisLabel\\\":{\\\"textStyle\\\":{\\\"color\\\":\\\"#FFFFFF\\\",\\\"fontSize\\\":12}},\\\"axisLine\\\":{\\\"lineStyle\\\":{\\\"color\\\":\\\"#FFFFFF\\\"}},\\\"show\\\":true,\\\"name\\\":\\\"\\\",\\\"splitLine\\\":{\\\"lineStyle\\\":{\\\"color\\\":\\\"red\\\",\\\"width\\\":1,\\\"type\\\":\\\"solid\\\"},\\\"show\\\":false}},\\\"xAxis\\\":{\\\"axisLabel\\\":{\\\"rotate\\\":34,\\\"interval\\\":0,\\\"textStyle\\\":{\\\"color\\\":\\\"#FFFFFF\\\",\\\"fontSize\\\":\\\"10\\\"}},\\\"data\\\":[\\\"高层\\\",\\\"小高层\\\",\\\"写字楼\\\",\\\"厂房\\\",\\\"公寓\\\",\\\"别墅\\\",\\\"厂房\\\",\\\"四合院\\\",\\\"loft\\\"],\\\"axisLine\\\":{\\\"lineStyle\\\":{\\\"color\\\":\\\"#FFFFFF\\\"}},\\\"show\\\":true,\\\"name\\\":\\\"\\\",\\\"splitLine\\\":{\\\"lineStyle\\\":{\\\"color\\\":\\\"red\\\",\\\"width\\\":1,\\\"type\\\":\\\"solid\\\"},\\\"show\\\":false}},\\\"grid\\\":{\\\"top\\\":50,\\\"left\\\":30,\\\"bottom\\\":44,\\\"right\\\":24},\\\"series\\\":[{\\\"areaStyle\\\":null,\\\"data\\\":[20,25,10,5,9,1,5,1,20],\\\"showSymbol\\\":true,\\\"lineStyle\\\":{\\\"width\\\":2},\\\"symbolSize\\\":5,\\\"isArea\\\":false,\\\"name\\\":\\\"\\\",\\\"itemStyle\\\":{\\\"color\\\":\\\"#D04672\\\"},\\\"step\\\":false,\\\"label\\\":{\\\"show\\\":false,\\\"position\\\":\\\"top\\\",\\\"textStyle\\\":{\\\"color\\\":\\\"black\\\",\\\"fontSize\\\":16,\\\"fontWeight\\\":\\\"bolder\\\"}},\\\"type\\\":\\\"line\\\",\\\"smooth\\\":true}],\\\"tooltip\\\":{\\\"formatter\\\":\\\"{b} : {c}\\\",\\\"show\\\":true,\\\"textStyle\\\":{\\\"color\\\":\\\"#fff\\\",\\\"fontSize\\\":\\\"10\\\"}},\\\"title\\\":{\\\"show\\\":true,\\\"top\\\":10,\\\"text\\\":\\\"房形分析\\\",\\\"textStyle\\\":{\\\"color\\\":\\\"#FFFFFF\\\",\\\"fontWeight\\\":\\\"normal\\\",\\\"fontSize\\\":\\\"14\\\"},\\\"left\\\":\\\"left\\\",\\\"padding\\\":[5,20,5,10]}}\",\"url\":\"\",\"extData\":{\"dataType\":\"api\",\"apiStatus\":\"1\",\"dataId\":\"1331922734933987329\",\"axisX\":\"name\",\"axisY\":\"value\",\"series\":\"type\",\"yText\":\"\",\"xText\":\"\",\"dbCode\":\"fangyuan\",\"chartType\":\"line.smooth\",\"isTiming\":true,\"intervalTime\":\"5\"},\"layer_id\":\"nk6I2RCefm9scS1k\",\"offsetX\":0,\"offsetY\":0,\"backgroud\":{\"enabled\":false,\"color\":\"#fff\",\"image\":\"\"},\"virtualCellRange\":[[1,13],[1,14],[1,15]]},{\"row\":2,\"col\":1,\"colspan\":3,\"rowspan\":14,\"width\":\"337\",\"height\":\"342\",\"config\":\"{\\\"yAxis\\\":{\\\"axisLabel\\\":{\\\"rotate\\\":0,\\\"interval\\\":0,\\\"textStyle\\\":{\\\"color\\\":\\\"#FFFFFF\\\",\\\"fontSize\\\":\\\"10\\\"}},\\\"data\\\":[\\\"缤纷南郡\\\",\\\"中航华府\\\",\\\"3中家属楼\\\",\\\"幸福家园\\\",\\\"水晶国际\\\",\\\"绿城小区\\\",\\\"缤纷南郡二期\\\",\\\"国奥家园\\\",\\\"西西胡同\\\",\\\"融创学府\\\",\\\"蓝湾国际\\\",\\\"广发小区\\\"],\\\"axisLine\\\":{\\\"lineStyle\\\":{\\\"color\\\":\\\"#FFFFFF\\\"}},\\\"show\\\":true,\\\"splitLine\\\":{\\\"lineStyle\\\":{\\\"color\\\":\\\"red\\\",\\\"width\\\":1,\\\"type\\\":\\\"solid\\\"},\\\"show\\\":false},\\\"type\\\":\\\"category\\\"},\\\"xAxis\\\":{\\\"axisLabel\\\":{\\\"textStyle\\\":{\\\"color\\\":\\\"#FFFFFF\\\",\\\"fontSize\\\":\\\"10\\\"}},\\\"axisLine\\\":{\\\"lineStyle\\\":{\\\"color\\\":\\\"#FFFFFF\\\"}},\\\"show\\\":true,\\\"splitLine\\\":{\\\"lineStyle\\\":{\\\"color\\\":\\\"red\\\",\\\"width\\\":1,\\\"type\\\":\\\"solid\\\"},\\\"show\\\":false},\\\"type \\\":\\\"value\\\"},\\\"legend\\\":{\\\"padding\\\":[25,20,25,10],\\\"data\\\":[\\\"房子\\\"],\\\"top\\\":\\\"top\\\",\\\"orient\\\":\\\"horizontal\\\",\\\"left\\\":\\\"center\\\",\\\"show\\\":false,\\\"textStyle\\\":{\\\"color\\\":\\\"#333\\\",\\\"fontSize\\\":12}},\\\"grid\\\":{\\\"top\\\":60,\\\"left\\\":71,\\\"bottom\\\":39,\\\"right\\\":29},\\\"series\\\":[{\\\"barWidth\\\":13,\\\"data\\\":[
|
|
|
|
|
INSERT INTO `jimu_report` VALUES ('1333962561053396992', '20201202103422', '房地产大屏', NULL, NULL, 'chartinfo', '{\"loopBlockList\":[],\"chartList\":[{\"row\":1,\"col\":1,\"colspan\":4,\"rowspan\":9,\"width\":\"359\",\"height\":\"223\",\"config\":\"{\\\"yAxis\\\":[{\\\"axisLabel\\\":{\\\"textStyle\\\":{\\\"color\\\":\\\"#FFFFFF\\\",\\\"fontSize\\\":\\\"10\\\"}},\\\"axisLine\\\":{\\\"lineStyle\\\":{\\\"color\\\":\\\"#1E90FF\\\"}},\\\"show\\\":true,\\\"name\\\":\\\"\\\",\\\"splitLine\\\":{\\\"lineStyle\\\":{\\\"color\\\":\\\"red\\\",\\\"width\\\":1,\\\"type\\\":\\\"solid\\\"},\\\"show\\\":false},\\\"type\\\":\\\"value\\\"},{\\\"axisLabel\\\":{\\\"textStyle\\\":{\\\"color\\\":\\\"#FFFFFF\\\",\\\"fontSize\\\":\\\"10\\\"}},\\\"axisLine\\\":{\\\"lineStyle\\\":{\\\"color\\\":\\\"#1E90FF\\\"}},\\\"show\\\":true,\\\"name\\\":\\\"\\\",\\\"splitLine\\\":{\\\"lineStyle\\\":{\\\"color\\\":\\\"red\\\",\\\"width\\\":1,\\\"type\\\":\\\"solid\\\"},\\\"show\\\":false},\\\"type\\\":\\\"value\\\"}],\\\"xAxis\\\":{\\\"axisLabel\\\":{\\\"rotate\\\":0,\\\"interval\\\":0,\\\"textStyle\\\":{\\\"color\\\":\\\"#FFFFFF\\\",\\\"fontSize\\\":\\\"10\\\"}},\\\"data\\\":[\\\"萧山\\\",\\\"主城\\\",\\\"余杭\\\",\\\"江东\\\",\\\"阜阳\\\"],\\\"axisLine\\\":{\\\"lineStyle\\\":{\\\"color\\\":\\\"#1E90FF\\\"}},\\\"show\\\":true,\\\"splitLine\\\":{\\\"lineStyle\\\":{\\\"color\\\":\\\"red\\\",\\\"width\\\":1,\\\"type\\\":\\\"solid\\\"},\\\"show\\\":false},\\\"axisPointer\\\":{\\\"type\\\":\\\"shadow\\\"},\\\"type\\\":\\\"category\\\"},\\\"legend\\\":{\\\"padding\\\":[25,20,25,10],\\\"data\\\":[\\\"出让资金(亿元)\\\",\\\"出让面积(万平方米)\\\"],\\\"top\\\":\\\"bottom\\\",\\\"orient\\\":\\\"horizontal\\\",\\\"left\\\":\\\"center\\\",\\\"show\\\":true,\\\"textStyle\\\":{\\\"color\\\":\\\"#FFD700\\\",\\\"fontSize\\\":\\\"8\\\"}},\\\"grid\\\":{\\\"top\\\":55,\\\"left\\\":36,\\\"bottom\\\":65,\\\"right\\\":50},\\\"series\\\":[{\\\"barWidth\\\":15,\\\"itemStyle\\\":{\\\"color\\\":\\\"#2249B1\\\",\\\"barBorderRadius\\\":0},\\\"barMinHeight\\\":2,\\\"label\\\":{\\\"show\\\":false,\\\"position\\\":\\\"top\\\",\\\"textStyle\\\":{\\\"color\\\":\\\"black\\\",\\\"fontSize\\\":16,\\\"fontWeight\\\":\\\"bolder\\\"},\\\"labelPositionArray\\\":[{\\\"value\\\":\\\"top\\\",\\\"text\\\":\\\"上方\\\",\\\"type\\\":\\\"bar\\\"},{\\\"value\\\":\\\"left\\\",\\\"text\\\":\\\"左边\\\",\\\"type\\\":\\\"bar\\\"},{\\\"value\\\":\\\"right\\\",\\\"text\\\":\\\"右边\\\",\\\"type\\\":\\\"bar\\\"},{\\\"value\\\":\\\"bottom\\\",\\\"text\\\":\\\"下方\\\",\\\"type\\\":\\\"bar\\\"},{\\\"value\\\":\\\"inside\\\",\\\"text\\\":\\\"内部\\\",\\\"type\\\":\\\"bar\\\"}]},\\\"type\\\":\\\"bar\\\",\\\"name\\\":\\\"出让资金(亿元)\\\",\\\"data\\\":[90,100,80,20,30],\\\"typeData\\\":[{\\\"name\\\":\\\"出让资金(亿元)\\\",\\\"type\\\":\\\"bar\\\"},{\\\"name\\\":\\\"出让面积(万平方米)\\\",\\\"type\\\":\\\"line\\\"}]},{\\\"showSymbol\\\":true,\\\"lineStyle\\\":{\\\"width\\\":2},\\\"symbolSize\\\":5,\\\"itemStyle\\\":{\\\"color\\\":\\\"#D8807E\\\"},\\\"step\\\":false,\\\"smooth\\\":false,\\\"label\\\":{\\\"show\\\":false,\\\"position\\\":\\\"top\\\",\\\"textStyle\\\":{\\\"color\\\":\\\"black\\\",\\\"fontSize\\\":16,\\\"fontWeight\\\":\\\"bolder\\\"},\\\"labelPositionArray\\\":[{\\\"value\\\":\\\"top\\\",\\\"text\\\":\\\"上方\\\",\\\"type\\\":\\\"bar\\\"},{\\\"value\\\":\\\"left\\\",\\\"text\\\":\\\"左边\\\",\\\"type\\\":\\\"bar\\\"},{\\\"value\\\":\\\"right\\\",\\\"text\\\":\\\"右边\\\",\\\"type\\\":\\\"bar\\\"},{\\\"value\\\":\\\"bottom\\\",\\\"text\\\":\\\"下方\\\",\\\"type\\\":\\\"bar\\\"},{\\\"value\\\":\\\"inside\\\",\\\"text\\\":\\\"内部\\\",\\\"type\\\":\\\"bar\\\"}]},\\\"type\\\":\\\"line\\\",\\\"yAxisIndex\\\":1,\\\"name\\\":\\\"出让面积(万平方米)\\\",\\\"data\\\":[70,90,40,10,20],\\\"typeData\\\":[{\\\"name\\\":\\\"出让资金(亿元)\\\",\\\"type\\\":\\\"bar\\\"},{\\\"name\\\":\\\"出让面积(万平方米)\\\",\\\"type\\\":\\\"line\\\"}]}],\\\"chartType\\\":\\\"linebar\\\",\\\"tooltip\\\":{\\\"s
|
|
|
|
|
INSERT INTO `jimu_report` VALUES ('1334028738995818496', '20201202145702', '大数据可视化展示平台', NULL, NULL, 'chartinfo', '{\"loopBlockList\":[],\"chartList\":[{\"row\":1,\"col\":6,\"colspan\":5,\"rowspan\":14,\"width\":\"499\",\"height\":\"348\",\"config\":\"{\\\"yAxis\\\":{\\\"axisLabel\\\":{\\\"textStyle\\\":{\\\"color\\\":\\\"#EEEEEE\\\",\\\"fontSize\\\":\\\"10\\\"}},\\\"axisLine\\\":{\\\"lineStyle\\\":{\\\"color\\\":\\\"#EEEEEE\\\"}},\\\"show\\\":true,\\\"splitLine\\\":{\\\"lineStyle\\\":{\\\"color\\\":\\\"red\\\",\\\"width\\\":1,\\\"type\\\":\\\"solid\\\"},\\\"show\\\":false},\\\"type \\\":\\\"value\\\"},\\\"xAxis\\\":{\\\"axisLabel\\\":{\\\"rotate\\\":0,\\\"interval\\\":0,\\\"textStyle\\\":{\\\"color\\\":\\\"#EEEEEE\\\",\\\"fontSize\\\":\\\"10\\\"}},\\\"data\\\":[\\\"1月\\\",\\\"2月\\\",\\\"3月\\\",\\\"4月\\\",\\\"5月\\\",\\\"6月\\\",\\\"7月\\\",\\\"8月\\\",\\\"9月\\\",\\\"10月\\\",\\\"11月\\\",\\\"12月\\\"],\\\"axisLine\\\":{\\\"lineStyle\\\":{\\\"color\\\":\\\"#EEEEEE\\\"}},\\\"show\\\":true,\\\"splitLine\\\":{\\\"lineStyle\\\":{\\\"color\\\":\\\"red\\\",\\\"width\\\":1,\\\"type\\\":\\\"solid\\\"},\\\"show\\\":false},\\\"type\\\":\\\"category\\\"},\\\"legend\\\":{\\\"padding\\\":[25,20,25,10],\\\"data\\\":[\\\"2017\\\",\\\"2018\\\"],\\\"top\\\":\\\"top\\\",\\\"orient\\\":\\\"vertical\\\",\\\"left\\\":\\\"center\\\",\\\"show\\\":true,\\\"textStyle\\\":{\\\"color\\\":\\\"#FFFFFF\\\",\\\"fontSize\\\":\\\"10\\\"}},\\\"grid\\\":{\\\"top\\\":68,\\\"left\\\":35,\\\"bottom\\\":45,\\\"right\\\":31},\\\"series\\\":[{\\\"barWidth\\\":9,\\\"data\\\":[2,3,3,9,15,12,6,4,6,7,4,10],\\\"name\\\":\\\"2017\\\",\\\"itemStyle\\\":{\\\"color\\\":\\\"#49BCF7\\\",\\\"barBorderRadius\\\":8},\\\"label\\\":{\\\"show\\\":false,\\\"position\\\":\\\"top\\\",\\\"textStyle\\\":{\\\"color\\\":\\\"black\\\",\\\"fontSize\\\":16,\\\"fontWeight\\\":\\\"bolder\\\"}},\\\"type\\\":\\\"bar\\\",\\\"barMinHeight\\\":2,\\\"typeData\\\":[]},{\\\"barWidth\\\":9,\\\"data\\\":[1,4,5,11,12,9,5,6,6,3,3,9],\\\"name\\\":\\\"2018\\\",\\\"itemStyle\\\":{\\\"color\\\":\\\"#62C98D\\\",\\\"barBorderRadius\\\":8},\\\"label\\\":{\\\"show\\\":false,\\\"position\\\":\\\"top\\\",\\\"textStyle\\\":{\\\"color\\\":\\\"black\\\",\\\"fontSize\\\":16,\\\"fontWeight\\\":\\\"bolder\\\"}},\\\"type\\\":\\\"bar\\\",\\\"barMinHeight\\\":2,\\\"typeData\\\":[]}],\\\"tooltip\\\":{\\\"show\\\":true,\\\"axisPointer\\\":{\\\"type\\\":\\\"shadow\\\"},\\\"trigger\\\":\\\"axis\\\",\\\"textStyle\\\":{\\\"color\\\":\\\"#fff\\\",\\\"fontSize\\\":\\\"10\\\"}},\\\"title\\\":{\\\"padding\\\":[5,20,5,20],\\\"left\\\":\\\"left\\\",\\\"show\\\":true,\\\"text\\\":\\\"柱形图标题\\\",\\\"textStyle\\\":{\\\"color\\\":\\\"#FFFFFF\\\",\\\"fontSize\\\":\\\"14\\\",\\\"fontWeight\\\":\\\"normal\\\"},\\\"top\\\":10}}\",\"url\":\"\",\"extData\":{\"dataType\":\"api\",\"apiStatus\":\"1\",\"dataId\":\"1334052375119273986\",\"axisX\":\"name\",\"axisY\":\"value\",\"series\":\"type\",\"yText\":\"\",\"xText\":\"\",\"dbCode\":\"zhuxingtu1\",\"chartType\":\"bar.multi\",\"isTiming\":true,\"intervalTime\":\"5\",\"chartId\":\"\"},\"layer_id\":\"aELaGxHbJDssfJ1j\",\"offsetX\":0,\"offsetY\":0,\"backgroud\":{\"enabled\":false,\"color\":\"#fff\",\"image\":\"\"},\"virtualCellRange\":[[1,6],[1,7],[1,8],[1,9],[1,10]]},{\"row\":1,\"col\":11,\"colspan\":4,\"rowspan\":7,\"width\":\"402\",\"height\":\"171\",\"config\":\"{\\\"legend\\\":{\\\"padding\\\":[25,20,25,10],\\\"data\\\":[\\\"图例1\\\",\\\"图例2\\\",\\\"图例3\\\",\\\"图例4\\\"],\\\"top\\\":\\\"top\\\",\\\"orient\\\":\\\"horizontal\\\",\\\"left\\\":\\\"center\\\",\\\"show\\\":false,\\\"textStyle\\\":{\\\"color\\\":\\\"#333\\\",\\\"fontSize\\\":12}},\\\"series\\\":[{\\\"isRose\\\":true,\\\"data\\\":[{\\\"name\\\":\\\"图例1\\\",\\\"value\\\":10,\\\"itemStyle\\\":{\\\"color\\\":\\\"rgba(98,201,141,1)\\\"}},{\\\"name\\\":\\\"图例2\\\",\\\"value\\\":15,\\\"itemStyle\\\":{\\\"color\\\":\\\"rgba(45,140,240,1)\\\"}},{\\\"name\\\":\\\"图例3\\\",\\\"value\\\":25,\\\"itemStyle\\\":{\\\"color\\\":\\\"rgba(76,185,207,1)\\\"}},{\\\"name\\\":\\\"图<EFBFBD>
|
|
|
|
|
INSERT INTO `jimu_report` VALUES ('1334074491629867008', '20201202175858', '乡村振兴普惠金融服务平台', NULL, NULL, 'chartinfo', '{\"loopBlockList\":[],\"chartList\":[{\"row\":1,\"col\":5,\"colspan\":6,\"rowspan\":12,\"width\":\"568\",\"height\":\"435\",\"config\":\"{\\\"geo\\\":{\\\"map\\\":\\\"shandong\\\",\\\"zoom\\\":0.8,\\\"label\\\":{\\\"color\\\":\\\"#19DEF4\\\",\\\"fontSize\\\":12,\\\"show\\\":true},\\\"itemStyle\\\":{\\\"borderWidth\\\":0.5,\\\"areaColor\\\":\\\"#0C514B\\\",\\\"borderColor\\\":\\\"#000\\\"},\\\"emphasis\\\":{\\\"label\\\":{\\\"color\\\":\\\"#19DEF4\\\"},\\\"itemStyle\\\":{\\\"areaColor\\\":\\\"#0A2B34\\\"}},\\\"regions\\\":[],\\\"layoutSize\\\":600,\\\"roam\\\":true,\\\"layoutCenter\\\":[\\\"50%\\\",\\\"50%\\\"]},\\\"series\\\":[{\\\"encode\\\":{\\\"value\\\":[2]},\\\"data\\\":[{\\\"name\\\":\\\"济南市\\\",\\\"value\\\":[117.000923,36.675807,255]},{\\\"name\\\":\\\"青岛市\\\",\\\"value\\\":[120.355173,36.082982,300]},{\\\"name\\\":\\\"淄博市\\\",\\\"value\\\":[118.047648,36.814939,130]},{\\\"name\\\":\\\"枣庄市\\\",\\\"value\\\":[117.557964,34.856424,150]}],\\\"name\\\":\\\"\\\",\\\"emphasis\\\":{\\\"label\\\":{\\\"show\\\":true}},\\\"itemStyle\\\":{\\\"color\\\":\\\"#FFFF01\\\"},\\\"coordinateSystem\\\":\\\"geo\\\",\\\"label\\\":{\\\"formatter\\\":\\\"{b}\\\",\\\"show\\\":false,\\\"position\\\":\\\"right\\\"},\\\"type\\\":\\\"scatter\\\"}],\\\"chartType\\\":\\\"map\\\",\\\"tooltip\\\":{\\\"show\\\":true,\\\"textStyle\\\":{\\\"color\\\":\\\"#fff\\\",\\\"fontSize\\\":18}},\\\"title\\\":{\\\"show\\\":false,\\\"top\\\":5,\\\"text\\\":\\\"主要城市空气质量\\\",\\\"textStyle\\\":{\\\"color\\\":\\\"#c23531\\\",\\\"fontWeight\\\":\\\"bolder\\\",\\\"fontSize\\\":18},\\\"left\\\":\\\"left\\\",\\\"padding\\\":[5,20,5,10]}}\",\"url\":\"\",\"extData\":{\"dataType\":\"api\",\"apiStatus\":\"1\",\"dataId\":\"1335909918854725633\",\"axisX\":\"name\",\"axisY\":\"value\",\"series\":\"type\",\"yText\":\"\",\"xText\":\"\",\"dbCode\":\"ditu1\",\"dataId1\":\"\",\"source\":\"\",\"target\":\"\",\"chartType\":\"map.scatter\",\"isTiming\":true,\"intervalTime\":\"5\",\"id\":\"reOVgCVG6ZPWh5c1\"},\"layer_id\":\"reOVgCVG6ZPWh5c1\",\"offsetX\":0,\"offsetY\":0,\"backgroud\":{\"enabled\":false,\"color\":\"#fff\",\"image\":\"\"},\"virtualCellRange\":[[1,5],[1,6],[1,7],[1,8],[1,9],[1,10]]},{\"row\":3,\"col\":11,\"colspan\":3,\"rowspan\":4,\"width\":\"357\",\"height\":\"147\",\"config\":\"{\\\"yAxis\\\":{\\\"axisLabel\\\":{\\\"textStyle\\\":{\\\"color\\\":\\\"#FFFFFF\\\",\\\"fontSize\\\":\\\"10\\\"}},\\\"axisLine\\\":{\\\"lineStyle\\\":{\\\"color\\\":\\\"#FFFFFF\\\"}},\\\"show\\\":true,\\\"name\\\":\\\"\\\",\\\"splitLine\\\":{\\\"lineStyle\\\":{\\\"color\\\":\\\"red\\\",\\\"width\\\":1,\\\"type\\\":\\\"solid\\\"},\\\"show\\\":false}},\\\"xAxis\\\":{\\\"axisLabel\\\":{\\\"rotate\\\":0,\\\"interval\\\":0,\\\"textStyle\\\":{\\\"color\\\":\\\"#FFFFFF\\\",\\\"fontSize\\\":\\\"10\\\"}},\\\"data\\\":[\\\"玉米\\\",\\\"大豆\\\",\\\"花生\\\",\\\"高粱\\\",\\\"小麦\\\"],\\\"axisLine\\\":{\\\"lineStyle\\\":{\\\"color\\\":\\\"#FFFFFF\\\"}},\\\"show\\\":true,\\\"name\\\":\\\"\\\",\\\"splitLine\\\":{\\\"lineStyle\\\":{\\\"color\\\":\\\"red\\\",\\\"width\\\":1,\\\"type\\\":\\\"solid\\\"},\\\"show\\\":false}},\\\"grid\\\":{\\\"top\\\":55,\\\"left\\\":60,\\\"bottom\\\":40,\\\"right\\\":24},\\\"series\\\":[{\\\"areaStyle\\\":{\\\"color\\\":\\\"#6CE6BC\\\",\\\"opacity\\\":0.4},\\\"data\\\":[1000879,3400879,2300879,2400879,3000],\\\"showSymbol\\\":true,\\\"lineStyle\\\":{\\\"width\\\":2},\\\"symbolSize\\\":5,\\\"isArea\\\":true,\\\"name\\\":\\\"\\\",\\\"itemStyle\\\":{\\\"color\\\":\\\"#9DE4D1\\\"},\\\"step\\\":false,\\\"label\\\":{\\\"show\\\":false,\\\"position\\\":\\\"top\\\",\\\"textStyle\\\":{\\\"color\\\":\\\"black\\\",\\\"fontSize\\\":16,\\\"fontWeight\\\":\\\"bolder\\\"}},\\\"type\\\":\\\"line\\\",\\\"smooth\\\":false}],\\\"tooltip\\\":{\\\"formatter\\\":\\\"{b} : {c}\\\",\\\"show\\\":true,\\\"textStyle\\\":{\\\"color\\\":\\\"#fff\\\",\\\"fontSize\\\":\\\"10\\\"}},\\\"title\\\":{\\\"show\\\":true,\\\"to
|
|
|
|
|
INSERT INTO `jimu_report` VALUES ('1334420681185566722', '202012031408346166', '学校经费一览表', NULL, NULL, 'datainfo', '{\"loopBlockList\":[],\"area\":{\"sri\":6,\"sci\":20,\"eri\":6,\"eci\":20,\"width\":59,\"height\":25},\"excel_config_id\":\"1334420681185566722\",\"printConfig\":{\"paper\":\"A4\",\"width\":210,\"height\":297,\"definition\":1,\"isBackend\":false,\"marginX\":10,\"marginY\":10},\"rows\":{\"0\":{\"cells\":{\"1\":{\"text\":\"学校经费一览表\",\"merge\":[0,22],\"style\":10}},\"height\":72},\"1\":{\"cells\":{\"1\":{\"text\":\"学校类别\",\"style\":221,\"merge\":[4,0]},\"2\":{\"merge\":[4,0],\"style\":222,\"text\":\"学校名称\"},\"3\":{\"text\":\"财政教育经费投入(万元)\",\"merge\":[0,8],\"style\":84},\"12\":{\"text\":\"其他投入\",\"merge\":[0,7],\"style\":84},\"20\":{\"style\":84,\"text\":\"补充资料\",\"merge\":[0,4]}},\"height\":28},\"2\":{\"cells\":{\"3\":{\"text\":\"总计\",\"style\":117,\"merge\":[3,0]},\"4\":{\"text\":\"教育事业费\",\"style\":117,\"merge\":[0,6]},\"11\":{\"text\":\"基础拨款\",\"style\":117,\"merge\":[3,0]},\"12\":{\"text\":\"村投入\",\"style\":117,\"merge\":[0,4]},\"17\":{\"text\":\"社会捐款\",\"style\":117,\"merge\":[0,2]},\"20\":{\"style\":126,\"merge\":[0,4],\"text\":\"信息化建设\"}},\"height\":24},\"3\":{\"cells\":{\"4\":{\"merge\":[0,1],\"text\":\"合计\",\"style\":121},\"6\":{\"merge\":[2,0],\"text\":\"人员经费\",\"style\":121},\"7\":{\"merge\":[2,0],\"text\":\"日常公用费用\",\"style\":123},\"8\":{\"merge\":[0,2],\"text\":\"项目经费\",\"style\":121},\"12\":{\"merge\":[2,0],\"text\":\"合计\",\"style\":121},\"13\":{\"merge\":[0,3],\"text\":\"其中\",\"style\":121},\"17\":{\"merge\":[2,0],\"text\":\"合计\",\"style\":121},\"18\":{\"merge\":[0,1],\"text\":\"其中\",\"style\":121},\"20\":{\"merge\":[2,0],\"text\":\"本年投入金额(万元)\",\"style\":230},\"21\":{\"merge\":[0,1],\"text\":\"电脑数(台数)\",\"style\":121},\"23\":{\"merge\":[0,1],\"text\":\"校园网数(个)\",\"style\":121}}},\"4\":{\"cells\":{\"4\":{\"merge\":[1,0],\"text\":\"金额\",\"style\":126},\"5\":{\"merge\":[1,0],\"text\":\"比上年增长(%)\",\"style\":127},\"8\":{\"merge\":[1,0],\"text\":\"合计\",\"style\":121},\"9\":{\"merge\":[0,1],\"text\":\"其中\",\"style\":121},\"13\":{\"merge\":[1,0],\"text\":\"人员经费\",\"style\":131},\"14\":{\"merge\":[1,0],\"text\":\"日常公用费用\",\"style\":131},\"15\":{\"merge\":[1,0],\"text\":\"项目经费\",\"style\":131},\"16\":{\"merge\":[1,0],\"text\":\"基建投入\",\"style\":131},\"18\":{\"merge\":[1,0],\"text\":\"项目经费\",\"style\":131},\"19\":{\"merge\":[1,0],\"text\":\"基础投入\",\"style\":131},\"21\":{\"merge\":[1,0],\"text\":\"合计\",\"style\":121},\"22\":{\"merge\":[1,0],\"text\":\"本年购置数\",\"style\":121},\"23\":{\"style\":121,\"merge\":[1,0],\"text\":\"合计\"},\"24\":{\"merge\":[1,0],\"text\":\"本年建成数\",\"style\":121}}},\"5\":{\"cells\":{\"9\":{\"text\":\"标准化建设\",\"style\":131},\"10\":{\"text\":\"信息化建设\",\"style\":121}}},\"6\":{\"cells\":{\"1\":{\"text\":\"#{laiyuan.group(class)}\",\"style\":233,\"aggregate\":\"group\"},\"2\":{\"text\":\"#{laiyuan.school}\",\"style\":234},\"3\":{\"style\":240,\"text\":\"=SUM(E7,I7)\",\"decimalPlaces\":\"0\"},\"4\":{\"style\":240,\"text\":\"=SUM(G7,H7)\",\"decimalPlaces\":\"0\"},\"5\":{\"text\":\"#{laiyuan.lv}\",\"style\":12},\"6\":{\"text\":\"#{laiyuan.renyuan_jy}\",\"style\":239,\"decimalPlaces\":\"0\"},\"7\":{\"text\":\"#{laiyuan.richang_jy}\",\"style\":239,\"decimalPlaces\":\"0\"},\"8\":{\"style\":239,\"text\":\"=SUM(J7,K7)\",\"decimalPlaces\":\"0\"},\"9\":{\"text\":\"#{laiyuan.biaozhun_jy}\",\"style\":239,\"decimalPlaces\":\"0\"},\"10\":{\"text\":\"#{laiyuan.xinxi_jy}\",\"style\":239,\"decimalPlaces\":\"0\"},\"11\":{\"text\":\"#{laiyuan.jichubokuan_jy}\",\"style\":239,\"decimalPlaces\":\"0\"},\"12\":{\"text\":\"=SUM(N7,O7)\",\"style\":239,\"decimalPlaces\":\"0\"},\"13\":{\"text\":\"#{laiyuan.renyuan_ct}\",\"style\":239,\"decimalPlaces\":\"0\"},\"14\":{\"tex
|
|
|
|
|
INSERT INTO `jimu_report` VALUES ('1334457419857793024', '20201203192154', '超市各地区销售额', NULL, NULL, 'datainfo', '{\"loopBlockList\":[],\"area\":{\"sri\":7,\"sci\":2,\"eri\":7,\"eci\":2,\"width\":85,\"height\":25},\"excel_config_id\":\"1334457419857793024\",\"printConfig\":{\"paper\":\"A4\",\"width\":210,\"height\":297,\"definition\":1,\"isBackend\":false,\"marginX\":10,\"marginY\":10,\"layout\":\"portrait\"},\"zonedEditionList\":[],\"rows\":{\"0\":{\"cells\":{\"1\":{\"text\":\"各地区商品销售额一栏表\",\"merge\":[0,18],\"style\":13}},\"height\":82},\"1\":{\"cells\":{\"1\":{\"text\":\"地区|类型|时间\",\"lineStart\":\"lefttop\",\"style\":56,\"merge\":[1,1],\"height\":50},\"3\":{\"text\":\"2020年\",\"style\":46,\"merge\":[0,12]},\"16\":{\"text\":\"2019年\",\"style\":46,\"merge\":[0,9]}}},\"2\":{\"cells\":{\"3\":{\"text\":\"12月\",\"style\":46},\"4\":{\"text\":\"11月\",\"style\":46},\"5\":{\"text\":\"10月\",\"style\":46},\"6\":{\"text\":\"9月\",\"style\":46},\"7\":{\"text\":\"8月\",\"style\":46},\"8\":{\"text\":\"7月\",\"style\":46},\"9\":{\"text\":\"6月\",\"style\":46},\"10\":{\"text\":\"5月\",\"style\":46},\"11\":{\"text\":\"4月\",\"style\":46},\"12\":{\"text\":\"3月\",\"style\":46},\"13\":{\"text\":\"2月\",\"style\":46},\"14\":{\"text\":\"1月\",\"style\":46},\"15\":{\"text\":\"本年小计\",\"style\":46},\"16\":{\"text\":\"12月\",\"style\":46},\"17\":{\"text\":\"11月\",\"style\":46},\"18\":{\"text\":\"10月\",\"style\":46},\"19\":{\"text\":\"9月\",\"style\":46},\"20\":{\"text\":\"8月\",\"style\":46},\"21\":{\"text\":\"7月\",\"style\":46},\"22\":{\"text\":\"6月\",\"style\":46},\"23\":{\"text\":\"5月\",\"style\":46},\"24\":{\"text\":\"4月\",\"style\":46},\"25\":{\"text\":\"本年小计\",\"style\":46}}},\"3\":{\"cells\":{\"1\":{\"text\":\"#{xiaoshou.group(diqu)}\",\"style\":51,\"aggregate\":\"group\"},\"2\":{\"text\":\"#{xiaoshou.class}\",\"style\":51},\"3\":{\"text\":\"#{xiaoshou.sales_11}\",\"style\":21,\"decimalPlaces\":\"0\"},\"4\":{\"text\":\"#{xiaoshou.sales_12}\",\"style\":21,\"decimalPlaces\":\"0\"},\"5\":{\"text\":\"#{xiaoshou.sales_13}\",\"style\":21,\"decimalPlaces\":\"0\"},\"6\":{\"text\":\"#{xiaoshou.sales_14}\",\"style\":21,\"decimalPlaces\":\"0\"},\"7\":{\"text\":\"#{xiaoshou.sales_15}\",\"style\":21,\"decimalPlaces\":\"0\"},\"8\":{\"text\":\"#{xiaoshou.sales_16}\",\"style\":21,\"decimalPlaces\":\"0\"},\"9\":{\"text\":\"#{xiaoshou.sales_17}\",\"style\":21,\"decimalPlaces\":\"0\"},\"10\":{\"text\":\"#{xiaoshou.sales_18}\",\"style\":21,\"decimalPlaces\":\"0\"},\"11\":{\"text\":\"#{xiaoshou.sales_19}\",\"style\":21,\"decimalPlaces\":\"0\"},\"12\":{\"text\":\"#{xiaoshou.sales_20}\",\"style\":21,\"decimalPlaces\":\"0\"},\"13\":{\"text\":\"#{xiaoshou.sales_21}\",\"style\":21,\"decimalPlaces\":\"0\"},\"14\":{\"text\":\"#{xiaoshou.sales_22}\",\"style\":21,\"decimalPlaces\":\"0\"},\"15\":{\"style\":48,\"text\":\"=SUM(D4:O4)\",\"decimalPlaces\":\"0\"},\"16\":{\"text\":\"#{xiaoshou.sales_31}\",\"style\":21,\"decimalPlaces\":\"0\"},\"17\":{\"text\":\"#{xiaoshou.sales_32}\",\"style\":21,\"decimalPlaces\":\"0\"},\"18\":{\"text\":\"#{xiaoshou.sales_33}\",\"style\":21,\"decimalPlaces\":\"0\"},\"19\":{\"text\":\"#{xiaoshou.sales_34}\",\"style\":21,\"decimalPlaces\":\"0\"},\"20\":{\"text\":\"#{xiaoshou.sales_35}\",\"style\":21,\"decimalPlaces\":\"0\"},\"21\":{\"text\":\"#{xiaoshou.sales_36}\",\"style\":21,\"decimalPlaces\":\"0\"},\"22\":{\"text\":\"#{xiaoshou.sales_37}\",\"style\":21,\"decimalPlaces\":\"0\"},\"23\":{\"text\":\"#{xiaoshou.sales_38}\",\"style\":21,\"decimalPlaces\":\"0\"},\"24\":{\"text\":\"#{xiaoshou.sales_39}\",\"style\":21,\"decimalPlaces\":\"0\"},\"25\":{\"style\":48,\"text\":\"=SUM(Q4:Y4)\",\"decimalPlaces\":\"0\"}},\"isDrag\":true},\"4\":{\"cells\":{\"1\":{\"text\":\"合计\",\"style\":52,\"rendered\":\"\",\"merge\":[0,1]},\"3\":{\"text\":\"=SUM(D4)\",\"style\":55},\"4\":{\"text\":\"=SUM(E4)\",\"style\":55},\"5\":{\"text\":\"=SUM(F4)\",\"style\":55},\"6\":{\"text\":\"=SUM(G4)\",\"style\":55},\"7\":{\"text\":\"=SUM(H4)\",\"style\":55},\"8\":{\"text\":\"
|
|
|
|
|
INSERT INTO `jimu_report` VALUES ('1334696790477377536', '20201204111149', '学校收入一览表', NULL, NULL, 'datainfo', '{\"loopBlockList\":[],\"area\":{\"sri\":11,\"sci\":4,\"eri\":11,\"eci\":4,\"width\":92,\"height\":25},\"excel_config_id\":\"1334696790477377536\",\"printConfig\":{\"paper\":\"A4\",\"width\":210,\"height\":297,\"definition\":1,\"isBackend\":false,\"marginX\":10,\"marginY\":10,\"layout\":\"portrait\"},\"zonedEditionList\":[],\"rows\":{\"0\":{\"cells\":{\"1\":{\"text\":\"学校收入一览表\",\"style\":25,\"merge\":[0,13]}},\"height\":71},\"1\":{\"cells\":{\"1\":{\"text\":\"校园信息\",\"merge\":[1,2],\"style\":40},\"4\":{\"text\":\"学生信息\",\"merge\":[1,2],\"style\":40},\"7\":{\"merge\":[1,5],\"style\":42,\"text\":\"收款信息\"},\"13\":{\"merge\":[0,11],\"text\":\"确认收入信息\",\"style\":43}},\"height\":23},\"2\":{\"cells\":{\"13\":{\"merge\":[0,3],\"text\":\"2020.09\",\"style\":46},\"17\":{\"merge\":[0,3],\"text\":\"2020.10\",\"style\":46},\"21\":{\"text\":\"合计\",\"style\":46,\"merge\":[0,3]}},\"height\":40},\"3\":{\"cells\":{\"1\":{\"text\":\"所属城际\",\"style\":50},\"2\":{\"text\":\"所属校园\",\"style\":50},\"3\":{\"text\":\"NC帐套\",\"style\":50},\"4\":{\"text\":\"学号\",\"style\":50},\"5\":{\"text\":\"姓名\",\"style\":50},\"6\":{\"text\":\"性质\",\"style\":50},\"7\":{\"text\":\"缴费金额\",\"style\":50},\"8\":{\"text\":\"缴费时间\",\"style\":50},\"9\":{\"text\":\"缴费性质\",\"style\":50},\"10\":{\"text\":\"缴费所属期间\",\"style\":50},\"11\":{\"text\":\"缴费月份数\",\"style\":50},\"12\":{\"text\":\"缴费方式\",\"style\":50},\"13\":{\"text\":\"全部\",\"style\":50},\"14\":{\"text\":\"学费\",\"style\":50},\"15\":{\"text\":\"餐费\",\"style\":50},\"16\":{\"text\":\"校车费\",\"style\":50},\"17\":{\"text\":\"全部\",\"style\":50},\"18\":{\"text\":\"学费\",\"style\":50},\"19\":{\"text\":\"餐费\",\"style\":50},\"20\":{\"text\":\"校车费\",\"style\":50},\"21\":{\"text\":\"全部\",\"style\":50},\"22\":{\"text\":\"学费\",\"style\":50},\"23\":{\"text\":\"餐费\",\"style\":50},\"24\":{\"text\":\"校车费\",\"style\":50}}},\"4\":{\"cells\":{\"1\":{\"text\":\"#{shouru.group(city)}\",\"style\":45,\"aggregate\":\"group\"},\"2\":{\"text\":\"#{shouru.group(school)}\",\"style\":45,\"aggregate\":\"group\"},\"3\":{\"text\":\"#{shouru.ncnum}\",\"style\":35,\"aggregate\":\"select\"},\"4\":{\"text\":\"#{shouru.num}\",\"style\":35},\"5\":{\"text\":\"#{shouru.name}\",\"style\":35},\"6\":{\"text\":\"#{shouru.class}\",\"style\":35},\"7\":{\"text\":\"#{shouru.pay}\",\"style\":35},\"8\":{\"text\":\"#{shouru.paytime}\",\"style\":35},\"9\":{\"text\":\"#{shouru.payclass}\",\"style\":35},\"10\":{\"text\":\"#{shouru.pay1}\",\"style\":35},\"11\":{\"text\":\"#{shouru.paymoth}\",\"style\":35},\"12\":{\"text\":\"#{shouru.pay2}\",\"style\":35},\"13\":{\"style\":33,\"text\":\"=SUM(O5:Q5)\"},\"14\":{\"text\":\"#{shouru.tuition_09}\",\"style\":35},\"15\":{\"text\":\"#{shouru.meals_09}\",\"style\":35},\"16\":{\"text\":\"#{shouru.busfee_09}\",\"style\":35},\"17\":{\"style\":33,\"text\":\"=SUM(S5:U5)\"},\"18\":{\"text\":\"#{shouru.tuition_10}\",\"style\":35},\"19\":{\"text\":\"#{shouru.meals_10}\",\"style\":35},\"20\":{\"text\":\"#{shouru.busfee_10}\",\"style\":35},\"21\":{\"style\":68,\"text\":\"=SUM(W5,X5)\"},\"22\":{\"style\":35,\"text\":\"=SUM(O5,S5)\"},\"23\":{\"style\":35,\"text\":\"=SUM(P5,T5)\"},\"24\":{\"style\":35,\"text\":\"=SUM(Q5,U5)\"}},\"isDrag\":true,\"height\":35},\"5\":{\"cells\":{\"1\":{\"style\":15,\"text\":\"合计\",\"rendered\":\"\",\"merge\":[0,1]},\"3\":{\"style\":66,\"text\":\" \"},\"4\":{\"style\":66,\"text\":\" \"},\"5\":{\"style\":66,\"text\":\" \"},\"6\":{\"style\":66,\"text\":\" \"},\"7\":{\"style\":66,\"text\":\" \"},\"8\":{\"style\":66,\"text\":\" \"},\"9\":{\"style\":66,\"text\":\" \"},\"10\":{\"style\":66,\"text\":\" \"},\"11\":{\"style\":66,\"text\":\" \"},\"12\":{\"style\":66,\"text\":\" \"},\"13\":{\"style\":15,\"text\":\"=SUM(N5)\"},\"14\":{\"style\":66,\"text\":\" \"},\"15\":{\"style\":66,\"text\":\" \"},\"16\":{\"s
|
|
|
|
|
INSERT INTO `jimu_report` VALUES ('1334757703079301120', '20201204151358', '车间零件完工一览表', NULL, NULL, 'datainfo', '{\"loopBlockList\":[],\"area\":{\"sri\":8,\"sci\":11,\"eri\":8,\"eci\":11,\"width\":100,\"height\":25},\"excel_config_id\":\"1334757703079301120\",\"printConfig\":{\"paper\":\"A4\",\"width\":210,\"height\":297,\"definition\":1,\"isBackend\":false,\"marginX\":10,\"marginY\":10},\"rows\":{\"0\":{\"cells\":{\"1\":{\"text\":\"车间零件完工一览表\",\"merge\":[0,12],\"style\":23}},\"height\":81},\"1\":{\"cells\":{\"1\":{\"text\":\"车间\",\"style\":22},\"2\":{\"text\":\"成品名称\",\"style\":22},\"3\":{\"text\":\"半成品名称\",\"style\":22},\"4\":{\"text\":\"完工时间\",\"style\":22},\"5\":{\"text\":\"状态\",\"style\":22},\"6\":{\"text\":\"成品属性\",\"style\":22},\"7\":{\"text\":\"工单号\",\"style\":22},\"8\":{\"text\":\"工单数量\",\"style\":22},\"9\":{\"text\":\"计划数量\",\"style\":22},\"10\":{\"text\":\"完成数量\",\"style\":22},\"11\":{\"text\":\"UPH\",\"style\":22},\"12\":{\"text\":\"H/C\",\"style\":22},\"13\":{\"text\":\"计划时间\",\"style\":22},\"14\":{\"text\":\"良率\",\"style\":22},\"15\":{\"text\":\"备注\",\"style\":22}},\"height\":55},\"2\":{\"cells\":{\"1\":{\"text\":\"#{chejian.group(city)}\",\"style\":16,\"aggregate\":\"group\"},\"2\":{\"text\":\"#{chejian.finish}\",\"style\":14},\"3\":{\"text\":\"#{chejian.semifinish}\",\"style\":14},\"4\":{\"text\":\"#{chejian.time}\",\"style\":14},\"5\":{\"text\":\"#{chejian.state}\",\"style\":14},\"6\":{\"text\":\"#{chejian.attribute}\",\"style\":14},\"7\":{\"text\":\"#{chejian.num}\",\"style\":14},\"8\":{\"text\":\"#{chejian.gnum}\",\"style\":14},\"9\":{\"text\":\"#{chejian.jnum}\",\"style\":14},\"10\":{\"text\":\"#{chejian.wnum}\",\"style\":14},\"11\":{\"text\":\"#{chejian.uph}\",\"style\":24},\"12\":{\"text\":\"#{chejian.hc}\",\"style\":14},\"13\":{\"text\":\"#{chejian.jtime}\",\"style\":14},\"14\":{\"text\":\"#{chejian.yield}\",\"style\":14},\"15\":{\"text\":\"#{chejian.beizhu}\",\"style\":14}},\"isDrag\":true,\"height\":35},\"3\":{\"cells\":{\"11\":{\"text\":\"\"}}},\"len\":100},\"dbexps\":[],\"toolPrintSizeObj\":{\"printType\":\"A4\",\"widthPx\":718,\"heightPx\":1047},\"dicts\":[],\"groupField\":\"chejian.city\",\"freeze\":\"A1\",\"dataRectWidth\":1494,\"displayConfig\":{},\"background\":false,\"name\":\"sheet1\",\"autofilter\":{},\"styles\":[{\"align\":\"center\"},{\"align\":\"center\",\"bgcolor\":\"#\"},{\"align\":\"center\",\"bgcolor\":\"#309fc6\"},{\"align\":\"center\",\"bgcolor\":\"#309fc6\",\"color\":\"#ffffff\"},{\"bgcolor\":\"#309fc6\"},{\"bgcolor\":\"#309fc6\",\"color\":\"#ffffff\"},{\"align\":\"center\",\"bgcolor\":\"#309fc6\",\"color\":\"#ffffff\",\"border\":{\"bottom\":[\"thin\",\"#bfbfbf\"],\"top\":[\"thin\",\"#bfbfbf\"],\"left\":[\"thin\",\"#bfbfbf\"],\"right\":[\"thin\",\"#bfbfbf\"]}},{\"border\":{\"bottom\":[\"thin\",\"#bfbfbf\"],\"top\":[\"thin\",\"#bfbfbf\"],\"left\":[\"thin\",\"#bfbfbf\"],\"right\":[\"thin\",\"#bfbfbf\"]}},{\"bgcolor\":\"#309fc6\",\"color\":\"#ffffff\",\"border\":{\"bottom\":[\"thin\",\"#bfbfbf\"],\"top\":[\"thin\",\"#bfbfbf\"],\"left\":[\"thin\",\"#bfbfbf\"],\"right\":[\"thin\",\"#bfbfbf\"]}},{\"font\":{\"bold\":true}},{\"font\":{\"bold\":true,\"size\":16}},{\"font\":{\"size\":9}},{\"border\":{\"bottom\":[\"thin\",\"#bfbfbf\"],\"top\":[\"thin\",\"#bfbfbf\"],\"left\":[\"thin\",\"#bfbfbf\"],\"right\":[\"thin\",\"#bfbfbf\"]},\"font\":{\"size\":9}},{\"font\":{\"size\":9},\"align\":\"center\"},{\"border\":{\"bottom\":[\"thin\",\"#bfbfbf\"],\"top\":[\"thin\",\"#bfbfbf\"],\"left\":[\"thin\",\"#bfbfbf\"],\"right\":[\"thin\",\"#bfbfbf\"]},\"font\":{\"size\":9},\"align\":\"center\"},{\"border\":{\"bottom\":[\"thin\",\"#bfbfbf\"],\"top\":[\"thin\",\"#bfbfbf\"],\"left\":[\"thin\",\"#bfbfbf\"],\"right\":[\"thin\",\"#bfbfbf\"]},\"font\":{\"size\":9},\"align\":\"center\",\"bgcolor\":\"#\"},{\"border\":{\"bottom\":[\"thin\",\"#bfbfbf\"],\"top\":[\"thin\",\"#bfbfbf\"],\"left\":[\"thin\",\"#bfbfbf\"],\"right\":[\"thin\",\"#bfbfbf\"]},\"font\":{\"size\":9},\"align\":\"center\
|
|
|
|
|
INSERT INTO `jimu_report` VALUES ('1337271712059887616', '20201211134332', '山东智慧旅游大屏', NULL, NULL, 'chartinfo', '{\"loopBlockList\":[],\"chartList\":[{\"row\":1,\"col\":11,\"colspan\":3,\"rowspan\":13,\"width\":\"293\",\"height\":\"324\",\"config\":\"{\\\"legend\\\":{\\\"padding\\\":[25,20,25,10],\\\"data\\\":[\\\"河北\\\",\\\"北京\\\",\\\"上海\\\",\\\"山东\\\",\\\"深圳\\\",\\\"黑龙江\\\"],\\\"top\\\":\\\"top\\\",\\\"orient\\\":\\\"horizontal\\\",\\\"left\\\":\\\"center\\\",\\\"show\\\":false,\\\"textStyle\\\":{\\\"color\\\":\\\"#333\\\",\\\"fontSize\\\":12}},\\\"series\\\":[{\\\"data\\\":[{\\\"name\\\":\\\"河北\\\",\\\"value\\\":\\\"1500\\\",\\\"itemStyle\\\":{\\\"color\\\":\\\"rgba(99,198,213,1)\\\"}},{\\\"name\\\":\\\"北京\\\",\\\"value\\\":\\\"3700\\\",\\\"itemStyle\\\":{\\\"color\\\":\\\"rgba(249,190,165,1)\\\"}},{\\\"name\\\":\\\"上海\\\",\\\"value\\\":\\\"1000\\\",\\\"itemStyle\\\":{\\\"color\\\":\\\"rgba(254,231,105,1)\\\"}},{\\\"name\\\":\\\"山东\\\",\\\"value\\\":\\\"450\\\",\\\"itemStyle\\\":{\\\"color\\\":\\\"rgba(100,122,185,1)\\\"}},{\\\"name\\\":\\\"深圳\\\",\\\"value\\\":\\\"5000\\\",\\\"itemStyle\\\":{\\\"color\\\":\\\"rgba(116,166,198,1)\\\"}},{\\\"name\\\":\\\"黑龙江\\\",\\\"value\\\":\\\"3600\\\",\\\"itemStyle\\\":{\\\"color\\\":\\\"rgba(243,137,130,1)\\\"}}],\\\"bottom\\\":60,\\\"isRadius\\\":true,\\\"roseType\\\":\\\"\\\",\\\"minAngle\\\":\\\"10\\\",\\\"right\\\":\\\"10%\\\",\\\"label\\\":{\\\"show\\\":true,\\\"textStyle\\\":{\\\"fontSize\\\":\\\"10\\\",\\\"fontWeight\\\":\\\"bolder\\\"}},\\\"type\\\":\\\"pie\\\",\\\"autoSort\\\":false,\\\"isRose\\\":false,\\\"top\\\":60,\\\"left\\\":\\\"10%\\\",\\\"notCount\\\":false,\\\"name\\\":\\\"value\\\",\\\"radius\\\":[\\\"40%\\\",\\\"49%\\\"]}],\\\"tooltip\\\":{\\\"formatter\\\":\\\"{b} : {c}\\\",\\\"show\\\":true,\\\"textStyle\\\":{\\\"color\\\":\\\"#fff\\\",\\\"fontSize\\\":\\\"10\\\"}},\\\"title\\\":{\\\"show\\\":true,\\\"top\\\":5,\\\"text\\\":\\\"游客来源分析\\\",\\\"textStyle\\\":{\\\"color\\\":\\\"#FAF6F6\\\",\\\"fontWeight\\\":\\\"normal\\\",\\\"fontSize\\\":\\\"14\\\"},\\\"left\\\":\\\"left\\\",\\\"padding\\\":[5,20,5,10]}}\",\"url\":\"\",\"extData\":{\"dataType\":\"sql\",\"apiStatus\":\"\",\"dataId\":\"1338678877395881985\",\"axisX\":\"name\",\"axisY\":\"value\",\"series\":\"\",\"yText\":\"value\",\"xText\":\"name\",\"dbCode\":\"laiyuan1\",\"dataId1\":\"\",\"source\":\"\",\"target\":\"\",\"chartType\":\"pie.simple\",\"chartId\":\"pie.rose\"},\"layer_id\":\"i5HQTS1CQ2VH6nEQ\",\"offsetX\":0,\"offsetY\":0,\"backgroud\":{\"enabled\":false,\"color\":\"#fff\",\"image\":\"\"},\"virtualCellRange\":[[1,11],[1,12],[1,13]]},{\"row\":1,\"col\":1,\"colspan\":4,\"rowspan\":6,\"width\":\"359\",\"height\":\"149\",\"config\":\"{\\\"yAxis\\\":{\\\"axisLabel\\\":{\\\"rotate\\\":0,\\\"interval\\\":0,\\\"textStyle\\\":{\\\"color\\\":\\\"#FFFFFF\\\",\\\"fontSize\\\":\\\"10\\\"}},\\\"data\\\":[\\\"杭州\\\",\\\"南京\\\",\\\"苏州\\\",\\\"武汉\\\",\\\"南昌\\\"],\\\"axisLine\\\":{\\\"lineStyle\\\":{\\\"color\\\":\\\"#FFFFFF\\\"}},\\\"show\\\":true,\\\"splitLine\\\":{\\\"lineStyle\\\":{\\\"color\\\":\\\"red\\\",\\\"width\\\":1,\\\"type\\\":\\\"solid\\\"},\\\"show\\\":false},\\\"type\\\":\\\"category\\\"},\\\"xAxis\\\":{\\\"axisLabel\\\":{\\\"textStyle\\\":{\\\"color\\\":\\\"#333\\\",\\\"fontSize\\\":12}},\\\"axisLine\\\":{\\\"lineStyle\\\":{\\\"color\\\":\\\"#333\\\"}},\\\"show\\\":false,\\\"splitLine\\\":{\\\"lineStyle\\\":{\\\"color\\\":\\\"red\\\",\\\"width\\\":1,\\\"type\\\":\\\"solid\\\"},\\\"show\\\":false},\\\"type \\\":\\\"value\\\"},\\\"legend\\\":{\\\"padding\\\":[25,20,25,10],\\\"data\\\":[\\\"数量\\\"],\\\"top\\\":\\\"top\\\",\\\"orient\\\":\\\"horizontal\\\",\\\"left\\\":\\\"center\\\",\\\"show\\\":false,\\\"textStyle\\\":{\\\"color\\\":\\\"#333\\\",\\\"fontSize\\\":12}},\\\"grid\\\":{\\\"top\\\":40,\\\"left\\\":44,\\\"bottom\\\":25,\\\"right\\\":10},\\\"series\\\":[{\\\"barWidth\\\":10,\\\"data\\\":[\\\"888\\\",\\\"765\\\",\\\"698\\\",\\\"436\\\",\\\"415\\\"],\\\"name\\\":\\\"数量\\\",\\\"itemStyle\
|
|
|
|
|
INSERT INTO `jimu_report` VALUES ('1338370016550195200', '20201214142804', '条形码报表', NULL, NULL, 'datainfo', '{\"loopBlockList\":[],\"area\":{\"sri\":3,\"sci\":7,\"eri\":5,\"eci\":7,\"width\":105,\"height\":145},\"excel_config_id\":\"1338370016550195200\",\"printConfig\":{\"paper\":\"A4\",\"width\":210,\"height\":297,\"definition\":1,\"isBackend\":false,\"marginX\":10,\"marginY\":10},\"rows\":{\"0\":{\"cells\":{\"1\":{\"merge\":[1,6],\"text\":\"居民身份证申领登记表\",\"style\":39}},\"height\":73},\"1\":{\"cells\":{\"8\":{\"text\":\"\",\"rendered\":\"\",\"config\":\"\"}},\"height\":28},\"2\":{\"cells\":{\"0\":{\"text\":\"\",\"rendered\":\"\"},\"1\":{\"text\":\"受理单位(盖章)珠海市公安局\",\"merge\":[0,3],\"style\":36},\"5\":{\"text\":\" \"},\"6\":{\"text\":\"\",\"rendered\":\"\",\"config\":\"\",\"display\":\"normal\"},\"7\":{\"text\":\" \"},\"8\":{\"text\":\"\",\"rendered\":\"\",\"config\":\"\"},\"9\":{\"text\":\"\",\"rendered\":\"\"}},\"height\":34},\"3\":{\"cells\":{\"1\":{\"text\":\"姓名\",\"style\":24},\"2\":{\"style\":7,\"rendered\":\"\",\"text\":\"${tm.name}\"},\"3\":{\"text\":\"性别\",\"style\":16},\"4\":{\"style\":7,\"text\":\"${tm.sex}\"},\"5\":{\"text\":\"民族\",\"style\":16},\"6\":{\"style\":7,\"text\":\"${tm.nation}\"},\"7\":{\"text\":\"${tm.tp}\",\"style\":7,\"rendered\":\"h45oR9LiU0yMyTha\",\"display\":\"img\",\"merge\":[2,0],\"height\":145},\"8\":{\"text\":\"\",\"rendered\":\"\",\"config\":\"\"},\"9\":{\"text\":\"\",\"rendered\":\"\",\"config\":\"\"}},\"isDrag\":true,\"height\":47},\"4\":{\"cells\":{\"1\":{\"text\":\"出生日期\",\"style\":24},\"2\":{\"style\":32,\"merge\":[0,4],\"text\":\"${tm.birth}\"},\"8\":{\"text\":\"\",\"rendered\":\"\",\"config\":\"\"},\"9\":{\"text\":\"\",\"rendered\":\"\",\"config\":\"\",\"display\":\"normal\"},\"10\":{\"text\":\"\",\"rendered\":\"\",\"config\":\"\"}},\"isDrag\":true,\"height\":47},\"5\":{\"cells\":{\"1\":{\"text\":\"常住户口所在地住址\",\"style\":21},\"2\":{\"style\":7,\"merge\":[0,4],\"text\":\"${tm.zhuzhi}\"},\"8\":{\"text\":\"\",\"rendered\":\"\",\"config\":\"\"},\"9\":{\"text\":\"\",\"rendered\":\"\",\"display\":\"normal\"},\"10\":{\"text\":\"\",\"rendered\":\"\",\"config\":\"\"}},\"isDrag\":true,\"height\":51},\"6\":{\"cells\":{\"1\":{\"text\":\"公民身份证\",\"style\":24},\"2\":{\"style\":7,\"merge\":[0,5],\"text\":\"${tm.card}\"},\"8\":{\"text\":\"\",\"rendered\":\"\",\"config\":\"\"},\"9\":{\"text\":\"\",\"rendered\":\"\",\"config\":\"\"},\"10\":{\"text\":\"\",\"rendered\":\"\"}},\"isDrag\":true,\"height\":49},\"7\":{\"cells\":{\"1\":{\"text\":\"有限期限\",\"style\":24},\"2\":{\"style\":34,\"merge\":[0,1],\"text\":\"${tm.ydate}\"},\"4\":{\"text\":\"签发机关\",\"style\":24},\"5\":{\"style\":7,\"merge\":[0,2],\"text\":\"${tm.qfjg}\"},\"9\":{\"text\":\"\",\"rendered\":\"\"},\"10\":{\"text\":\"\",\"rendered\":\"\"}},\"isDrag\":true,\"height\":50},\"8\":{\"cells\":{\"1\":{\"text\":\"申领原因\",\"style\":24},\"2\":{\"style\":7,\"merge\":[0,5],\"text\":\"${tm.slyy}\",\"rendered\":\"\",\"config\":\"\"},\"9\":{\"text\":\"\",\"rendered\":\"\"},\"10\":{\"text\":\"\",\"rendered\":\"\",\"config\":\"\"}},\"isDrag\":true,\"height\":55},\"9\":{\"cells\":{\"1\":{\"text\":\"受理时间\",\"style\":24},\"2\":{\"style\":32,\"merge\":[0,1],\"text\":\"${tm.sdate}\"},\"4\":{\"text\":\"受理号\",\"style\":24},\"5\":{\"style\":7,\"merge\":[0,2],\"text\":\"${tm.shao}\",\"rendered\":\"\",\"config\":\"\"}},\"isDrag\":true,\"height\":49},\"10\":{\"cells\":{\"1\":{\"text\":\"承办人\",\"style\":24},\"2\":{\"style\":7,\"merge\":[0,1],\"text\":\"${tm.cbr}\"},\"4\":{\"text\":\"受理单位领导\",\"style\":24},\"5\":{\"style\":7,\"merge\":[0,2],\"text\":\"${tm.sld}\"},\"11\":{\"text\":\"\",\"rendered\":\"\",\"config\":\"\",\"display\":\"normal\"}},\"isDrag\":true,\"height\":42},\"11\":{\"cells\":{\"1\":{\"text\":\"申请(监护)人签名\",\"style\":21},\"2\":{\"style\":7,\"merge\":[0,1],\"text\":\"${tm.sr}\"},\"4\":{\"text\":\"申请(监护)人联系电话\",\"style\":21},\"5\":{\"style\":7,\"merge\":[0,2]
|
|
|
|
|
INSERT INTO `jimu_report` VALUES ('1338744112815411200', '20201215151426', '简单条件查询报表', NULL, NULL, 'datainfo', '{\"loopBlockList\":[],\"printConfig\":{\"paper\":\"A4\",\"width\":210,\"height\":297,\"definition\":1,\"isBackend\":false,\"marginX\":10,\"marginY\":10},\"dbexps\":[],\"toolPrintSizeObj\":{\"printType\":\"A4\",\"widthPx\":718,\"heightPx\":1047},\"dicts\":[],\"freeze\":\"A1\",\"dataRectWidth\":1302,\"autofilter\":{},\"validations\":[],\"cols\":{\"0\":{\"width\":40},\"1\":{\"width\":107},\"2\":{\"width\":143},\"3\":{\"width\":106},\"4\":{\"width\":80},\"5\":{\"width\":85},\"6\":{\"width\":118},\"7\":{\"width\":120},\"8\":{\"width\":164},\"9\":{\"width\":139},\"len\":50},\"area\":false,\"excel_config_id\":\"1338744112815411200\",\"zonedEditionList\":[],\"rows\":{\"1\":{\"cells\":{\"1\":{\"text\":\"职务\",\"style\":92},\"2\":{\"text\":\"雇员ID\",\"style\":92},\"3\":{\"text\":\"姓名\",\"style\":92},\"4\":{\"text\":\"性别\",\"style\":92},\"5\":{\"style\":92,\"text\":\"年龄\"},\"6\":{\"text\":\"雇佣日期\",\"style\":92},\"7\":{\"text\":\"家庭电话\",\"style\":92},\"8\":{\"text\":\"出生日期\",\"style\":92},\"9\":{\"text\":\"户口所在地\",\"style\":92},\"10\":{\"text\":\"联系地址\",\"style\":92},\"11\":{\"text\":\"紧急联系人\",\"style\":92}},\"height\":43},\"2\":{\"cells\":{\"1\":{\"style\":21,\"text\":\"#{pop.group(update_by)}\",\"aggregate\":\"group\"},\"2\":{\"style\":21,\"text\":\"#{pop.id}\"},\"3\":{\"style\":21,\"text\":\"#{pop.name}\"},\"4\":{\"style\":21,\"text\":\"#{pop.sex}\"},\"5\":{\"style\":21,\"text\":\"#{pop.age}\"},\"6\":{\"style\":24,\"text\":\"#{pop.gtime}\",\"rendered\":\"\"},\"7\":{\"style\":21,\"text\":\"#{pop.jphone}\"},\"8\":{\"style\":24,\"text\":\"#{pop.birth}\"},\"9\":{\"style\":21,\"text\":\"#{pop.hukou}\"},\"10\":{\"style\":21,\"text\":\"#{pop.laddress}\"},\"11\":{\"style\":21,\"text\":\"#{pop.jperson}\"}},\"height\":34},\"3\":{\"cells\":{}},\"4\":{\"cells\":{\"4\":{\"text\":\"\"}}},\"5\":{\"cells\":{\"1\":{\"style\":95,\"text\":\"备注:\"},\"2\":{\"style\":96,\"text\":\" \"},\"3\":{\"style\":96,\"text\":\" \"},\"4\":{\"style\":96,\"text\":\" \"},\"5\":{\"style\":97,\"text\":\" \"},\"6\":{\"style\":96,\"text\":\" \"},\"7\":{\"style\":98,\"text\":\" \"}}},\"6\":{\"cells\":{\"1\":{\"style\":99,\"text\":\"1、支持模糊查询,需要输入 “*+字符串”或 “字符串+* ”或“*+字符串+*”,如:张* / *丽 / *亚*;\",\"merge\":[0,6]}}},\"7\":{\"cells\":{\"1\":{\"style\":99,\"text\":\"2、以上“出生日期”为时间类型;\",\"merge\":[0,6]}}},\"8\":{\"cells\":{\"1\":{\"style\":99,\"text\":\"3、以上“雇佣日期”为日期类型\",\"merge\":[0,6]}}},\"9\":{\"cells\":{\"1\":{\"text\":\"4、以上“姓名”为字符串类型,支持精准查询和模糊查询;\",\"style\":100,\"merge\":[0,6]}}},\"10\":{\"cells\":{\"1\":{\"text\":\"5、以上\\\"年龄\\\"为数字类型,支持精准查询和范围查询;\",\"style\":101,\"merge\":[0,6]}}},\"len\":100,\"\":{\"cells\":{\"NaN\":{\"text\":\"\",\"rendered\":\"\"}}}},\"rpbar\":{\"show\":true,\"btnList\":[]},\"groupField\":\"pop.update_by\",\"fixedPrintHeadRows\":[],\"fixedPrintTailRows\":[],\"displayConfig\":{},\"background\":false,\"name\":\"sheet1\",\"styles\":[{\"bgcolor\":\"#5b9cd6\"},{\"bgcolor\":\"#5b9cd6\",\"color\":\"#ffffff\"},{\"color\":\"#ffffff\"},{\"align\":\"center\"},{\"bgcolor\":\"#5b9cd6\",\"color\":\"#ffffff\",\"align\":\"center\"},{\"bgcolor\":\"#02a274\",\"color\":\"#ffffff\",\"align\":\"center\"},{\"bgcolor\":\"#02a274\",\"color\":\"#ffffff\",\"align\":\"center\",\"border\":{\"bottom\":[\"thin\",\"#bfbfbf\"],\"top\":[\"thin\",\"#bfbfbf\"],\"left\":[\"thin\",\"#bfbfbf\"],\"right\":[\"thin\",\"#bfbfbf\"]}},{\"border\":{\"bottom\":[\"thin\",\"#bfbfbf\"],\"top\":[\"thin\",\"#bfbfbf\"],\"left\":[\"thin\",\"#bfbfbf\"],\"right\":[\"thin\",\"#bfbfbf\"]}},{\"border\":{\"bottom\":[\"thin\",\"#bfbfbf\"],\"top\":[\"thin\",\"#bfbfbf\"],\"left\":[\"thin\",\"#bfbfbf\"],\"right\":[\"thin\",\"#bfbfbf\"]},\"bgcolor\":\"#f1f9f6\"},{\"border\":{\"bottom\":[\"t
|
|
|
|
|
INSERT INTO `jimu_report` VALUES ('1338769064067076098', '202012151514266124', '多选条件查询报表', NULL, NULL, 'datainfo', '{\"loopBlockList\":[],\"area\":false,\"excel_config_id\":\"1338769064067076098\",\"printConfig\":{\"paper\":\"A4\",\"width\":210,\"height\":297,\"definition\":1,\"isBackend\":false,\"marginX\":10,\"marginY\":10},\"zonedEditionList\":[],\"rows\":{\"0\":{\"cells\":{}},\"1\":{\"cells\":{\"1\":{\"text\":\"职务\",\"style\":51},\"2\":{\"text\":\"雇员ID\",\"style\":51},\"3\":{\"text\":\"姓名\",\"style\":51},\"4\":{\"style\":51,\"text\":\"性别\"},\"5\":{\"text\":\"雇佣日期\",\"style\":51},\"6\":{\"text\":\"家庭电话\",\"style\":51},\"7\":{\"text\":\"出生日期\",\"style\":51},\"8\":{\"text\":\"户口所在地\",\"style\":51},\"9\":{\"text\":\"联系地址\",\"style\":51},\"10\":{\"text\":\"紧急联系人\",\"style\":51}},\"height\":46},\"2\":{\"cells\":{\"1\":{\"text\":\"#{pop.group(update_by)}\",\"style\":61,\"aggregate\":\"group\"},\"2\":{\"text\":\"#{pop.group(id)}\",\"style\":54,\"aggregate\":\"group\"},\"3\":{\"text\":\"#{pop.group(name)}\",\"style\":54,\"aggregate\":\"group\"},\"4\":{\"text\":\"#{pop.sex}\",\"style\":55},\"5\":{\"text\":\"#{pop.gtime}\",\"style\":56},\"6\":{\"text\":\"#{pop.jphone}\",\"style\":57},\"7\":{\"text\":\"#{pop.birth}\",\"style\":56},\"8\":{\"text\":\"#{pop.hukou}\",\"style\":58},\"9\":{\"text\":\"#{pop.laddress}\",\"style\":57},\"10\":{\"text\":\"#{pop.jperson}\",\"style\":57}},\"isDrag\":true,\"height\":35},\"5\":{\"cells\":{\"2\":{\"text\":\"\"}},\"isDrag\":true},\"len\":99},\"dbexps\":[],\"toolPrintSizeObj\":{\"printType\":\"A4\",\"widthPx\":718,\"heightPx\":1047},\"dicts\":[],\"rpbar\":{\"show\":true,\"btnList\":[]},\"groupField\":\"pop.update_by\",\"freeze\":\"A1\",\"dataRectWidth\":1560,\"displayConfig\":{},\"background\":false,\"name\":\"sheet1\",\"autofilter\":{},\"styles\":[{\"bgcolor\":\"#5b9cd6\"},{\"bgcolor\":\"#5b9cd6\",\"color\":\"#ffffff\"},{\"color\":\"#ffffff\"},{\"align\":\"center\"},{\"bgcolor\":\"#5b9cd6\",\"color\":\"#ffffff\",\"align\":\"center\"},{\"bgcolor\":\"#02a274\",\"color\":\"#ffffff\",\"align\":\"center\"},{\"bgcolor\":\"#02a274\",\"color\":\"#ffffff\",\"align\":\"center\",\"border\":{\"bottom\":[\"thin\",\"#bfbfbf\"],\"top\":[\"thin\",\"#bfbfbf\"],\"left\":[\"thin\",\"#bfbfbf\"],\"right\":[\"thin\",\"#bfbfbf\"]}},{\"border\":{\"bottom\":[\"thin\",\"#bfbfbf\"],\"top\":[\"thin\",\"#bfbfbf\"],\"left\":[\"thin\",\"#bfbfbf\"],\"right\":[\"thin\",\"#bfbfbf\"]}},{\"border\":{\"bottom\":[\"thin\",\"#bfbfbf\"],\"top\":[\"thin\",\"#bfbfbf\"],\"left\":[\"thin\",\"#bfbfbf\"],\"right\":[\"thin\",\"#bfbfbf\"]},\"bgcolor\":\"#f1f9f6\"},{\"border\":{\"bottom\":[\"thin\",\"#bfbfbf\"],\"top\":[\"thin\",\"#bfbfbf\"],\"left\":[\"thin\",\"#bfbfbf\"],\"right\":[\"thin\",\"#bfbfbf\"]},\"bgcolor\":\"#ddefe8\"},{\"font\":{\"size\":8}},{\"border\":{\"bottom\":[\"thin\",\"#bfbfbf\"],\"top\":[\"thin\",\"#bfbfbf\"],\"left\":[\"thin\",\"#bfbfbf\"],\"right\":[\"thin\",\"#bfbfbf\"]},\"bgcolor\":\"#f1f9f6\",\"font\":{\"size\":8}},{\"border\":{\"bottom\":[\"thin\",\"#bfbfbf\"],\"top\":[\"thin\",\"#bfbfbf\"],\"left\":[\"thin\",\"#bfbfbf\"],\"right\":[\"thin\",\"#bfbfbf\"]},\"bgcolor\":\"#ddefe8\",\"font\":{\"size\":8}},{\"border\":{\"bottom\":[\"thin\",\"#bfbfbf\"],\"top\":[\"thin\",\"#bfbfbf\"],\"left\":[\"thin\",\"#bfbfbf\"],\"right\":[\"thin\",\"#bfbfbf\"]},\"font\":{\"size\":8}},{\"font\":{\"size\":9}},{\"border\":{\"bottom\":[\"thin\",\"#bfbfbf\"],\"top\":[\"thin\",\"#bfbfbf\"],\"left\":[\"thin\",\"#bfbfbf\"],\"right\":[\"thin\",\"#bfbfbf\"]},\"bgcolor\":\"#f1f9f6\",\"font\":{\"size\":9}},{\"border\":{\"bottom\":[\"thin\",\"#bfbfbf\"],\"top\":[\"thin\",\"#bfbfbf\"],\"left\":[\"thin\",\"#bfbfbf\"],\"right\":[\"thin\",\"#bfbfbf\"]},\"bgcolor\":\"#ddefe8\",\"font\":{\"size\":9}},{\"border\":{\"bottom\":[\"thin\",\"#bfbfbf\"],\"top\":[\"thin\",\"#bfbfbf\"],\"left\":[\"thin\",\"#bfbfbf\"],\"right\":[\"thin\",\"#bfbfbf\"]},\"font\":{\"size\":9}},{\"font\":{\"size\":9},\"align\":\"center\"},{\"border\":{\"bottom\":[\"thin\",\"#bfbfbf\"],\"top\":[\"thin
|
|
|
|
|
INSERT INTO `jimu_report` VALUES ('1339478701846433792', '20201217155313', '企业实时报表', NULL, NULL, 'chartinfo', '{\"loopBlockList\":[],\"chartList\":[{\"row\":5,\"col\":12,\"colspan\":0,\"rowspan\":0,\"width\":\"244\",\"height\":\"128\",\"config\":\"{\\\"yAxis\\\":{\\\"axisLabel\\\":{\\\"rotate\\\":0,\\\"interval\\\":0,\\\"textStyle\\\":{\\\"color\\\":\\\"#FFFFFF\\\",\\\"fontSize\\\":\\\"10\\\"}},\\\"data\\\":[\\\"合肥\\\"],\\\"axisLine\\\":{\\\"lineStyle\\\":{\\\"color\\\":\\\"#FFFFFF\\\"}},\\\"show\\\":true,\\\"splitLine\\\":{\\\"lineStyle\\\":{\\\"color\\\":\\\"red\\\",\\\"width\\\":1,\\\"type\\\":\\\"solid\\\"},\\\"show\\\":false},\\\"type\\\":\\\"category\\\"},\\\"xAxis\\\":{\\\"axisLabel\\\":{\\\"textStyle\\\":{\\\"color\\\":\\\"#333\\\",\\\"fontSize\\\":12}},\\\"axisLine\\\":{\\\"lineStyle\\\":{\\\"color\\\":\\\"#333\\\"}},\\\"show\\\":false,\\\"splitLine\\\":{\\\"lineStyle\\\":{\\\"color\\\":\\\"red\\\",\\\"width\\\":1,\\\"type\\\":\\\"solid\\\"},\\\"show\\\":false},\\\"type \\\":\\\"value\\\"},\\\"legend\\\":{\\\"padding\\\":[25,20,25,10],\\\"data\\\":[\\\"销售额\\\"],\\\"top\\\":\\\"top\\\",\\\"orient\\\":\\\"horizontal\\\",\\\"left\\\":\\\"center\\\",\\\"show\\\":false,\\\"textStyle\\\":{\\\"color\\\":\\\"#333\\\",\\\"fontSize\\\":12}},\\\"grid\\\":{\\\"top\\\":10,\\\"left\\\":49,\\\"bottom\\\":16,\\\"right\\\":45},\\\"series\\\":[{\\\"barWidth\\\":9,\\\"data\\\":[800],\\\"name\\\":\\\"销售额\\\",\\\"itemStyle\\\":{\\\"barBorderRadius\\\":0,\\\"color\\\":\\\"rgba(146,119,252,1)\\\"},\\\"label\\\":{\\\"show\\\":true,\\\"position\\\":\\\"right\\\",\\\"textStyle\\\":{\\\"color\\\":\\\"#689AFB\\\",\\\"fontSize\\\":\\\"10\\\",\\\"fontWeight\\\":\\\"normal\\\"}},\\\"type\\\":\\\"bar\\\",\\\"barMinHeight\\\":2,\\\"typeData\\\":[],\\\"textStyle\\\":{\\\"color\\\":\\\"black\\\",\\\"fontWeight\\\":\\\"bolder\\\"}}],\\\"tooltip\\\":{\\\"show\\\":true,\\\"axisPointer\\\":{\\\"type\\\":\\\"shadow\\\"},\\\"trigger\\\":\\\"axis\\\",\\\"textStyle\\\":{\\\"color\\\":\\\"#fff\\\",\\\"fontSize\\\":\\\"10\\\"}},\\\"title\\\":{\\\"show\\\":false,\\\"top\\\":5,\\\"text\\\":\\\"销售额城市排名\\\",\\\"textStyle\\\":{\\\"color\\\":\\\"#FFFFFF\\\",\\\"fontWeight\\\":\\\"normal\\\",\\\"fontSize\\\":\\\"14\\\"},\\\"left\\\":\\\"left\\\",\\\"padding\\\":[5,20,5,20]}}\",\"url\":\"\",\"extData\":{\"dataType\":\"api\",\"apiStatus\":\"0\",\"dataId\":\"1339495346077728770\",\"axisX\":\"name\",\"axisY\":\"value\",\"series\":\"type\",\"yText\":\"\",\"xText\":\"\",\"dbCode\":\"chengshi\",\"dataId1\":\"\",\"source\":\"\",\"target\":\"\",\"isTiming\":true,\"intervalTime\":\"5\",\"chartType\":\"bar.multi.horizontal\"},\"layer_id\":\"qQHpevWlqElpRQUl\",\"offsetX\":0,\"offsetY\":0,\"backgroud\":{\"enabled\":false,\"color\":\"#fff\",\"image\":\"\"},\"virtualCellRange\":[[5,12],[5,13],[5,14]]},{\"row\":6,\"col\":1,\"colspan\":0,\"rowspan\":0,\"width\":\"302\",\"height\":\"337\",\"config\":\"{\\\"yAxis\\\":{\\\"axisLabel\\\":{\\\"rotate\\\":0,\\\"interval\\\":0,\\\"textStyle\\\":{\\\"color\\\":\\\"#FFFFFF\\\",\\\"fontSize\\\":\\\"10\\\"}},\\\"data\\\":[\\\"江苏\\\",\\\"山东\\\",\\\"安徽\\\",\\\"江西\\\",\\\"河北\\\",\\\"吉林\\\",\\\"黑龙江\\\",\\\"重庆\\\",\\\"广东\\\",\\\"上海\\\",\\\"哈尔滨\\\",\\\"福建\\\",\\\"四川\\\"],\\\"axisLine\\\":{\\\"lineStyle\\\":{\\\"color\\\":\\\"#FFFFFF\\\"}},\\\"show\\\":true,\\\"splitLine\\\":{\\\"lineStyle\\\":{\\\"color\\\":\\\"red\\\",\\\"width\\\":1,\\\"type\\\":\\\"solid\\\"},\\\"show\\\":false},\\\"type\\\":\\\"category\\\"},\\\"xAxis\\\":{\\\"axisLabel\\\":{\\\"textStyle\\\":{\\\"color\\\":\\\"#333\\\",\\\"fontSize\\\":12}},\\\"axisLine\\\":{\\\"lineStyle\\\":{\\\"color\\\":\\\"#333\\\"}},\\\"show\\\":false,\\\"splitLine\\\":{\\\"lineStyle\\\":{\\\"color\\\":\\\"red\\\",\\\"width\\\":1,\\\"type\\\":\\\"solid\\\"},\\\"show\\\":false},\\\"type \\\":\\\"value\\\"},\\\"legend\\\":{\\\"padding\\\":[25,20,25,10],\\\"data\\\":[\\\"销售额\\\"],\\\"top\\\":\\\"top\\\",\\\"orient\\\":\\\"horizontal\\\",\\\"left\\\":\\\"center\\\",\\\"show\\\":false,\\\"textStyle\\\":{
|
|
|
|
|
INSERT INTO `jimu_report` VALUES ('1339859143477039104', '20201218170625', '全国连锁超市会员分析', NULL, NULL, 'chartinfo', '{\"loopBlockList\":[],\"chartList\":[{\"row\":1,\"col\":5,\"colspan\":6,\"rowspan\":13,\"width\":\"499\",\"height\":\"344\",\"config\":\"{\\\"geo\\\":{\\\"map\\\":100000,\\\"mapCode\\\":[100000],\\\"mapName\\\":\\\"中华人民共和国\\\",\\\"mapLevel\\\":\\\"0\\\",\\\"mapType\\\":\\\"0\\\",\\\"zoom\\\":0.5,\\\"label\\\":{\\\"color\\\":\\\"#ffffff\\\",\\\"fontSize\\\":\\\"8\\\",\\\"show\\\":true},\\\"itemStyle\\\":{\\\"borderWidth\\\":0.5,\\\"areaColor\\\":\\\"rgba(4,140,156,1)\\\",\\\"borderColor\\\":\\\"#000\\\"},\\\"emphasis\\\":{\\\"label\\\":{\\\"color\\\":\\\"rgba(255,255,255,1)\\\"},\\\"itemStyle\\\":{\\\"areaColor\\\":\\\"rgba(5,106,112,1)\\\"}},\\\"regions\\\":[],\\\"layoutSize\\\":600,\\\"roam\\\":true,\\\"layoutCenter\\\":[\\\"50%\\\",\\\"50%\\\"]},\\\"series\\\":[{\\\"encode\\\":{\\\"value\\\":[2]},\\\"data\\\":[{\\\"name\\\":\\\"北京\\\",\\\"value\\\":[116.405285,39.904989,\\\"6500\\\"]},{\\\"name\\\":\\\"河北\\\",\\\"value\\\":[114.502461,38.045474,\\\"3500\\\"]},{\\\"name\\\":\\\"天津\\\",\\\"value\\\":[117.190182,39.125596,\\\"3000\\\"]},{\\\"name\\\":\\\"山东\\\",\\\"value\\\":[117.000923,36.675807,\\\"2500\\\"]},{\\\"name\\\":\\\"福建\\\",\\\"value\\\":[119.306239,26.075302,\\\"6500\\\"]},{\\\"name\\\":\\\"上海\\\",\\\"value\\\":[121.472644,31.231706,\\\"7500\\\"]}],\\\"name\\\":\\\"value\\\",\\\"emphasis\\\":{\\\"label\\\":{\\\"show\\\":true}},\\\"itemStyle\\\":{\\\"color\\\":\\\"rgba(255,135,11,1)\\\"},\\\"coordinateSystem\\\":\\\"geo\\\",\\\"label\\\":{\\\"formatter\\\":\\\"{b}\\\",\\\"show\\\":false,\\\"position\\\":\\\"right\\\"},\\\"type\\\":\\\"scatter\\\",\\\"symbolSize\\\":6}],\\\"chartType\\\":\\\"map\\\",\\\"tooltip\\\":{\\\"textStyle\\\":{\\\"color\\\":\\\"#fff\\\",\\\"fontSize\\\":\\\"10\\\"},\\\"show\\\":true},\\\"title\\\":{\\\"show\\\":true,\\\"top\\\":5,\\\"text\\\":\\\"全国省份分布\\\",\\\"textStyle\\\":{\\\"color\\\":\\\"#0B0B0B\\\",\\\"fontWeight\\\":\\\"bolder\\\",\\\"fontSize\\\":\\\"13\\\"},\\\"left\\\":\\\"left\\\",\\\"padding\\\":[5,20,5,10]}}\",\"url\":\"\",\"extData\":{\"dataType\":\"sql\",\"apiStatus\":\"\",\"apiUrl\":\"\",\"dataId\":\"c73e1f3325b926081641d918921d2bcd\",\"axisX\":\"name\",\"axisY\":\"value\",\"series\":\"\",\"yText\":\"value\",\"xText\":\"name\",\"dbCode\":\"ditu\",\"dataId1\":\"\",\"source\":\"\",\"target\":\"\",\"isTiming\":true,\"intervalTime\":\"5\",\"chartType\":\"map.scatter\",\"id\":\"\"},\"layer_id\":\"7iI8sg3C12WgjU7y\",\"offsetX\":0,\"offsetY\":0,\"backgroud\":{\"enabled\":false,\"color\":\"#fff\",\"image\":\"\"},\"virtualCellRange\":[[1,5],[1,6],[1,7],[1,8],[1,9]]},{\"row\":1,\"col\":10,\"colspan\":3,\"rowspan\":13,\"width\":\"296\",\"height\":\"344\",\"config\":\"{\\\"yAxis\\\":{\\\"axisLabel\\\":{\\\"textStyle\\\":{\\\"color\\\":\\\"#333\\\",\\\"fontSize\\\":\\\"8\\\"}},\\\"axisLine\\\":{\\\"lineStyle\\\":{\\\"color\\\":\\\"#333\\\"}},\\\"show\\\":true,\\\"name\\\":\\\"\\\",\\\"splitLine\\\":{\\\"lineStyle\\\":{\\\"color\\\":\\\"red\\\",\\\"width\\\":1,\\\"type\\\":\\\"solid\\\"},\\\"show\\\":false}},\\\"xAxis\\\":{\\\"axisLabel\\\":{\\\"rotate\\\":0,\\\"interval\\\":0,\\\"textStyle\\\":{\\\"color\\\":\\\"#333\\\",\\\"fontSize\\\":\\\"8\\\"}},\\\"data\\\":[\\\"顾客\\\",\\\"二星\\\",\\\"一星\\\",\\\"明星\\\",\\\"总监\\\",\\\"三星\\\",\\\"大使\\\",\\\"高级\\\",\\\"金鹰\\\"],\\\"axisLine\\\":{\\\"lineStyle\\\":{\\\"color\\\":\\\"#333\\\"}},\\\"show\\\":true,\\\"name\\\":\\\"\\\",\\\"splitLine\\\":{\\\"lineStyle\\\":{\\\"color\\\":\\\"red\\\",\\\"width\\\":1,\\\"type\\\":\\\"solid\\\"},\\\"show\\\":false}},\\\"grid\\\":{\\\"top\\\":59,\\\"left\\\":43,\\\"bottom\\\":48,\\\"right\\\":32},\\\"series\\\":[{\\\"barWidth\\\":10,\\\"data\\\":[394,515,334,150,54,50,17,7,2],\\\"name\\\":\\\"value\\\",\\\"itemStyle\\\":{\\\"barBorderRadius\\\":0,\\\"color\\\":\\\"#208ae9\\\"},\\\"label\\\":{\\\"show\\\":true,\\\"position\\\":\\\"top\\\",\\\"textStyle\\\":{\\\"color\\\":\\\"black\\\",\\\"fo
|
|
|
|
|
INSERT INTO `jimu_report` VALUES ('1347373863746539520', '20210108104603', '实习证明', NULL, NULL, 'printinfo', '{\"loopBlockList\":[],\"area\":{\"sri\":16,\"sci\":5,\"eri\":16,\"eci\":5,\"width\":147,\"height\":25},\"excel_config_id\":\"1347373863746539520\",\"printConfig\":{\"paper\":\"A4\",\"width\":210,\"height\":297,\"definition\":1,\"isBackend\":false,\"marginX\":10,\"marginY\":10,\"layout\":\"portrait\"},\"rows\":{\"0\":{\"cells\":{\"0\":{\"text\":\"\"},\"1\":{\"text\":\"\"}}},\"1\":{\"cells\":{\"0\":{\"text\":\"\"}}},\"3\":{\"cells\":{\"2\":{\"text\":\"\",\"rendered\":\"\"}}},\"5\":{\"cells\":{},\"height\":29},\"6\":{\"cells\":{\"2\":{\"text\":\"\",\"style\":2}},\"height\":34},\"7\":{\"cells\":{\"2\":{\"merge\":[0,4],\"text\":\"实习证明\",\"style\":2}},\"height\":41},\"8\":{\"cells\":{\"1\":{\"text\":\"\",\"style\":3},\"2\":{\"text\":\"\"}}},\"9\":{\"cells\":{\"1\":{\"text\":\"\",\"style\":3},\"2\":{\"text\":\"\",\"style\":3},\"3\":{\"text\":\"\"}},\"isDrag\":true,\"height\":33},\"10\":{\"cells\":{\"2\":{\"text\":\"${tt.name}\",\"style\":11},\"3\":{\"text\":\"同学在我公司与 2020年4月1日 至 2020年5月1日 实习。\",\"style\":19,\"merge\":[0,3],\"height\":34}},\"height\":34},\"11\":{\"cells\":{},\"height\":28},\"12\":{\"cells\":{\"1\":{\"text\":\"\",\"style\":6},\"2\":{\"style\":13,\"text\":\"${tt.pingjia}\",\"merge\":[3,4],\"height\":129}},\"height\":36},\"13\":{\"cells\":{},\"height\":29},\"14\":{\"cells\":{},\"height\":33},\"15\":{\"cells\":{},\"height\":31},\"16\":{\"cells\":{}},\"17\":{\"cells\":{\"1\":{\"text\":\"\"},\"2\":{\"text\":\"特此证明!\",\"style\":12}}},\"20\":{\"cells\":{\"2\":{\"text\":\"\"},\"3\":{\"text\":\"\",\"style\":3},\"4\":{\"text\":\"\"}}},\"21\":{\"cells\":{\"4\":{\"text\":\"\"}}},\"22\":{\"cells\":{\"3\":{\"text\":\"\",\"style\":3},\"4\":{\"text\":\"证明人:\",\"style\":11},\"5\":{\"text\":\"${tt.lingdao}\",\"style\":12}}},\"23\":{\"cells\":{\"4\":{\"text\":\"\"},\"5\":{\"text\":\"${tt.shijian}\",\"style\":15}}},\"len\":100},\"dbexps\":[],\"dicts\":[],\"freeze\":\"A1\",\"dataRectWidth\":576,\"displayConfig\":{},\"background\":{\"path\":\"https://static.jeecg.com/designreport/images/11_1611283832037.png\",\"repeat\":\"no-repeat\",\"width\":\"\",\"height\":\"\"},\"name\":\"sheet1\",\"autofilter\":{},\"styles\":[{\"align\":\"center\"},{\"align\":\"center\",\"font\":{\"size\":14}},{\"align\":\"center\",\"font\":{\"size\":16}},{\"align\":\"right\"},{\"align\":\"left\"},{\"align\":\"left\",\"valign\":\"top\"},{\"align\":\"left\",\"valign\":\"top\",\"textwrap\":true},{\"font\":{\"size\":16}},{\"align\":\"left\",\"valign\":\"top\",\"textwrap\":false},{\"textwrap\":false},{\"textwrap\":true},{\"align\":\"right\",\"font\":{\"size\":12}},{\"font\":{\"size\":12}},{\"align\":\"left\",\"valign\":\"top\",\"textwrap\":true,\"font\":{\"size\":12}},{\"textwrap\":true,\"font\":{\"size\":12}},{\"align\":\"left\",\"font\":{\"size\":12}},{\"font\":{\"size\":12},\"border\":{\"bottom\":[\"thin\",\"#000\"],\"top\":[\"thin\",\"#000\"],\"left\":[\"thin\",\"#000\"],\"right\":[\"thin\",\"#000\"]}},{\"font\":{\"size\":14}},{\"font\":{\"size\":10}},{\"textwrap\":false,\"font\":{\"size\":12}}],\"validations\":[],\"cols\":{\"0\":{\"width\":69},\"1\":{\"width\":41},\"4\":{\"width\":119},\"5\":{\"width\":147},\"6\":{\"width\":31},\"len\":50},\"merges\":[\"C8:G8\",\"D11:G11\",\"C13:G16\"]}', NULL, 'https://static.jeecg.com/designreport/images/未标题-1_1610074948259.png', 'admin', '2021-01-08 10:46:04', 'ohbaK6VQpkyqEV2FJss0ZtzWCT3w', '2021-08-04 18:06:29', 0, NULL, NULL, 1, 722, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report` VALUES ('1350035590569136128', '20210115190242', '简单明细表', NULL, NULL, 'datainfo', '{\"loopBlockList\":[{\"sci\":1,\"sri\":2,\"eci\":7,\"eri\":5,\"index\":1,\"db\":\"uiu\"}],\"area\":{\"sri\":2,\"sci\":2,\"eri\":2,\"eci\":3,\"width\":177,\"height\":42},\"excel_config_id\":\"1350035590569136128\",\"printConfig\":{\"paper\":\"A4\",\"width\":210,\"height\":297,\"definition\":1,\"isBackend\":false,\"marginX\":10,\"marginY\":10,\"layout\":\"portrait\"},\"zonedEditionList\":[],\"rows\":{\"0\":{\"cells\":{\"8\":{\"text\":\"\",\"rendered\":\"\",\"config\":\"\"}}},\"1\":{\"cells\":{\"1\":{\"text\":\"员工信息明细表\",\"merge\":[0,5],\"style\":32},\"9\":{\"text\":\"\"}},\"height\":64},\"2\":{\"cells\":{\"1\":{\"text\":\"姓名:\",\"style\":28,\"loopBlock\":1,\"rendered\":\"\",\"config\":\"\"},\"2\":{\"style\":30,\"merge\":[0,1],\"loopBlock\":1,\"text\":\"#{uiu.name}\"},\"3\":{\"text\":\"\",\"loopBlock\":1},\"4\":{\"text\":\"所在部门:\",\"style\":29,\"loopBlock\":1},\"5\":{\"style\":30,\"merge\":[0,1],\"loopBlock\":1,\"text\":\"#{uiu.department}\",\"rendered\":\"\",\"config\":\"\"},\"6\":{\"text\":\"\",\"loopBlock\":1},\"7\":{\"merge\":[2,0],\"height\":75,\"rendered\":\"emtfhoFfcAJTOI4v\",\"config\":\"11\",\"style\":9,\"text\":\"#{uiu.tm}\",\"display\":\"qrcode\",\"loopBlock\":1},\"9\":{\"text\":\"\"},\"10\":{\"text\":\"\"},\"11\":{\"text\":\"\"}},\"height\":42},\"3\":{\"cells\":{\"1\":{\"text\":\"年龄:\",\"style\":28,\"loopBlock\":1},\"2\":{\"style\":30,\"merge\":[0,1],\"loopBlock\":1,\"text\":\"#{uiu.age}\"},\"3\":{\"text\":\"\",\"loopBlock\":1},\"4\":{\"text\":\"学历:\",\"style\":29,\"loopBlock\":1},\"5\":{\"style\":30,\"merge\":[0,1],\"loopBlock\":1,\"text\":\"#{uiu.education}\"},\"6\":{\"text\":\"\",\"loopBlock\":1},\"7\":{\"text\":\"\",\"loopBlock\":1},\"9\":{\"text\":\"\"},\"10\":{\"text\":\"\"},\"15\":{\"text\":\"\"}},\"height\":35},\"4\":{\"cells\":{\"1\":{\"text\":\"性别:\",\"style\":28,\"loopBlock\":1},\"2\":{\"style\":30,\"merge\":[0,1],\"loopBlock\":1,\"text\":\"#{uiu.sex}\"},\"3\":{\"text\":\"\",\"loopBlock\":1},\"4\":{\"text\":\"薪水:\",\"style\":29,\"loopBlock\":1},\"5\":{\"style\":30,\"merge\":[0,1],\"loopBlock\":1,\"text\":\"#{uiu.salary}\"},\"6\":{\"text\":\"\",\"loopBlock\":1},\"7\":{\"text\":\"\",\"loopBlock\":1},\"9\":{\"text\":\"\"},\"10\":{\"text\":\"\"},\"12\":{\"text\":\"\"}},\"height\":35},\"5\":{\"cells\":{\"1\":{\"text\":\"\",\"loopBlock\":1},\"2\":{\"text\":\"\",\"loopBlock\":1},\"3\":{\"text\":\"\",\"loopBlock\":1},\"4\":{\"text\":\"\",\"loopBlock\":1},\"5\":{\"text\":\"\",\"loopBlock\":1},\"6\":{\"text\":\"\",\"loopBlock\":1},\"7\":{\"text\":\"\",\"loopBlock\":1},\"8\":{\"text\":\"\",\"rendered\":\"\",\"config\":\"\"},\"9\":{\"text\":\"\"}},\"height\":17},\"6\":{\"cells\":{\"11\":{\"text\":\"\"}}},\"7\":{\"cells\":{\"7\":{\"text\":\"\",\"rendered\":\"\",\"config\":\"\"},\"10\":{\"text\":\"\"}}},\"8\":{\"cells\":{\"6\":{\"text\":\"\",\"rendered\":\"\",\"config\":\"\"},\"7\":{\"text\":\"\",\"rendered\":\"\",\"config\":\"\"},\"8\":{\"text\":\"\",\"rendered\":\"\",\"config\":\"\"}}},\"10\":{\"cells\":{\"7\":{\"text\":\"\",\"rendered\":\"\",\"config\":\"\"}}},\"13\":{\"cells\":{\"8\":{\"text\":\"\",\"rendered\":\"\",\"config\":\"\"}}},\"len\":100},\"dbexps\":[],\"toolPrintSizeObj\":{\"printType\":\"A4\",\"widthPx\":718,\"heightPx\":1047},\"dicts\":[],\"rpbar\":{\"show\":true,\"pageSize\":\"\",\"btnList\":[]},\"freeze\":\"A1\",\"dataRectWidth\":688,\"displayConfig\":{\"1\":{\"text\":\"#{uiu.tm}\",\"width\":112,\"height\":112,\"colorDark\":\"#000000\",\"colorLight\":\"#ffffff\"},\"11\":{\"text\":\"#{uiu.tm}\",\"width\":117,\"height\":117,\"colorDark\":\"#000000\",\"colorLight\":\"#ffffff\"},\"111\":{\"barcodeContent\":\"dsad\",\"format\":\"CODE128\",\"width\":\"6\",\"height\":39,\"displayValue\":false,\"text\":\"jmreport\",\"fontOptions\":\"\",\"font\":\"monospace\",\"textAlign\":\"center\",\"textPosition\":\"bottom\",\"textMargin\":2,\"fontSize\":20,\"background\":\"#fff\",\"lineColor\":\"#000\",\"margin\":10,\"containerWidth\":100,\"contain
|
|
|
|
|
INSERT INTO `jimu_report` VALUES ('1351426064915763200', '20210119150810', '循环表头交叉分组报表', NULL, NULL, 'datainfo', '{\"loopBlockList\":[],\"area\":{\"sri\":2,\"sci\":1,\"eri\":3,\"eci\":2,\"width\":171,\"height\":56},\"excel_config_id\":\"1351426064915763200\",\"printConfig\":{\"paper\":\"A4\",\"width\":210,\"height\":297,\"definition\":1,\"isBackend\":false,\"marginX\":10,\"marginY\":10},\"zonedEditionList\":[],\"rows\":{\"1\":{\"cells\":{\"1\":{\"merge\":[0,5],\"text\":\"各个城市销售表\",\"style\":2}},\"height\":57},\"2\":{\"cells\":{\"1\":{\"text\":\"区域|售额额|时间\",\"lineStart\":\"lefttop\",\"rendered\":\"\",\"style\":43,\"merge\":[1,1],\"height\":56},\"3\":{\"text\":\"#{tt.groupRight(moth)}\",\"merge\":[0,3],\"aggregate\":\"group\",\"direction\":\"right\",\"style\":56}},\"height\":22},\"3\":{\"cells\":{\"3\":{\"text\":\"销售额\",\"style\":28},\"4\":{\"text\":\"捐赠\",\"style\":28},\"5\":{\"text\":\"比例\",\"style\":28},\"6\":{\"style\":28,\"text\":\"小计\"}},\"height\":34},\"4\":{\"cells\":{\"1\":{\"style\":34,\"text\":\"#{tt.group(region)}\",\"aggregate\":\"group\",\"rendered\":\"\"},\"2\":{\"text\":\"#{tt.group(province)}\",\"aggregate\":\"group\",\"style\":33},\"3\":{\"style\":57,\"text\":\"#{tt.dynamic(sales_1)}\",\"aggregate\":\"dynamic\",\"decimalPlaces\":\"0\"},\"4\":{\"style\":57,\"text\":\"#{tt.dynamic(gift_1)}\",\"aggregate\":\"dynamic\",\"decimalPlaces\":\"0\"},\"5\":{\"style\":32,\"text\":\"#{tt.dynamic(proportion_1)}\",\"aggregate\":\"dynamic\"},\"6\":{\"style\":57,\"text\":\"#{tt.dynamic(sales_1+gift_1)}\",\"aggregate\":\"dynamic\",\"rendered\":\"\",\"decimalPlaces\":\"0\"}},\"height\":37},\"5\":{\"cells\":{\"1\":{\"style\":47,\"text\":\"合计\",\"merge\":[0,1],\"height\":0},\"3\":{\"style\":48,\"text\":\"=SUM(D5)\"},\"4\":{\"style\":48,\"text\":\"=SUM(E5)\"},\"5\":{\"style\":48,\"text\":\" \"},\"6\":{\"style\":48,\"text\":\"=SUM(G5)\"},\"8\":{\"text\":\"\"}}},\"6\":{\"cells\":{\"6\":{\"text\":\"\",\"rendered\":\"\"},\"8\":{\"text\":\"\",\"rendered\":\"\"}}},\"7\":{\"cells\":{}},\"8\":{\"cells\":{\"1\":{\"text\":\"\",\"aggregate\":\"dynamic\"},\"2\":{\"text\":\"\"}}},\"9\":{\"cells\":{\"1\":{\"text\":\"\",\"aggregate\":\"dynamic\"},\"2\":{\"text\":\"\"},\"3\":{\"text\":\"\"},\"4\":{\"text\":\"\",\"rendered\":\"\",\"display\":\"normal\"},\"5\":{\"text\":\"\",\"rendered\":\"\"}}},\"10\":{\"cells\":{\"1\":{\"text\":\"\",\"aggregate\":\"dynamic\"},\"5\":{\"text\":\"\",\"rendered\":\"\"}}},\"11\":{\"cells\":{\"1\":{\"text\":\"\"},\"2\":{\"text\":\"\"},\"4\":{\"text\":\"\",\"rendered\":\"\"}}},\"12\":{\"cells\":{\"1\":{\"text\":\"\"},\"5\":{}}},\"13\":{\"cells\":{\"1\":{\"text\":\"\"},\"2\":{\"text\":\"\"}}},\"14\":{\"cells\":{\"2\":{\"text\":\"\"}}},\"16\":{\"cells\":{\"1\":{\"text\":\"\"}}},\"17\":{\"cells\":{\"1\":{\"text\":\"\",\"aggregate\":\"dynamic\"}}},\"len\":96},\"dbexps\":[],\"toolPrintSizeObj\":{\"printType\":\"A4\",\"widthPx\":718,\"heightPx\":1047},\"dicts\":[],\"rpbar\":{\"show\":true,\"pageSize\":\"\",\"btnList\":[]},\"groupField\":\"tt.region\",\"freeze\":\"A1\",\"dataRectWidth\":505,\"displayConfig\":{},\"background\":false,\"name\":\"sheet1\",\"autofilter\":{},\"styles\":[{\"font\":{\"size\":14}},{\"font\":{\"size\":14,\"bold\":true}},{\"font\":{\"size\":14,\"bold\":true},\"align\":\"center\"},{\"align\":\"center\"},{\"align\":\"center\",\"border\":{\"bottom\":[\"thin\",\"#d8d8d8\"],\"top\":[\"thin\",\"#d8d8d8\"],\"left\":[\"thin\",\"#d8d8d8\"],\"right\":[\"thin\",\"#d8d8d8\"]}},{\"border\":{\"bottom\":[\"thin\",\"#d8d8d8\"],\"top\":[\"thin\",\"#d8d8d8\"],\"left\":[\"thin\",\"#d8d8d8\"],\"right\":[\"thin\",\"#d8d8d8\"]}},{\"align\":\"center\",\"border\":{\"bottom\":[\"thin\",\"#d8d8d8\"],\"top\":[\"thin\",\"#d8d8d8\"],\"left\":[\"thin\",\"#d8d8d8\"],\"right\":[\"thin\",\"#d8d8d8\"]},\"bgcolor\":\"#02a274\"},{\"bgcolor\":\"#02a274\"},{\"border\":{\"bottom\":[\"thin\",\"#d8d8d8\"],\"top\":[\"thin\",\"#d8d8d8\"],\"left\":[\"thin\",\"#d8d8d8\"],\"right\":[\"thin\",\"#d8d8d8\"]},\"bgcolor\":\"#02a274\"},{\"bgcolor\":\"#02a274\",\"align\":\"center\"}
|
|
|
|
|
INSERT INTO `jimu_report` VALUES ('1351736257377603584', '20210120114031', 'API查询条件报表', NULL, NULL, 'datainfo', '{\"loopBlockList\":[],\"area\":false,\"printElWidth\":718,\"excel_config_id\":\"1351736257377603584\",\"printElHeight\":1047,\"rows\":{\"1\":{\"cells\":{\"1\":{\"text\":\"销售单\",\"merge\":[0,6],\"style\":8,\"decimalPlaces\":\"4\"},\"2\":{\"style\":8},\"3\":{\"style\":8},\"4\":{\"style\":8},\"5\":{\"style\":8},\"6\":{\"style\":8},\"7\":{\"style\":8},\"8\":{\"style\":5},\"9\":{\"style\":5},\"10\":{\"style\":5},\"11\":{\"style\":5},\"12\":{\"style\":5},\"13\":{\"style\":5},\"14\":{\"style\":5},\"15\":{\"style\":5},\"16\":{\"style\":5},\"17\":{\"style\":5},\"18\":{\"style\":5},\"19\":{\"style\":5},\"20\":{\"style\":5},\"21\":{\"style\":5},\"22\":{\"style\":5},\"23\":{\"style\":5},\"24\":{\"style\":5},\"25\":{\"style\":5}},\"height\":68},\"2\":{\"cells\":{\"1\":{\"text\":\"商品编码\",\"style\":15},\"2\":{\"text\":\"商品名称\",\"style\":15},\"3\":{\"text\":\"销售时间\",\"style\":15},\"4\":{\"text\":\"销售数据量\",\"style\":15},\"5\":{\"text\":\"定价\",\"style\":15},\"6\":{\"text\":\"优惠价\",\"style\":15},\"7\":{\"text\":\"付款金额\",\"style\":15},\"8\":{\"style\":5},\"9\":{\"style\":5},\"10\":{\"style\":5},\"11\":{\"style\":5},\"12\":{\"style\":5},\"13\":{\"style\":5},\"14\":{\"style\":5},\"15\":{\"style\":5},\"16\":{\"style\":5},\"17\":{\"style\":5},\"18\":{\"style\":5},\"19\":{\"style\":5},\"20\":{\"style\":5},\"21\":{\"style\":5},\"22\":{\"style\":5},\"23\":{\"style\":5},\"24\":{\"style\":5},\"25\":{\"style\":5}},\"height\":42},\"3\":{\"cells\":{\"1\":{\"style\":18,\"text\":\"#{xb.id}\"},\"2\":{\"style\":18,\"text\":\"#{xb.cname}\"},\"3\":{\"style\":18,\"text\":\"#{xb.riqi}\"},\"4\":{\"style\":18,\"text\":\"#{xb.dtotal}\"},\"5\":{\"style\":19,\"text\":\"#{xb.cprice}\",\"decimalPlaces\":\"4\"},\"6\":{\"style\":19,\"text\":\"#{xb.cprice}\",\"decimalPlaces\":\"1\"},\"7\":{\"style\":18,\"text\":\"#{xb.tp}\"},\"8\":{\"text\":\"\"}}},\"6\":{\"cells\":{\"2\":{\"text\":\"\"}}},\"7\":{\"cells\":{\"5\":{\"style\":17,\"text\":\" \"}}},\"8\":{\"cells\":{\"2\":{\"text\":\"\"}}},\"len\":98,\"-1\":{\"cells\":{\"-1\":{\"text\":\"#{xb.username}\"}}}},\"dbexps\":[],\"toolPrintSizeObj\":{\"printType\":\"A4\",\"widthPx\":718,\"heightPx\":1047},\"dicts\":[],\"freeze\":\"A1\",\"dataRectWidth\":692,\"displayConfig\":{},\"background\":false,\"name\":\"sheet1\",\"autofilter\":{},\"styles\":[{\"border\":{\"bottom\":[\"thin\",\"#000\"],\"top\":[\"thin\",\"#000\"],\"left\":[\"thin\",\"#000\"],\"right\":[\"thin\",\"#000\"]}},{\"border\":{\"bottom\":[\"thin\",\"#000\"],\"top\":[\"thin\",\"#000\"],\"left\":[\"thin\",\"#000\"],\"right\":[\"thin\",\"#000\"]},\"align\":\"center\"},{\"border\":{\"bottom\":[\"thin\",\"#000\"],\"top\":[\"thin\",\"#000\"],\"left\":[\"thin\",\"#000\"],\"right\":[\"thin\",\"#000\"]},\"align\":\"center\",\"bgcolor\":\"#5b9cd6\"},{\"font\":{\"size\":18}},{\"font\":{\"size\":18,\"bold\":true}},{\"align\":\"center\"},{\"font\":{\"size\":18,\"bold\":true},\"align\":\"center\"},{\"align\":\"center\",\"bgcolor\":\"#5b9cd6\"},{\"font\":{\"size\":18,\"bold\":true,\"name\":\"宋体\"},\"align\":\"center\"},{\"align\":\"center\",\"bgcolor\":\"#5b9cd6\",\"font\":{\"name\":\"宋体\"}},{\"font\":{\"name\":\"宋体\"}},{\"align\":\"center\",\"bgcolor\":\"#5b9cd6\",\"font\":{\"name\":\"宋体\"},\"color\":\"#ffffff\"},{\"align\":\"center\",\"bgcolor\":\"#5b9cd6\",\"font\":{\"name\":\"宋体\"},\"color\":\"#ffffff\",\"border\":{\"bottom\":[\"thin\",\"#5b9cd6\"],\"top\":[\"thin\",\"#5b9cd6\"],\"left\":[\"thin\",\"#5b9cd6\"],\"right\":[\"thin\",\"#5b9cd6\"]}},{\"font\":{\"name\":\"宋体\"},\"border\":{\"bottom\":[\"thin\",\"#5b9cd6\"],\"top\":[\"thin\",\"#5b9cd6\"],\"left\":[\"thin\",\"#5b9cd6\"],\"right\":[\"thin\",\"#5b9cd6\"]}},{\"border\":{\"bottom\":[\"thin\",\"#bfbfbf\"],\"top\":[\"thin\",\"#bfbfbf\"],\"left\":[\"thin\",\"#bfbfbf\"],\"right\":[\"thin\",\"#bfbfbf\"]}},{\"align\":\"center\",\"bgcolor\":\"#5b9cd6\",\"font\":{\"name\":\"宋体\"},\"color\":\"#ffffff\",\"border\":{\"bottom\
|
|
|
|
|
INSERT INTO `jimu_report` VALUES ('1354358750907076608', '20210127172112', '多级循环表头报表', NULL, NULL, 'datainfo', '{\"loopBlockList\":[],\"printConfig\":{\"paper\":\"A4\",\"width\":210,\"height\":297,\"definition\":1,\"isBackend\":false,\"marginX\":10,\"marginY\":10},\"dbexps\":[],\"toolPrintSizeObj\":{\"printType\":\"A4\",\"widthPx\":718,\"heightPx\":1047},\"dicts\":[],\"freeze\":\"A1\",\"dataRectWidth\":306,\"autofilter\":{},\"validations\":[],\"cols\":{\"0\":{\"width\":36},\"1\":{\"width\":87},\"2\":{\"width\":80},\"3\":{\"width\":103},\"len\":50},\"area\":{\"sri\":1,\"sci\":3,\"eri\":1,\"eci\":3,\"width\":103,\"height\":40},\"excel_config_id\":\"1354358750907076608\",\"zonedEditionList\":[],\"rows\":{\"0\":{\"cells\":{\"0\":{\"text\":\"\",\"rendered\":\"\"},\"1\":{\"text\":\"各地区商品销售额一栏表\",\"merge\":[0,2],\"style\":6}},\"height\":83},\"1\":{\"cells\":{\"1\":{\"text\":\"地区|销量|时间\",\"style\":2,\"lineStart\":\"lefttop\",\"rendered\":\"\",\"merge\":[1,1],\"height\":74},\"3\":{\"style\":30,\"text\":\"#{xs.groupRight(year)}年\",\"aggregate\":\"group\",\"direction\":\"right\"}},\"height\":40},\"2\":{\"cells\":{\"3\":{\"style\":8,\"text\":\"#{xs.groupRight(mouth)}\",\"aggregate\":\"group\",\"direction\":\"right\"}},\"height\":34},\"3\":{\"cells\":{\"1\":{\"text\":\"#{xs.group(diqu)}\",\"style\":28,\"aggregate\":\"group\"},\"2\":{\"style\":28,\"text\":\"#{xs.group(class)}\",\"aggregate\":\"group\"},\"3\":{\"style\":29,\"text\":\"#{xs.dynamic(sales)}\",\"aggregate\":\"dynamic\",\"rendered\":\"\",\"decimalPlaces\":\"0\"}},\"height\":38},\"4\":{\"cells\":{\"1\":{\"style\":24,\"text\":\"总计\",\"merge\":[0,1]},\"3\":{\"style\":25,\"text\":\"=SUM(D4)\"}},\"height\":37},\"8\":{\"cells\":{\"1\":{}}},\"10\":{\"cells\":{\"1\":{}}},\"len\":100},\"rpbar\":{\"show\":true,\"pageSize\":\"\",\"btnList\":[]},\"groupField\":\"xs.diqu\",\"fixedPrintHeadRows\":[],\"fixedPrintTailRows\":[],\"displayConfig\":{},\"background\":false,\"name\":\"sheet1\",\"styles\":[{\"bgcolor\":\"#5b9cd6\"},{\"bgcolor\":\"#5b9cd6\",\"color\":\"#ffffff\"},{\"bgcolor\":\"#5b9cd6\",\"color\":\"#ffffff\",\"border\":{\"bottom\":[\"thin\",\"#d8d8d8\"],\"top\":[\"thin\",\"#d8d8d8\"],\"left\":[\"thin\",\"#d8d8d8\"],\"right\":[\"thin\",\"#d8d8d8\"]}},{\"border\":{\"bottom\":[\"thin\",\"#d8d8d8\"],\"top\":[\"thin\",\"#d8d8d8\"],\"left\":[\"thin\",\"#d8d8d8\"],\"right\":[\"thin\",\"#d8d8d8\"]}},{\"font\":{\"size\":16}},{\"font\":{\"size\":16,\"bold\":true}},{\"font\":{\"size\":16,\"bold\":true},\"align\":\"center\"},{\"border\":{\"bottom\":[\"thin\",\"#d8d8d8\"],\"top\":[\"thin\",\"#d8d8d8\"],\"left\":[\"thin\",\"#d8d8d8\"],\"right\":[\"thin\",\"#d8d8d8\"]},\"align\":\"center\"},{\"bgcolor\":\"#5b9cd6\",\"color\":\"#ffffff\",\"border\":{\"bottom\":[\"thin\",\"#d8d8d8\"],\"top\":[\"thin\",\"#d8d8d8\"],\"left\":[\"thin\",\"#d8d8d8\"],\"right\":[\"thin\",\"#d8d8d8\"]},\"align\":\"center\"},{\"bgcolor\":\"#9cc2e6\"},{\"bgcolor\":\"#9cc2e6\",\"align\":\"center\"},{\"align\":\"center\"},{\"bgcolor\":\"#9cc2e6\",\"format\":\"number\"},{\"bgcolor\":\"#9cc2e6\",\"format\":\"number\",\"align\":\"center\"},{\"border\":{\"bottom\":[\"thin\",\"#d8d8d8\"],\"top\":[\"thin\",\"#d8d8d8\"],\"left\":[\"thin\",\"#d8d8d8\"],\"right\":[\"thin\",\"#d8d8d8\"]},\"align\":\"center\",\"font\":{\"size\":9}},{\"bgcolor\":\"#5b9cd6\",\"color\":\"#ffffff\",\"border\":{\"bottom\":[\"thin\",\"#000\"],\"top\":[\"thin\",\"#000\"],\"left\":[\"thin\",\"#000\"],\"right\":[\"thin\",\"#000\"]}},{\"bgcolor\":\"#5b9cd6\",\"color\":\"#ffffff\",\"align\":\"center\"},{\"bgcolor\":\"#5b9cd6\",\"color\":\"#ffffff\",\"align\":\"center\",\"border\":{\"bottom\":[\"thin\",\"#000\"],\"top\":[\"thin\",\"#000\"],\"left\":[\"thin\",\"#000\"],\"right\":[\"thin\",\"#000\"]}},{\"border\":{\"bottom\":[\"thin\",\"#000\"],\"top\":[\"thin\",\"#000\"],\"left\":[\"thin\",\"#000\"],\"right\":[\"thin\",\"#000\"]},\"align\":\"center\",\"font\":{\"size\":9}},{\"bgcolor\":\"#9cc2e6\",\"align\":\"center\",\"border\":{\"bottom\":[\"thin\",\"#000\"],\"top\":[\"thin\",\"#000\"],\"left\":[\"thin\",\
|
|
|
|
|
INSERT INTO `jimu_report` VALUES ('1356492523694067712', '20210202144134', '基本图形示例', NULL, NULL, 'chartinfo', '{\"loopBlockList\":[],\"chartList\":[{\"row\":1,\"col\":1,\"colspan\":5,\"rowspan\":8,\"width\":\"478\",\"height\":\"247\",\"config\":\"{\\\"yAxis\\\":{\\\"axisLabel\\\":{\\\"textStyle\\\":{\\\"color\\\":\\\"#333\\\",\\\"fontSize\\\":\\\"10\\\"}},\\\"axisLine\\\":{\\\"lineStyle\\\":{\\\"color\\\":\\\"#333\\\"}},\\\"show\\\":true,\\\"splitLine\\\":{\\\"lineStyle\\\":{\\\"color\\\":\\\"red\\\",\\\"width\\\":1,\\\"type\\\":\\\"solid\\\"},\\\"show\\\":false},\\\"type \\\":\\\"value\\\"},\\\"xAxis\\\":{\\\"splitLine\\\":{\\\"lineStyle\\\":{\\\"color\\\":\\\"red\\\",\\\"width\\\":1,\\\"type\\\":\\\"solid\\\"},\\\"show\\\":false},\\\"axisLabel\\\":{\\\"textStyle\\\":{\\\"color\\\":\\\"#333\\\",\\\"fontSize\\\":\\\"10\\\"},\\\"rotate\\\":0,\\\"interval\\\":0},\\\"axisLine\\\":{\\\"lineStyle\\\":{\\\"color\\\":\\\"#333\\\"}},\\\"data\\\":[\\\"周一\\\",\\\"周二\\\",\\\"周三\\\",\\\"周四\\\",\\\"周五\\\",\\\"周六\\\",\\\"周日\\\"],\\\"show\\\":true,\\\"type\\\":\\\"category\\\"},\\\"legend\\\":{\\\"textStyle\\\":{\\\"color\\\":\\\"#333\\\",\\\"fontSize\\\":\\\"10\\\"},\\\"top\\\":\\\"top\\\",\\\"left\\\":\\\"right\\\",\\\"orient\\\":\\\"horizontal\\\",\\\"padding\\\":[25,20,25,10],\\\"data\\\":[\\\"直接访问\\\",\\\"邮件营销\\\",\\\"联盟广告\\\"],\\\"show\\\":true},\\\"grid\\\":{\\\"top\\\":50,\\\"left\\\":38,\\\"bottom\\\":33,\\\"right\\\":23},\\\"series\\\":[{\\\"barWidth\\\":8,\\\"data\\\":[320,332,301,334,390,330,320],\\\"name\\\":\\\"直接访问\\\",\\\"itemStyle\\\":{\\\"barBorderRadius\\\":0,\\\"color\\\":\\\"#63b2ee\\\"},\\\"label\\\":{\\\"textStyle\\\":{\\\"color\\\":\\\"black\\\",\\\"fontSize\\\":16,\\\"fontWeight\\\":\\\"bolder\\\"},\\\"position\\\":\\\"top\\\",\\\"show\\\":false},\\\"type\\\":\\\"bar\\\",\\\"barMinHeight\\\":2,\\\"textStyle\\\":{\\\"color\\\":\\\"black\\\",\\\"fontWeight\\\":\\\"bolder\\\"}},{\\\"barWidth\\\":8,\\\"data\\\":[120,132,101,134,90,230,210],\\\"name\\\":\\\"邮件营销\\\",\\\"itemStyle\\\":{\\\"barBorderRadius\\\":0,\\\"color\\\":\\\"#eddd86\\\"},\\\"label\\\":{\\\"textStyle\\\":{\\\"color\\\":\\\"black\\\",\\\"fontSize\\\":16,\\\"fontWeight\\\":\\\"bolder\\\"},\\\"position\\\":\\\"top\\\",\\\"show\\\":false},\\\"type\\\":\\\"bar\\\",\\\"barMinHeight\\\":2,\\\"textStyle\\\":{\\\"color\\\":\\\"black\\\",\\\"fontWeight\\\":\\\"bolder\\\"}},{\\\"barWidth\\\":8,\\\"data\\\":[220,182,191,234,290,330,310],\\\"name\\\":\\\"联盟广告\\\",\\\"itemStyle\\\":{\\\"barBorderRadius\\\":0,\\\"color\\\":\\\"#76da91\\\"},\\\"label\\\":{\\\"textStyle\\\":{\\\"color\\\":\\\"black\\\",\\\"fontSize\\\":16,\\\"fontWeight\\\":\\\"bolder\\\"},\\\"position\\\":\\\"top\\\",\\\"show\\\":false},\\\"type\\\":\\\"bar\\\",\\\"barMinHeight\\\":2,\\\"textStyle\\\":{\\\"color\\\":\\\"black\\\",\\\"fontWeight\\\":\\\"bolder\\\"}}],\\\"tooltip\\\":{\\\"textStyle\\\":{\\\"color\\\":\\\"#fff\\\",\\\"fontSize\\\":\\\"10\\\"},\\\"show\\\":true,\\\"axisPointer\\\":{\\\"type\\\":\\\"shadow\\\"},\\\"trigger\\\":\\\"axis\\\"},\\\"title\\\":{\\\"show\\\":true,\\\"top\\\":5,\\\"text\\\":\\\"多数据对比柱形图\\\",\\\"textStyle\\\":{\\\"color\\\":\\\"#000000\\\",\\\"fontWeight\\\":\\\"bolder\\\",\\\"fontSize\\\":\\\"12\\\"},\\\"left\\\":\\\"left\\\",\\\"padding\\\":[5,20,5,20]}}\",\"url\":\"\",\"extData\":{\"chartId\":\"bar.multi\",\"chartType\":\"bar.multi\"},\"layer_id\":\"gcqy2xAR9FYjBqX1\",\"offsetX\":0,\"offsetY\":0,\"backgroud\":{\"enabled\":false,\"color\":\"#fff\",\"image\":\"\"},\"virtualCellRange\":[[1,1],[1,2],[1,3],[1,4],[1,5]]},{\"row\":1,\"col\":13,\"colspan\":5,\"rowspan\":8,\"width\":\"448\",\"height\":\"247\",\"config\":\"{\\\"yAxis\\\":{\\\"axisLabel\\\":{\\\"rotate\\\":0,\\\"interval\\\":0,\\\"textStyle\\\":{\\\"color\\\":\\\"#333\\\",\\\"fontSize\\\":\\\"10\\\"}},\\\"data\\\":[\\\"周一\\\",\\\"周二\\\",\\\"周三\\\",\\\"周四\\\",\\\"周五\\\",\\\"周六\\\",\\\"周日\\\"],\\\"axisLine\\\":{\\\"lineStyle\\\":{\\\"color\\\":\\\"#333\\\"}},\\\"show\\\":t
|
|
|
|
|
INSERT INTO `jimu_report` VALUES ('1369170965166166016', '20210309142400', '简单分组报表', NULL, NULL, 'datainfo', '{\"loopBlockList\":[],\"area\":false,\"excel_config_id\":\"1369170965166166016\",\"printConfig\":{\"paper\":\"A4\",\"width\":210,\"height\":297,\"definition\":4,\"isBackend\":false,\"marginX\":10,\"marginY\":10,\"layout\":\"portrait\"},\"rows\":{\"1\":{\"cells\":{\"1\":{\"height\":0,\"text\":\"纵向员工信息登记表\",\"style\":2,\"merge\":[0,5]}},\"height\":40},\"2\":{\"cells\":{\"1\":{\"text\":\"部门\",\"style\":15},\"2\":{\"text\":\"学历\",\"style\":15},\"3\":{\"text\":\"性别\",\"style\":15},\"4\":{\"text\":\"年龄\",\"style\":15},\"5\":{\"text\":\"姓名\",\"style\":15},\"6\":{\"text\":\"薪水\",\"style\":15}},\"height\":34},\"3\":{\"cells\":{\"1\":{\"style\":17,\"text\":\"#{tt.group(department)}\",\"aggregate\":\"group\"},\"2\":{\"style\":17,\"text\":\"#{tt.group(education)}\",\"aggregate\":\"group\"},\"3\":{\"style\":17,\"text\":\"#{tt.sex}\"},\"4\":{\"style\":17,\"text\":\"#{tt.age}\"},\"5\":{\"style\":17,\"text\":\"#{tt.name}\"},\"6\":{\"style\":17,\"text\":\"#{tt.salary}\"}},\"height\":54},\"len\":100},\"dbexps\":[],\"dicts\":[],\"groupField\":\"tt.department\",\"freeze\":\"A1\",\"displayConfig\":{},\"background\":false,\"name\":\"sheet1\",\"autofilter\":{},\"styles\":[{\"font\":{\"bold\":true}},{\"font\":{\"bold\":true,\"size\":16}},{\"font\":{\"bold\":true,\"size\":16},\"align\":\"center\"},{\"align\":\"center\"},{\"align\":\"center\",\"bgcolor\":\"#5b9cd6\"},{\"align\":\"center\",\"bgcolor\":\"#5b9cd6\",\"color\":\"#ffffff\"},{\"align\":\"center\",\"bgcolor\":\"#5b9cd6\",\"color\":\"#ffffff\",\"border\":{\"bottom\":[\"thin\",\"#000\"],\"top\":[\"thin\",\"#000\"],\"left\":[\"thin\",\"#000\"],\"right\":[\"thin\",\"#000\"]}},{\"border\":{\"bottom\":[\"thin\",\"#000\"],\"top\":[\"thin\",\"#000\"],\"left\":[\"thin\",\"#000\"],\"right\":[\"thin\",\"#000\"]}},{\"align\":\"center\",\"bgcolor\":\"#5b9cd6\",\"color\":\"#ffffff\",\"border\":{\"bottom\":[\"thin\",\"#bfbfbf\"],\"top\":[\"thin\",\"#bfbfbf\"],\"left\":[\"thin\",\"#bfbfbf\"],\"right\":[\"thin\",\"#bfbfbf\"]}},{\"border\":{\"bottom\":[\"thin\",\"#bfbfbf\"],\"top\":[\"thin\",\"#bfbfbf\"],\"left\":[\"thin\",\"#bfbfbf\"],\"right\":[\"thin\",\"#bfbfbf\"]}},{\"align\":\"center\",\"bgcolor\":\"#5b9cd6\",\"color\":\"#ffffff\",\"border\":{\"bottom\":[\"thin\",\"#9cc2e6\"],\"top\":[\"thin\",\"#9cc2e6\"],\"left\":[\"thin\",\"#9cc2e6\"],\"right\":[\"thin\",\"#9cc2e6\"]}},{\"border\":{\"bottom\":[\"thin\",\"#9cc2e6\"],\"top\":[\"thin\",\"#9cc2e6\"],\"left\":[\"thin\",\"#9cc2e6\"],\"right\":[\"thin\",\"#9cc2e6\"]}},{\"align\":\"center\",\"bgcolor\":\"#bdd7ee\",\"color\":\"#ffffff\",\"border\":{\"bottom\":[\"thin\",\"#9cc2e6\"],\"top\":[\"thin\",\"#9cc2e6\"],\"left\":[\"thin\",\"#9cc2e6\"],\"right\":[\"thin\",\"#9cc2e6\"]}},{\"align\":\"center\",\"bgcolor\":\"#bdd7ee\",\"color\":\"#000100\",\"border\":{\"bottom\":[\"thin\",\"#9cc2e6\"],\"top\":[\"thin\",\"#9cc2e6\"],\"left\":[\"thin\",\"#9cc2e6\"],\"right\":[\"thin\",\"#9cc2e6\"]}},{\"align\":\"center\",\"bgcolor\":\"#9cc2e6\",\"color\":\"#000100\",\"border\":{\"bottom\":[\"thin\",\"#9cc2e6\"],\"top\":[\"thin\",\"#9cc2e6\"],\"left\":[\"thin\",\"#9cc2e6\"],\"right\":[\"thin\",\"#9cc2e6\"]}},{\"align\":\"center\",\"bgcolor\":\"#9cc2e6\",\"color\":\"#000100\",\"border\":{\"bottom\":[\"thin\",\"#5b9cd6\"],\"top\":[\"thin\",\"#5b9cd6\"],\"left\":[\"thin\",\"#5b9cd6\"],\"right\":[\"thin\",\"#5b9cd6\"]}},{\"border\":{\"bottom\":[\"thin\",\"#5b9cd6\"],\"top\":[\"thin\",\"#5b9cd6\"],\"left\":[\"thin\",\"#5b9cd6\"],\"right\":[\"thin\",\"#5b9cd6\"]}},{\"border\":{\"bottom\":[\"thin\",\"#5b9cd6\"],\"top\":[\"thin\",\"#5b9cd6\"],\"left\":[\"thin\",\"#5b9cd6\"],\"right\":[\"thin\",\"#5b9cd6\"]},\"align\":\"center\"}],\"validations\":[],\"isGroup\":true,\"cols\":{\"0\":{\"width\":34},\"1\":{\"width\":119},\"3\":{\"width\":117},\"6\":{\"width\":117},\"7\":{\"width\":22},\"len\":100},\"merges\":[\"B2:G2\"]}', NULL, 'https://static.jeecg.com/designreport/images/QQ截图20210309142558_1615271174044.png', 'ad
|
|
|
|
|
INSERT INTO `jimu_report` VALUES ('519c1c6f4d1f584ae8fa5b43b45acdc7', '56623333333', '销售单', '', NULL, 'printinfo', '{\"loopBlockList\":[],\"area\":{\"sri\":2,\"sci\":7,\"eri\":2,\"eci\":7,\"width\":88,\"height\":32},\"excel_config_id\":\"519c1c6f4d1f584ae8fa5b43b45acdc7\",\"printConfig\":{\"paper\":\"A4\",\"width\":210,\"height\":297,\"definition\":1,\"isBackend\":false,\"marginX\":10,\"marginY\":10},\"rows\":{\"0\":{\"cells\":{\"1\":{\"text\":\"销售单\",\"style\":40,\"merge\":[0,6],\"loopBlock\":0},\"2\":{\"style\":41,\"loopBlock\":0},\"3\":{\"style\":41,\"loopBlock\":0},\"4\":{\"style\":41,\"loopBlock\":0},\"5\":{\"style\":41,\"loopBlock\":0},\"6\":{\"style\":41,\"loopBlock\":0},\"7\":{\"style\":41,\"loopBlock\":0}},\"height\":86},\"1\":{\"cells\":{\"1\":{\"text\":\"商品编码\",\"style\":65,\"rendered\":\"\",\"loopBlock\":1},\"2\":{\"text\":\"商品名称\",\"style\":65,\"loopBlock\":1},\"3\":{\"text\":\"销售时间\",\"style\":65,\"loopBlock\":1},\"4\":{\"text\":\"销售数量\",\"style\":65,\"loopBlock\":1},\"5\":{\"text\":\"定价\",\"style\":65,\"loopBlock\":1},\"6\":{\"text\":\"优惠价\",\"style\":65,\"loopBlock\":1},\"7\":{\"text\":\"付款金额\",\"style\":65,\"loopBlock\":1}},\"height\":33},\"2\":{\"cells\":{\"1\":{\"text\":\"#{xiaoshou.bianma}\",\"style\":66,\"loopBlock\":1},\"2\":{\"text\":\"#{xiaoshou.cname}\",\"style\":66,\"loopBlock\":1},\"3\":{\"text\":\"#{xiaoshou.ctime}\",\"style\":67,\"loopBlock\":1},\"4\":{\"text\":\"#{xiaoshou.cnum}\",\"style\":66,\"loopBlock\":1},\"5\":{\"text\":\"#{xiaoshou.cprice}\",\"style\":66,\"loopBlock\":1},\"6\":{\"text\":\"#{xiaoshou.yprice}\",\"style\":66,\"loopBlock\":1},\"7\":{\"text\":\"#{xiaoshou.ctotal}\",\"style\":68,\"rendered\":\"\",\"decimalPlaces\":\"0\",\"loopBlock\":1}},\"isDrag\":true,\"height\":32},\"3\":{\"cells\":{\"1\":{\"style\":44,\"text\":\"\",\"loopBlock\":1},\"2\":{\"style\":44,\"loopBlock\":1},\"3\":{\"style\":44,\"loopBlock\":1},\"4\":{\"style\":44,\"loopBlock\":1},\"5\":{\"style\":44,\"text\":\"\",\"loopBlock\":1},\"6\":{\"text\":\"\",\"style\":45,\"loopBlock\":1},\"7\":{\"style\":46,\"text\":\"=SUM(H3)\",\"loopBlock\":1}},\"isDrag\":true,\"height\":73},\"4\":{\"cells\":{\"1\":{\"text\":\"\",\"loopBlock\":1},\"2\":{\"text\":\"\",\"loopBlock\":1},\"3\":{\"text\":\"\",\"loopBlock\":1},\"4\":{\"text\":\"\",\"loopBlock\":1},\"5\":{\"text\":\"\",\"loopBlock\":1},\"6\":{\"text\":\"\",\"loopBlock\":1},\"7\":{\"text\":\"\",\"loopBlock\":1}}},\"5\":{\"cells\":{},\"isDrag\":true},\"6\":{\"cells\":{\"9\":{\"text\":\"\",\"decimalPlaces\":\"\"}},\"isDrag\":true},\"7\":{\"cells\":{\"2\":{\"text\":\"\",\"aggregate\":\"group\",\"direction\":\"right\"}},\"isDrag\":true},\"8\":{\"cells\":{\"7\":{\"text\":\"\",\"decimalPlaces\":\"\"}}},\"9\":{\"cells\":{\"10\":{\"text\":\"\",\"decimalPlaces\":\"\"}}},\"len\":100},\"dbexps\":[],\"toolPrintSizeObj\":{\"printType\":\"A4\",\"widthPx\":718,\"heightPx\":1047},\"dicts\":[],\"freeze\":\"A1\",\"dataRectWidth\":704,\"displayConfig\":{},\"background\":false,\"name\":\"sheet1\",\"autofilter\":{},\"styles\":[{\"align\":\"center\"},{\"align\":\"center\",\"color\":\"#000100\"},{\"align\":\"center\",\"color\":\"#000100\",\"border\":{\"bottom\":[\"thin\",\"#000\"],\"top\":[\"thin\",\"#000\"],\"left\":[\"thin\",\"#000\"],\"right\":[\"thin\",\"#000\"]}},{\"align\":\"center\",\"color\":\"#000100\",\"border\":{\"bottom\":[\"thin\",\"#01b0f1\"],\"top\":[\"thin\",\"#01b0f1\"],\"left\":[\"thin\",\"#01b0f1\"],\"right\":[\"thin\",\"#01b0f1\"]}},{\"border\":{\"bottom\":[\"thin\",\"#01b0f1\"],\"top\":[\"thin\",\"#01b0f1\"],\"left\":[\"thin\",\"#01b0f1\"],\"right\":[\"thin\",\"#01b0f1\"]}},{\"align\":\"center\",\"color\":\"#000100\",\"border\":{\"bottom\":[\"thin\",\"#01b0f1\"],\"top\":[\"thin\",\"#01b0f1\"],\"left\":[\"thin\",\"#01b0f1\"],\"right\":[\"thin\",\"#01b0f1\"]},\"bgcolor\":\"#01b0f1\"},{\"align\":\"center\",\"color\":\"#000100\",\"border\":{\"bottom\":[\"thin\",\"#5b9cd6\"],\"top\":[\"thin\",\"#5b9cd6\"],\"left\":[\"thin\",\"#5b9cd6\"],\"right\":[\"thin\",\"#5b9cd6\"]},\"bgcolor\":\"#01b0f1\"},{\"border\":{\"bottom\"
|
|
|
|
|
INSERT INTO `jimu_report` VALUES ('537516331017523200', '202101201140313273', '主子报表', NULL, NULL, 'datainfo', '{\"loopBlockList\":[],\"area\":false,\"excel_config_id\":\"537516331017523200\",\"printConfig\":{\"paper\":\"A4\",\"width\":210,\"height\":297,\"definition\":1,\"isBackend\":false,\"marginX\":10,\"marginY\":10},\"rows\":{\"0\":{\"cells\":{\"1\":{\"merge\":[0,6],\"height\":0,\"text\":\"订货商信息\",\"style\":8}},\"height\":57},\"1\":{\"cells\":{\"1\":{\"text\":\"订单编号:\",\"style\":10},\"2\":{\"merge\":[0,2],\"height\":0,\"style\":42,\"text\":\"${gg.dgoodscode}\"}},\"height\":34},\"2\":{\"cells\":{\"1\":{\"text\":\"订单地址:\",\"style\":10},\"2\":{\"merge\":[0,1],\"height\":0,\"style\":42,\"text\":\"${gg.daddress}\"},\"4\":{\"text\":\"订单日期:\",\"style\":10},\"5\":{\"merge\":[0,1],\"height\":0,\"style\":42,\"text\":\"${gg.darrivaldate}\"}},\"height\":34},\"3\":{\"cells\":{\"1\":{\"text\":\"订单姓名:\",\"style\":10},\"2\":{\"merge\":[0,1],\"height\":0,\"style\":42,\"text\":\"${gg.dname}\"},\"4\":{\"text\":\"到货日期:\",\"style\":10},\"5\":{\"merge\":[0,1],\"height\":0,\"style\":42,\"text\":\"${gg.dgoodsdate}\"}},\"height\":31},\"5\":{\"cells\":{\"1\":{\"text\":\"订单详情\",\"merge\":[0,6],\"style\":31,\"decimalPlaces\":\"4\"},\"2\":{},\"3\":{},\"4\":{},\"5\":{},\"6\":{},\"7\":{}},\"height\":51},\"6\":{\"cells\":{\"1\":{\"text\":\"商品编码\",\"style\":15},\"2\":{\"text\":\"商品名称\",\"style\":15},\"3\":{\"text\":\"销售时间\",\"style\":15},\"4\":{\"text\":\"销售数据量\",\"style\":15},\"5\":{\"text\":\"定价\",\"style\":15},\"6\":{\"text\":\"优惠价\",\"style\":15},\"7\":{\"text\":\"付款金额\",\"style\":15}},\"height\":42},\"7\":{\"cells\":{\"1\":{\"style\":18,\"text\":\"#{xb.id}\"},\"2\":{\"style\":18,\"text\":\"#{xb.cname}\"},\"3\":{\"style\":18,\"text\":\"#{xb.riqi}\"},\"4\":{\"style\":18,\"text\":\"#{xb.dtotal}\"},\"5\":{\"style\":19,\"text\":\"#{xb.cprice}\",\"decimalPlaces\":\"4\"},\"6\":{\"style\":19,\"text\":\"#{xb.cprice}\",\"decimalPlaces\":\"1\"},\"7\":{\"style\":18,\"text\":\"#{xb.tp}\"},\"8\":{\"text\":\"\"}}},\"10\":{\"cells\":{\"1\":{\"style\":39,\"text\":\"备注:\"},\"2\":{\"text\":\" \",\"style\":33},\"3\":{\"style\":33,\"text\":\" \"},\"4\":{\"style\":33,\"text\":\" \"},\"5\":{\"style\":33,\"text\":\" \"},\"6\":{\"style\":33,\"text\":\" \"},\"7\":{\"style\":34,\"text\":\" \"}}},\"11\":{\"cells\":{\"1\":{\"style\":41,\"text\":\"1、查看信息,在浏览器输入“?did=1”或“?did=2”\",\"merge\":[0,6],\"height\":0}},\"height\":37},\"12\":{\"cells\":{\"1\":{\"style\":35,\"text\":\" \"},\"2\":{\"text\":\" \"},\"7\":{\"style\":36,\"text\":\" \"}}},\"13\":{\"cells\":{\"1\":{\"style\":37,\"text\":\" \"},\"2\":{\"style\":28,\"text\":\" \"},\"3\":{\"style\":28,\"text\":\" \"},\"4\":{\"style\":28,\"text\":\" \"},\"5\":{\"style\":28,\"text\":\" \"},\"6\":{\"style\":28,\"text\":\" \"},\"7\":{\"style\":38,\"text\":\" \"}}},\"len\":102,\"-1\":{\"cells\":{\"-1\":{\"text\":\"#{xb.username}\"}}}},\"dbexps\":[],\"toolPrintSizeObj\":{\"printType\":\"A4\",\"widthPx\":718,\"heightPx\":1047},\"dicts\":[],\"freeze\":\"A1\",\"dataRectWidth\":682,\"displayConfig\":{},\"background\":false,\"name\":\"sheet1\",\"autofilter\":{},\"styles\":[{\"border\":{\"bottom\":[\"thin\",\"#000\"],\"top\":[\"thin\",\"#000\"],\"left\":[\"thin\",\"#000\"],\"right\":[\"thin\",\"#000\"]}},{\"border\":{\"bottom\":[\"thin\",\"#000\"],\"top\":[\"thin\",\"#000\"],\"left\":[\"thin\",\"#000\"],\"right\":[\"thin\",\"#000\"]},\"align\":\"center\"},{\"border\":{\"bottom\":[\"thin\",\"#000\"],\"top\":[\"thin\",\"#000\"],\"left\":[\"thin\",\"#000\"],\"right\":[\"thin\",\"#000\"]},\"align\":\"center\",\"bgcolor\":\"#5b9cd6\"},{\"font\":{\"size\":18}},{\"font\":{\"size\":18,\"bold\":true}},{\"align\":\"center\"},{\"font\":{\"size\":18,\"bold\":true},\"align\":\"center\"},{\"align\":\"center\",\"bgcolor\":\"#5b9cd6\"},{\"font\":{\"size\":18,\"bold\":true,\"name\":\"宋体\"},\"align\":\"center\"},{\"align\":\"center\",\"bgcolor\":\"#5b9cd6\",\"font\":{\"name\":\"宋体\"}
|
|
|
|
|
INSERT INTO `jimu_report` VALUES ('537521675550674944', '20201215151426612466731464', '数据联动报表', NULL, NULL, 'datainfo', '{\"loopBlockList\":[],\"printConfig\":{\"paper\":\"A4\",\"width\":210,\"height\":297,\"definition\":1,\"isBackend\":false,\"marginX\":0,\"marginY\":10,\"layout\":\"portrait\"},\"dbexps\":[],\"dicts\":[],\"freeze\":\"A1\",\"dataRectWidth\":2571,\"autofilter\":{},\"validations\":[],\"cols\":{\"0\":{\"width\":48},\"1\":{\"width\":107},\"2\":{\"width\":99},\"3\":{\"width\":133},\"4\":{\"width\":96},\"5\":{\"width\":130},\"6\":{\"width\":119},\"7\":{\"width\":235},\"8\":{\"width\":124},\"9\":{\"width\":148},\"10\":{\"width\":132},\"23\":{\"width\":344},\"len\":50},\"chartList\":[{\"row\":1,\"col\":8,\"colspan\":0,\"rowspan\":0,\"width\":\"504\",\"height\":\"276\",\"config\":\"{\\\"yAxis\\\":{\\\"axisLabel\\\":{\\\"textStyle\\\":{\\\"color\\\":\\\"#333\\\",\\\"fontSize\\\":12}},\\\"axisLine\\\":{\\\"lineStyle\\\":{\\\"color\\\":\\\"#333\\\"}},\\\"show\\\":true,\\\"name\\\":\\\"\\\",\\\"splitLine\\\":{\\\"lineStyle\\\":{\\\"color\\\":\\\"red\\\",\\\"width\\\":1,\\\"type\\\":\\\"solid\\\"},\\\"show\\\":false}},\\\"xAxis\\\":{\\\"splitLine\\\":{\\\"lineStyle\\\":{\\\"color\\\":\\\"red\\\",\\\"width\\\":1,\\\"type\\\":\\\"solid\\\"},\\\"show\\\":false},\\\"axisLabel\\\":{\\\"textStyle\\\":{\\\"color\\\":\\\"#333\\\",\\\"fontSize\\\":12},\\\"rotate\\\":0,\\\"interval\\\":0},\\\"axisLine\\\":{\\\"lineStyle\\\":{\\\"color\\\":\\\"#333\\\"}},\\\"data\\\":[\\\"张三\\\",\\\"张三\\\"],\\\"show\\\":true,\\\"name\\\":\\\"\\\"},\\\"grid\\\":{\\\"top\\\":60,\\\"left\\\":41,\\\"bottom\\\":43,\\\"right\\\":27},\\\"series\\\":[{\\\"barWidth\\\":23,\\\"data\\\":[25,25],\\\"name\\\":\\\"age\\\",\\\"itemStyle\\\":{\\\"barBorderRadius\\\":0,\\\"color\\\":\\\"#ffc001\\\"},\\\"label\\\":{\\\"textStyle\\\":{\\\"color\\\":\\\"black\\\",\\\"fontSize\\\":\\\"12\\\",\\\"fontWeight\\\":\\\"bolder\\\"},\\\"position\\\":\\\"top\\\",\\\"show\\\":true},\\\"type\\\":\\\"bar\\\",\\\"barMinHeight\\\":2,\\\"textStyle\\\":{\\\"color\\\":\\\"black\\\",\\\"fontWeight\\\":\\\"bolder\\\"}}],\\\"tooltip\\\":{\\\"formatter\\\":\\\"{b} : {c}\\\",\\\"show\\\":true,\\\"textStyle\\\":{\\\"color\\\":\\\"#fff\\\",\\\"fontSize\\\":18}},\\\"title\\\":{\\\"show\\\":true,\\\"top\\\":\\\"5\\\",\\\"text\\\":\\\"员工基本信息\\\",\\\"textStyle\\\":{\\\"color\\\":\\\"#000000\\\",\\\"fontWeight\\\":\\\"bold\\\",\\\"fontSize\\\":\\\"14\\\"},\\\"left\\\":\\\"left\\\",\\\"padding\\\":[5,20,5,20]}}\",\"url\":\"\",\"extData\":{\"dataType\":\"sql\",\"apiStatus\":\"\",\"apiUrl\":\"\",\"dataId\":\"537522718405644288\",\"axisX\":\"name\",\"axisY\":\"age\",\"series\":\"\",\"yText\":\"age\",\"xText\":\"name\",\"dbCode\":\"hh\",\"dataId1\":\"\",\"source\":\"\",\"target\":\"\",\"isTiming\":\"\",\"intervalTime\":\"\",\"chartType\":\"bar.simple\",\"id\":\"\",\"chartId\":\"mfVOveSMUgcmPLZH\"},\"layer_id\":\"mfVOveSMUgcmPLZH\",\"offsetX\":0,\"offsetY\":0,\"backgroud\":{\"enabled\":false,\"color\":\"#fff\",\"image\":\"\"},\"virtualCellRange\":[[1,8],[1,9],[1,10],[1,11],[1,12]]}],\"area\":{\"sri\":2,\"sci\":1,\"eri\":2,\"eci\":1,\"width\":107,\"height\":61},\"excel_config_id\":\"537521675550674944\",\"zonedEditionList\":[],\"rows\":{\"0\":{\"cells\":{}},\"1\":{\"cells\":{\"1\":{\"text\":\"职务编号\",\"style\":51},\"2\":{\"text\":\"雇员ID\",\"style\":51},\"3\":{\"text\":\"姓名\",\"style\":51},\"4\":{\"style\":51,\"text\":\"性别\"},\"5\":{\"text\":\"家庭电话\",\"style\":51},\"6\":{\"text\":\"出生日期\",\"style\":51},\"7\":{\"text\":\"联系地址\",\"style\":51},\"8\":{\"text\":\" \",\"virtual\":\"mfVOveSMUgcmPLZH\"},\"9\":{\"text\":\" \",\"virtual\":\"mfVOveSMUgcmPLZH\"},\"10\":{\"text\":\" \",\"virtual\":\"mfVOveSMUgcmPLZH\"},\"11\":{\"text\":\" \",\"virtual\":\"mfVOveSMUgcmPLZH\"},\"12\":{\"text\":\" \",\"virtual\":\"mfVOveSMUgcmPLZH\"}},\"height\":46},\"2\":{\"cells\":{\"1\":{\"text\":\"#{pop.group(update_by)}\",\"style\":61,\"aggregate\":\"group\",\"linkIds\":\"845811279070580736\",\"rendered\":\"\",\"config\":\"\",\"display\":\"link\"},\"2\":
|
|
|
|
|
INSERT INTO `jimu_report` VALUES ('53c82a76f837d5661dceec7d93afafec', '5678', '阜阳检票数查询', '', NULL, 'printinfo', '{\"loopBlockList\":[],\"area\":false,\"excel_config_id\":\"53c82a76f837d5661dceec7d93afafec\",\"printConfig\":{\"paper\":\"A4\",\"width\":210,\"height\":297,\"definition\":1,\"isBackend\":false,\"marginX\":10,\"marginY\":10},\"zonedEditionList\":[],\"rows\":{\"0\":{\"cells\":{\"1\":{\"text\":\" \",\"style\":66},\"3\":{\"style\":67,\"merge\":[0,3],\"text\":\"阜阳火车站检票数\"}},\"height\":63},\"1\":{\"cells\":{},\"height\":20},\"2\":{\"cells\":{\"1\":{\"text\":\"日期:\",\"style\":68},\"2\":{\"text\":\"${gongsi.tdata}\",\"style\":69},\"4\":{\"style\":66,\"text\":\"制表人:\"},\"5\":{\"text\":\"${gongsi.gname}\",\"style\":66},\"7\":{\"text\":\" \",\"merge\":[0,1],\"style\":70}},\"isDrag\":true},\"3\":{\"cells\":{\"1\":{\"text\":\"班次\",\"merge\":[1,0],\"style\":71},\"2\":{\"text\":\"发车时间\",\"merge\":[1,0],\"style\":71},\"3\":{\"text\":\"是否放空\",\"merge\":[1,0],\"style\":71},\"4\":{\"text\":\"路线\",\"merge\":[0,1],\"style\":71},\"6\":{\"text\":\"核载座位数\",\"merge\":[1,0],\"style\":71},\"7\":{\"merge\":[1,0],\"style\":71,\"text\":\"检票数\"},\"8\":{\"merge\":[1,0],\"style\":71,\"text\":\"实载率(%)\"}}},\"4\":{\"cells\":{\"4\":{\"text\":\"从\",\"style\":71},\"5\":{\"text\":\"到\",\"style\":71}},\"height\":25},\"5\":{\"cells\":{\"1\":{\"style\":73,\"text\":\"#{jianpiao.bnum}\"},\"2\":{\"style\":73,\"text\":\"#{jianpiao.ftime}\"},\"3\":{\"style\":73,\"text\":\"#{jianpiao.sfkong}\"},\"4\":{\"style\":73,\"text\":\"#{jianpiao.kaishi}\"},\"5\":{\"style\":73,\"text\":\"#{jianpiao.jieshu}\"},\"6\":{\"style\":73,\"text\":\"#{jianpiao.hezairen}\"},\"7\":{\"style\":73,\"text\":\"#{jianpiao.jpnum}\"},\"8\":{\"style\":73,\"text\":\"#{jianpiao.shihelv}\"}},\"height\":33},\"6\":{\"cells\":{\"1\":{\"text\":\" \",\"style\":11}},\"isDrag\":true},\"7\":{\"cells\":{\"2\":{\"style\":11,\"text\":\" \"}}},\"8\":{\"cells\":{}},\"9\":{\"cells\":{}},\"10\":{\"cells\":{}},\"11\":{\"cells\":{}},\"12\":{\"cells\":{}},\"13\":{\"cells\":{}},\"14\":{\"cells\":{}},\"len\":96,\"-1\":{\"cells\":{\"-1\":{\"text\":\"${gongsi.id}\"}},\"isDrag\":true}},\"dbexps\":[],\"toolPrintSizeObj\":{\"printType\":\"A4\",\"widthPx\":718,\"heightPx\":1047},\"dicts\":[],\"rpbar\":{\"show\":true,\"btnList\":[]},\"fixedPrintHeadRows\":[],\"fixedPrintTailRows\":[],\"freeze\":\"A1\",\"dataRectWidth\":703,\"displayConfig\":{},\"background\":false,\"name\":\"sheet1\",\"autofilter\":{},\"styles\":[{\"align\":\"center\"},{\"align\":\"center\",\"border\":{\"top\":[\"thin\",\"#000\"],\"bottom\":[\"thin\",\"#000\"],\"left\":[\"thin\",\"#000\"]}},{\"align\":\"center\",\"border\":{\"top\":[\"thin\",\"#000\"],\"bottom\":[\"thin\",\"#000\"]}},{\"align\":\"center\",\"border\":{\"top\":[\"thin\",\"#000\"]}},{\"align\":\"center\",\"border\":{\"top\":[\"thin\",\"#000\"],\"bottom\":[\"thin\",\"#000\"],\"right\":[\"thin\",\"#000\"]}},{\"align\":\"center\",\"border\":{\"bottom\":[\"thin\",\"#000\"]}},{\"align\":\"center\",\"border\":{\"top\":[\"thin\",\"#000\"],\"bottom\":[\"thin\",\"#000\"],\"left\":[\"thin\",\"#000\"],\"right\":[\"thin\",\"#000\"]}},{\"align\":\"center\",\"border\":{\"top\":[\"thin\",\"#000\"],\"left\":[\"thin\",\"#000\"],\"right\":[\"thin\",\"#000\"]}},{\"align\":\"center\",\"border\":{\"bottom\":[\"thin\",\"#000\"],\"left\":[\"thin\",\"#000\"]}},{\"align\":\"center\",\"border\":{\"bottom\":[\"thin\",\"#000\"],\"right\":[\"thin\",\"#000\"]}},{\"border\":{\"bottom\":[\"thin\",\"#000\"],\"top\":[\"thin\",\"#000\"],\"left\":[\"thin\",\"#000\"],\"right\":[\"thin\",\"#000\"]}},{},{\"border\":{\"bottom\":[\"thin\",\"#7f7f7f\"],\"top\":[\"thin\",\"#7f7f7f\"],\"left\":[\"thin\",\"#7f7f7f\"],\"right\":[\"thin\",\"#7f7f7f\"]}},{\"border\":{\"top\":[\"thin\",\"#000100\"],\"left\":[\"thin\",\"#000100\"]}},{\"border\":{\"top\":[\"thin\",\"#000100\"]}},{\"border\":{\"top\":[\"thin\",\"#000100\"],\"right\":[\"thin\",\"#000100\"]}},{\"border\":{\"left\":[\"thin\",\"#000100\"]}},{\"border\":{\"right\":[\"thin\",\"#0
|
|
|
|
|
INSERT INTO `jimu_report` VALUES ('542152544408129536', '20210414112811', '图表联动报表', NULL, NULL, 'datainfo', '{\"loopBlockList\":[],\"chartList\":[{\"row\":3,\"col\":5,\"colspan\":4,\"rowspan\":7,\"width\":\"556\",\"height\":\"318\",\"config\":\"{\\\"yAxis\\\":{\\\"axisLabel\\\":{\\\"textStyle\\\":{\\\"color\\\":\\\"#333\\\",\\\"fontSize\\\":\\\"10\\\"}},\\\"axisLine\\\":{\\\"lineStyle\\\":{\\\"color\\\":\\\"#333\\\"}},\\\"show\\\":true,\\\"name\\\":\\\"\\\",\\\"splitLine\\\":{\\\"lineStyle\\\":{\\\"color\\\":\\\"red\\\",\\\"width\\\":1,\\\"type\\\":\\\"solid\\\"},\\\"show\\\":false}},\\\"xAxis\\\":{\\\"splitLine\\\":{\\\"lineStyle\\\":{\\\"color\\\":\\\"red\\\",\\\"width\\\":1,\\\"type\\\":\\\"solid\\\"},\\\"show\\\":false},\\\"axisLabel\\\":{\\\"textStyle\\\":{\\\"color\\\":\\\"#333\\\",\\\"fontSize\\\":\\\"10\\\"},\\\"rotate\\\":0,\\\"interval\\\":0},\\\"axisLine\\\":{\\\"lineStyle\\\":{\\\"color\\\":\\\"#333\\\"}},\\\"data\\\":[\\\"1月\\\",\\\"2月\\\",\\\"3月\\\",\\\"4月\\\",\\\"5月\\\",\\\"6月\\\",\\\"7月\\\",\\\"8月\\\",\\\"9月\\\",\\\"10月\\\",\\\"11月\\\",\\\"12月\\\"],\\\"show\\\":true,\\\"name\\\":\\\"\\\"},\\\"grid\\\":{\\\"top\\\":30,\\\"left\\\":48,\\\"bottom\\\":42,\\\"right\\\":18},\\\"series\\\":[{\\\"areaStyle\\\":null,\\\"data\\\":[10000,80000,50000,70000,100000,70000,59000,30000,90000,80000,90000,30000],\\\"showSymbol\\\":true,\\\"lineStyle\\\":{\\\"width\\\":2},\\\"symbolSize\\\":5,\\\"isArea\\\":false,\\\"name\\\":\\\"\\\",\\\"itemStyle\\\":{\\\"color\\\":\\\"rgba(33,176,246,1)\\\"},\\\"step\\\":false,\\\"label\\\":{\\\"textStyle\\\":{\\\"color\\\":\\\"black\\\",\\\"fontSize\\\":16,\\\"fontWeight\\\":\\\"bolder\\\"},\\\"position\\\":\\\"top\\\",\\\"show\\\":false},\\\"type\\\":\\\"line\\\",\\\"smooth\\\":false}],\\\"tooltip\\\":{\\\"textStyle\\\":{\\\"color\\\":\\\"#fff\\\",\\\"fontSize\\\":\\\"10\\\"},\\\"formatter\\\":\\\"{b} : {c}\\\",\\\"show\\\":true},\\\"title\\\":{\\\"show\\\":false,\\\"top\\\":5,\\\"text\\\":\\\"每月订单金额\\\",\\\"textStyle\\\":{\\\"color\\\":\\\"#c23531\\\",\\\"fontWeight\\\":\\\"bolder\\\",\\\"fontSize\\\":18},\\\"left\\\":\\\"left\\\",\\\"padding\\\":[5,20,5,10]}}\",\"url\":\"\",\"extData\":{\"dataType\":\"api\",\"apiStatus\":\"1\",\"dataId\":\"542187081431339008\",\"axisX\":\"name\",\"axisY\":\"value\",\"series\":\"type\",\"yText\":\"\",\"xText\":\"\",\"dbCode\":\"yu\",\"dataId1\":\"\",\"source\":\"\",\"target\":\"\",\"isTiming\":false,\"intervalTime\":\"0\",\"linkIds\":\"\",\"chartType\":\"line.simple\",\"chartId\":\"4gWTCuSf3N2pRy9U\",\"id\":\"4gWTCuSf3N2pRy9U\"},\"layer_id\":\"4gWTCuSf3N2pRy9U\",\"offsetX\":0,\"offsetY\":0,\"backgroud\":{\"enabled\":false,\"color\":\"#fff\",\"image\":\"\"},\"virtualCellRange\":[[3,5],[3,6],[3,7],[3,8]]},{\"row\":3,\"col\":1,\"colspan\":4,\"rowspan\":7,\"width\":\"398\",\"height\":\"317\",\"config\":\"{\\\"yAxis\\\":{\\\"axisLabel\\\":{\\\"textStyle\\\":{\\\"color\\\":\\\"#333\\\",\\\"fontSize\\\":\\\"10\\\"}},\\\"axisLine\\\":{\\\"lineStyle\\\":{\\\"color\\\":\\\"#333\\\"}},\\\"show\\\":true,\\\"name\\\":\\\"\\\",\\\"splitLine\\\":{\\\"lineStyle\\\":{\\\"color\\\":\\\"red\\\",\\\"width\\\":1,\\\"type\\\":\\\"solid\\\"},\\\"show\\\":false}},\\\"xAxis\\\":{\\\"splitLine\\\":{\\\"lineStyle\\\":{\\\"color\\\":\\\"red\\\",\\\"width\\\":1,\\\"type\\\":\\\"solid\\\"},\\\"show\\\":false},\\\"axisLabel\\\":{\\\"textStyle\\\":{\\\"color\\\":\\\"#333\\\",\\\"fontSize\\\":\\\"10\\\"},\\\"rotate\\\":0,\\\"interval\\\":0},\\\"axisLine\\\":{\\\"lineStyle\\\":{\\\"color\\\":\\\"#333\\\"}},\\\"data\\\":[\\\"张三\\\",\\\"李四\\\",\\\"小米\\\",\\\"lili\\\",\\\"王伟\\\",\\\"菲菲\\\",\\\"洋洋\\\",\\\"王轩\\\",\\\"李中\\\",\\\"韩寒\\\"],\\\"show\\\":true,\\\"name\\\":\\\"\\\"},\\\"grid\\\":{\\\"top\\\":30,\\\"left\\\":60,\\\"bottom\\\":42,\\\"right\\\":23},\\\"series\\\":[{\\\"barWidth\\\":10,\\\"data\\\":[3400879,2400879,2300879,1000879,900000,700000,590000,300000,90000,9000],\\\"name\\\":\\\"\\\",\\\"itemStyle\\\":{\\\"barBorderRadius\\\":0,\\\"color\\\":\\\"rgba(33,176,246,1)\\\"},\\\"label\\\":{\\\"textS
|
|
|
|
|
INSERT INTO `jimu_report` VALUES ('580749470334275584', '20210729233805', '表达式示例', NULL, NULL, 'datainfo', '{\"loopBlockList\":[],\"area\":false,\"excel_config_id\":\"580749470334275584\",\"printConfig\":{\"paper\":\"A4\",\"width\":210,\"height\":297,\"definition\":1,\"isBackend\":false,\"marginX\":10,\"marginY\":10,\"layout\":\"portrait\"},\"zonedEditionList\":[],\"rows\":{\"0\":{\"cells\":{\"1\":{\"text\":\"更多表达式请查看详细文档。\",\"linkIds\":\"580872825561501696\",\"rendered\":\"\",\"config\":\"\",\"display\":\"link\",\"merge\":[0,1],\"height\":43,\"style\":18}},\"height\":43},\"1\":{\"cells\":{\"1\":{\"style\":12,\"text\":\"日期函数\",\"merge\":[0,3],\"height\":25},\"6\":{\"style\":12,\"text\":\"字符串函数\",\"merge\":[0,3],\"height\":25}},\"height\":34},\"2\":{\"cells\":{\"1\":{\"text\":\"函数名称\",\"style\":17},\"2\":{\"text\":\"表达式\",\"style\":17},\"3\":{\"text\":\"常量参数\",\"style\":17},\"4\":{\"text\":\"数据集参数\",\"style\":17},\"6\":{\"text\":\"函数名称\",\"style\":17},\"7\":{\"text\":\"表达式\",\"style\":17},\"8\":{\"text\":\"常量参数\",\"style\":17},\"9\":{\"text\":\"数据集参数\",\"style\":17}}},\"3\":{\"cells\":{\"1\":{\"text\":\"date()\",\"style\":4},\"2\":{\"text\":\"date(\\\"2021-07-29 12:11:10\\\")\",\"style\":4},\"3\":{\"text\":\"=date(\\\"2021-07-29 12:11:10\\\")\",\"style\":4},\"4\":{\"text\":\"=date(\\\"${jm_expression.create_time}\\\")\",\"style\":4},\"6\":{\"text\":\"char()\",\"style\":4,\"merge\":[1,0],\"height\":50},\"7\":{\"text\":\"char(22269)\",\"style\":4},\"8\":{\"text\":\"=char(22269)\",\"style\":4},\"9\":{\"style\":4,\"text\":\" \"}}},\"4\":{\"cells\":{\"1\":{\"text\":\"time()\",\"style\":4},\"2\":{\"text\":\"time(\\\"12:11:10\\\")\",\"style\":4},\"3\":{\"text\":\"=time(\\\"12:11:10\\\")\",\"style\":4},\"4\":{\"text\":\"=time(\\\"${jm_expression.create_time}\\\")\",\"style\":4},\"7\":{\"text\":\"char(101)\",\"style\":4},\"8\":{\"text\":\"=char(101)\",\"style\":4},\"9\":{\"style\":4,\"text\":\" \"}}},\"5\":{\"cells\":{\"1\":{\"text\":\"now()\",\"merge\":[3,0],\"height\":100,\"style\":4,\"linkIds\":\"\",\"rendered\":\"\",\"config\":\"\",\"display\":\"\"},\"2\":{\"text\":\"now()\",\"style\":4},\"3\":{\"text\":\"=now()\",\"style\":5},\"4\":{\"text\":\"=now()\",\"style\":5},\"6\":{\"style\":4,\"text\":\"cnmoney()\",\"merge\":[2,0],\"height\":75},\"7\":{\"text\":\"cnmoney(341.234)\",\"style\":4},\"8\":{\"style\":4,\"text\":\"=cnmoney(341.234)\"},\"9\":{\"style\":4,\"text\":\"=cnmoney(${jm_expression.num})\"}}},\"6\":{\"cells\":{\"2\":{\"text\":\"now()\",\"style\":4},\"3\":{\"text\":\"=now()\",\"style\":6},\"4\":{\"text\":\"=now()\",\"style\":6},\"7\":{\"text\":\"cnmoney(341.234,\\\"b\\\")\",\"style\":4},\"8\":{\"text\":\"=cnmoney(341.234,\\\"b\\\")\",\"style\":4},\"9\":{\"style\":4,\"text\":\"=cnmoney(${jm_expression.num},\\\"b\\\")\"}}},\"7\":{\"cells\":{\"2\":{\"text\":\"now()\",\"style\":4},\"3\":{\"text\":\"=now()\",\"style\":7},\"4\":{\"text\":\"=now()\",\"style\":7},\"7\":{\"text\":\"cnmoney(341.234,\\\"bw\\\")\",\"style\":4},\"8\":{\"text\":\"=cnmoney(341.234,\\\"bw\\\")\",\"style\":4},\"9\":{\"text\":\"=cnmoney(${jm_expression.num},\\\"bw\\\")\",\"style\":4}}},\"8\":{\"cells\":{\"2\":{\"text\":\"now()\",\"style\":4},\"3\":{\"text\":\"=now()\",\"style\":8},\"4\":{\"text\":\"=now()\",\"style\":8},\"6\":{\"text\":\"concat()\",\"style\":4},\"7\":{\"text\":\"concat(\'hello \',\'word\',\' !\')\",\"style\":4},\"8\":{\"text\":\"=concat(\'hello \',\'world\',\' !\')\",\"style\":4},\"9\":{\"text\":\"=concat(\'${jm_expression.upper}\',\' world\',\' !\')\",\"style\":4}}},\"9\":{\"cells\":{\"1\":{\"text\":\"year()\",\"style\":4},\"2\":{\"text\":\"year(\\\"2021-07-29 12:11:10\\\")\",\"style\":4},\"3\":{\"text\":\"=year(\\\"2021-07-29 12:11:10\\\")\",\"style\":4},\"4\":{\"text\":\"=year(\\\"${jm_expression.create_time}\\\")\",\"style\":4},\"6\":{\"text\":\"lower()\",\"style\":4},\"7\":{\"text\":\"lower(\'HELLOW\')\",\"style\":4},\"8\":{\"text\":\"=lower(\'HELLOW\')\",\"style\":4},\"9\":{\"text\":\"=lower(\\\"${jm_expression.up
|
|
|
|
|
INSERT INTO `jimu_report` VALUES ('590432931076722688', '2020121515142661246570', '查询条件示例', NULL, NULL, 'datainfo', '{\"loopBlockList\":[],\"printConfig\":{\"paper\":\"A4\",\"width\":210,\"height\":297,\"definition\":1,\"isBackend\":false,\"marginX\":10,\"marginY\":10},\"dbexps\":[],\"toolPrintSizeObj\":{\"printType\":\"A4\",\"widthPx\":718,\"heightPx\":1047},\"dicts\":[],\"freeze\":\"A1\",\"dataRectWidth\":1694,\"autofilter\":{},\"validations\":[],\"cols\":{\"0\":{\"width\":48},\"1\":{\"width\":107},\"2\":{\"width\":147},\"3\":{\"width\":144},\"4\":{\"width\":142},\"5\":{\"width\":130},\"6\":{\"width\":131},\"7\":{\"width\":235},\"8\":{\"width\":230},\"9\":{\"width\":148},\"10\":{\"width\":132},\"len\":50},\"area\":false,\"excel_config_id\":\"590432931076722688\",\"zonedEditionList\":[],\"rows\":{\"0\":{\"cells\":{\"1\":{\"text\":\"查询条件示例\",\"style\":64,\"merge\":[0,1],\"height\":44},\"2\":{},\"3\":{\"style\":68,\"text\":\"说明:查询控件配置;默认值设置;CSS增强配置;参考文档:http://report.jeecg.com/2373403\",\"merge\":[0,2],\"height\":57}},\"height\":57},\"1\":{\"cells\":{\"1\":{\"text\":\"职务\",\"style\":51},\"2\":{\"text\":\"雇员ID\",\"style\":51},\"3\":{\"text\":\"姓名\",\"style\":51},\"4\":{\"style\":51,\"text\":\"性别\"},\"5\":{\"text\":\"雇佣日期\",\"style\":51},\"6\":{\"text\":\"家庭电话\",\"style\":51},\"7\":{\"text\":\"出生日期\",\"style\":51},\"8\":{\"text\":\"户口所在地\",\"style\":51},\"9\":{\"text\":\"联系地址\",\"style\":51},\"10\":{\"text\":\"紧急联系人\",\"style\":51},\"11\":{\"style\":51,\"text\":\"分类\"}},\"height\":46},\"2\":{\"cells\":{\"1\":{\"text\":\"#{pop.group(update_by)}\",\"style\":61,\"aggregate\":\"group\"},\"2\":{\"text\":\"#{pop.group(id)}\",\"style\":54,\"aggregate\":\"group\"},\"3\":{\"text\":\"#{pop.group(name)}\",\"style\":54,\"aggregate\":\"group\"},\"4\":{\"text\":\"#{pop.sex}\",\"style\":55},\"5\":{\"text\":\"#{pop.gtime}\",\"style\":56},\"6\":{\"text\":\"#{pop.jphone}\",\"style\":57},\"7\":{\"text\":\"#{pop.birth}\",\"style\":56},\"8\":{\"text\":\"#{pop.hukou}\",\"style\":58},\"9\":{\"text\":\"#{pop.laddress}\",\"style\":57},\"10\":{\"text\":\"#{pop.jperson}\",\"style\":57},\"11\":{\"style\":57,\"text\":\"#{pop.type}\"}},\"isDrag\":true,\"height\":35},\"5\":{\"cells\":{\"2\":{\"text\":\"\"}},\"isDrag\":true},\"len\":99},\"rpbar\":{\"show\":true,\"btnList\":[]},\"groupField\":\"pop.update_by\",\"fixedPrintHeadRows\":[],\"fixedPrintTailRows\":[],\"displayConfig\":{},\"background\":false,\"name\":\"sheet1\",\"styles\":[{\"bgcolor\":\"#5b9cd6\"},{\"bgcolor\":\"#5b9cd6\",\"color\":\"#ffffff\"},{\"color\":\"#ffffff\"},{\"align\":\"center\"},{\"bgcolor\":\"#5b9cd6\",\"color\":\"#ffffff\",\"align\":\"center\"},{\"bgcolor\":\"#02a274\",\"color\":\"#ffffff\",\"align\":\"center\"},{\"bgcolor\":\"#02a274\",\"color\":\"#ffffff\",\"align\":\"center\",\"border\":{\"bottom\":[\"thin\",\"#bfbfbf\"],\"top\":[\"thin\",\"#bfbfbf\"],\"left\":[\"thin\",\"#bfbfbf\"],\"right\":[\"thin\",\"#bfbfbf\"]}},{\"border\":{\"bottom\":[\"thin\",\"#bfbfbf\"],\"top\":[\"thin\",\"#bfbfbf\"],\"left\":[\"thin\",\"#bfbfbf\"],\"right\":[\"thin\",\"#bfbfbf\"]}},{\"border\":{\"bottom\":[\"thin\",\"#bfbfbf\"],\"top\":[\"thin\",\"#bfbfbf\"],\"left\":[\"thin\",\"#bfbfbf\"],\"right\":[\"thin\",\"#bfbfbf\"]},\"bgcolor\":\"#f1f9f6\"},{\"border\":{\"bottom\":[\"thin\",\"#bfbfbf\"],\"top\":[\"thin\",\"#bfbfbf\"],\"left\":[\"thin\",\"#bfbfbf\"],\"right\":[\"thin\",\"#bfbfbf\"]},\"bgcolor\":\"#ddefe8\"},{\"font\":{\"size\":8}},{\"border\":{\"bottom\":[\"thin\",\"#bfbfbf\"],\"top\":[\"thin\",\"#bfbfbf\"],\"left\":[\"thin\",\"#bfbfbf\"],\"right\":[\"thin\",\"#bfbfbf\"]},\"bgcolor\":\"#f1f9f6\",\"font\":{\"size\":8}},{\"border\":{\"bottom\":[\"thin\",\"#bfbfbf\"],\"top\":[\"thin\",\"#bfbfbf\"],\"left\":[\"thin\",\"#bfbfbf\"],\"right\":[\"thin\",\"#bfbfbf\"]},\"bgcolor\":\"#ddefe8\",\"font\":{\"size\":8}},{\"border\":{\"bottom\":[\"thin\",\"#bfbfbf\"],\"top\":[\"thin\",\"#bfbfbf\"],\"left\":[\"thin\",\"#bfbfbf\"],\"right\":[\"thin\",\"#bfbfbf\"]},\
|
|
|
|
|
INSERT INTO `jimu_report` VALUES ('590442764001693696', '202101271721121257', '纵向分组小计示例3', NULL, NULL, 'datainfo', '{\"loopBlockList\":[],\"printConfig\":{\"paper\":\"A4\",\"width\":210,\"height\":297,\"definition\":1,\"isBackend\":false,\"marginX\":10,\"marginY\":10,\"layout\":\"portrait\"},\"dbexps\":[],\"toolPrintSizeObj\":{\"printType\":\"A4\",\"widthPx\":718,\"heightPx\":1047},\"dicts\":[],\"freeze\":\"A1\",\"dataRectWidth\":718,\"autofilter\":{},\"validations\":[],\"cols\":{\"0\":{\"width\":36},\"1\":{\"width\":95},\"2\":{\"width\":95},\"3\":{\"width\":105},\"4\":{\"width\":141},\"5\":{\"width\":246},\"6\":{\"width\":155},\"len\":50},\"area\":false,\"excel_config_id\":\"590442764001693696\",\"zonedEditionList\":[],\"rows\":{\"0\":{\"cells\":{\"0\":{\"text\":\"\",\"rendered\":\"\"},\"1\":{\"text\":\"纵向分组小计示例3\",\"merge\":[0,2],\"style\":6},\"5\":{\"text\":\"说明:本示例涉及纵向分组小计,横向动态列;地区设为小计分组依据;销量设为求和;年份倒序;月份默认正序\",\"style\":30}},\"height\":83},\"1\":{\"cells\":{\"1\":{\"text\":\"地区|销量|时间\",\"style\":2,\"lineStart\":\"lefttop\",\"rendered\":\"\",\"merge\":[1,1],\"height\":74},\"3\":{\"style\":8,\"text\":\"#{xs.groupRight(year)}年\",\"aggregate\":\"group\",\"direction\":\"right\",\"sort\":\"desc\"}},\"height\":40},\"2\":{\"cells\":{\"3\":{\"style\":8,\"text\":\"#{xs.groupRight(mouth)}\",\"aggregate\":\"group\",\"direction\":\"right\",\"sort\":\"default\"}},\"height\":34},\"3\":{\"cells\":{\"1\":{\"text\":\"#{xs.group(diqu)}\",\"style\":28,\"aggregate\":\"group\",\"subtotal\":\"groupField\",\"funcname\":\"\"},\"2\":{\"style\":28,\"text\":\"#{xs.group(class)}\",\"aggregate\":\"group\"},\"3\":{\"style\":29,\"text\":\"#{xs.dynamic(sales)}\",\"aggregate\":\"dynamic\",\"rendered\":\"\",\"decimalPlaces\":\"0\",\"subtotal\":\"\",\"funcname\":\"SUM\"}},\"height\":38},\"4\":{\"cells\":{\"1\":{\"style\":24,\"text\":\"总计\",\"merge\":[0,1]},\"3\":{\"style\":25,\"text\":\"=sum(D4)\"}},\"height\":37},\"8\":{\"cells\":{\"1\":{}}},\"10\":{\"cells\":{\"1\":{}}},\"len\":100},\"rpbar\":{\"show\":true,\"pageSize\":\"\",\"btnList\":[]},\"groupField\":\"xs.diqu\",\"fixedPrintHeadRows\":[],\"fixedPrintTailRows\":[],\"displayConfig\":{},\"background\":false,\"name\":\"sheet1\",\"styles\":[{\"bgcolor\":\"#5b9cd6\"},{\"bgcolor\":\"#5b9cd6\",\"color\":\"#ffffff\"},{\"bgcolor\":\"#5b9cd6\",\"color\":\"#ffffff\",\"border\":{\"bottom\":[\"thin\",\"#d8d8d8\"],\"top\":[\"thin\",\"#d8d8d8\"],\"left\":[\"thin\",\"#d8d8d8\"],\"right\":[\"thin\",\"#d8d8d8\"]}},{\"border\":{\"bottom\":[\"thin\",\"#d8d8d8\"],\"top\":[\"thin\",\"#d8d8d8\"],\"left\":[\"thin\",\"#d8d8d8\"],\"right\":[\"thin\",\"#d8d8d8\"]}},{\"font\":{\"size\":16}},{\"font\":{\"size\":16,\"bold\":true}},{\"font\":{\"size\":16,\"bold\":true},\"align\":\"center\"},{\"border\":{\"bottom\":[\"thin\",\"#d8d8d8\"],\"top\":[\"thin\",\"#d8d8d8\"],\"left\":[\"thin\",\"#d8d8d8\"],\"right\":[\"thin\",\"#d8d8d8\"]},\"align\":\"center\"},{\"bgcolor\":\"#5b9cd6\",\"color\":\"#ffffff\",\"border\":{\"bottom\":[\"thin\",\"#d8d8d8\"],\"top\":[\"thin\",\"#d8d8d8\"],\"left\":[\"thin\",\"#d8d8d8\"],\"right\":[\"thin\",\"#d8d8d8\"]},\"align\":\"center\"},{\"bgcolor\":\"#9cc2e6\"},{\"bgcolor\":\"#9cc2e6\",\"align\":\"center\"},{\"align\":\"center\"},{\"bgcolor\":\"#9cc2e6\",\"format\":\"number\"},{\"bgcolor\":\"#9cc2e6\",\"format\":\"number\",\"align\":\"center\"},{\"border\":{\"bottom\":[\"thin\",\"#d8d8d8\"],\"top\":[\"thin\",\"#d8d8d8\"],\"left\":[\"thin\",\"#d8d8d8\"],\"right\":[\"thin\",\"#d8d8d8\"]},\"align\":\"center\",\"font\":{\"size\":9}},{\"bgcolor\":\"#5b9cd6\",\"color\":\"#ffffff\",\"border\":{\"bottom\":[\"thin\",\"#000\"],\"top\":[\"thin\",\"#000\"],\"left\":[\"thin\",\"#000\"],\"right\":[\"thin\",\"#000\"]}},{\"bgcolor\":\"#5b9cd6\",\"color\":\"#ffffff\",\"align\":\"center\"},{\"bgcolor\":\"#5b9cd6\",\"color\":\"#ffffff\",\"align\":\"center\",\"border\":{\"bottom\":[\"thin\",\"#000\"],\"top\":[\"thin\",\"#000\"],\"left\":[\"thin\",\"#000\"],\"right\":[\"thi
|
|
|
|
|
INSERT INTO `jimu_report` VALUES ('590808622016319488', '20210826175031', '纵向分组小计示例1', NULL, NULL, 'datainfo', '{\"loopBlockList\":[],\"area\":{\"sri\":55,\"sci\":6,\"eri\":55,\"eci\":6,\"width\":100,\"height\":25},\"excel_config_id\":\"590808622016319488\",\"printConfig\":{\"paper\":\"A4\",\"width\":210,\"height\":297,\"definition\":1,\"isBackend\":false,\"marginX\":10,\"marginY\":10,\"layout\":\"portrait\"},\"zonedEditionList\":[],\"rows\":{\"0\":{\"cells\":{\"1\":{\"merge\":[0,1],\"height\":61,\"text\":\"纵向分组小计示例1\",\"style\":18},\"3\":{\"text\":\"说明:地区、省份设置为纵向分组并且地区设置为分组依据;销售额设为求和;参考文档:http://report.jeecg.com/2333594\",\"style\":20,\"merge\":[0,2],\"height\":61}},\"height\":85},\"1\":{\"cells\":{\"1\":{\"text\":\"地区|销售额|日期\",\"lineStart\":\"lefttop\",\"style\":16,\"merge\":[1,1],\"height\":66},\"3\":{\"text\":\"#{jm.groupRight(year)}\",\"direction\":\"right\",\"style\":16}},\"height\":35},\"2\":{\"cells\":{\"3\":{\"text\":\"#{jm.groupRight(month)}\",\"aggregate\":\"group\",\"direction\":\"right\",\"style\":16}},\"height\":31},\"3\":{\"cells\":{\"1\":{\"text\":\"#{jm.group(areaname)}\",\"aggregate\":\"group\",\"subtotal\":\"groupField\",\"funcname\":\"\",\"style\":0},\"2\":{\"text\":\"#{jm.group(dept)}\",\"style\":0,\"aggregate\":\"group\",\"funcname\":\"\"},\"3\":{\"text\":\"#{jm.dynamic(settleamount)}\",\"aggregate\":\"dynamic\",\"style\":0,\"subtotal\":\"\",\"funcname\":\"SUM\"}}},\"len\":21},\"dbexps\":[],\"dicts\":[],\"rpbar\":{\"show\":true,\"pageSize\":\"\",\"btnList\":[]},\"groupField\":\"jm.areaname\",\"fixedPrintHeadRows\":[],\"fixedPrintTailRows\":[],\"freeze\":\"A1\",\"dataRectWidth\":454,\"displayConfig\":{},\"background\":false,\"name\":\"sheet1\",\"autofilter\":{},\"styles\":[{\"border\":{\"bottom\":[\"thin\",\"#000\"],\"top\":[\"thin\",\"#000\"],\"left\":[\"thin\",\"#000\"],\"right\":[\"thin\",\"#000\"]}},{\"border\":{\"bottom\":[\"thin\",\"#000\"],\"top\":[\"thin\",\"#000\"],\"left\":[\"thin\",\"#000\"],\"right\":[\"thin\",\"#000\"]},\"bgcolor\":\"#d8d8d8\"},{\"bgcolor\":\"#d8d8d8\"},{\"border\":{\"bottom\":[\"thin\",\"#000\"],\"top\":[\"thin\",\"#000\"],\"left\":[\"thin\",\"#000\"],\"right\":[\"thin\",\"#000\"]},\"bgcolor\":\"#71ae47\"},{\"bgcolor\":\"#71ae47\"},{\"border\":{\"bottom\":[\"thin\",\"#000\"],\"top\":[\"thin\",\"#000\"],\"left\":[\"thin\",\"#000\"],\"right\":[\"thin\",\"#000\"]},\"bgcolor\":\"#c45a10\"},{\"bgcolor\":\"#c45a10\"},{\"border\":{\"bottom\":[\"thin\",\"#000\"],\"top\":[\"thin\",\"#000\"],\"left\":[\"thin\",\"#000\"],\"right\":[\"thin\",\"#000\"]},\"bgcolor\":\"#7f7f7f\"},{\"bgcolor\":\"#7f7f7f\"},{\"border\":{\"bottom\":[\"thin\",\"#000\"],\"top\":[\"thin\",\"#000\"],\"left\":[\"thin\",\"#000\"],\"right\":[\"thin\",\"#000\"]},\"bgcolor\":\"#ffffff\"},{\"bgcolor\":\"#ffffff\"},{\"border\":{\"bottom\":[\"thin\",\"#000\"],\"top\":[\"thin\",\"#000\"],\"left\":[\"thin\",\"#000\"],\"right\":[\"thin\",\"#000\"]},\"bgcolor\":\"#5b9cd6\"},{\"bgcolor\":\"#5b9cd6\"},{\"border\":{\"bottom\":[\"thin\",\"#000\"],\"top\":[\"thin\",\"#000\"],\"left\":[\"thin\",\"#000\"],\"right\":[\"thin\",\"#000\"]},\"bgcolor\":\"#d0cecf\"},{\"bgcolor\":\"#d0cecf\"},{\"border\":{\"bottom\":[\"thin\",\"#000100\"],\"top\":[\"thin\",\"#000100\"],\"left\":[\"thin\",\"#000100\"],\"right\":[\"thin\",\"#000100\"]},\"bgcolor\":\"#d0cecf\"},{\"border\":{\"bottom\":[\"thin\",\"#000100\"],\"top\":[\"thin\",\"#000100\"],\"left\":[\"thin\",\"#000100\"],\"right\":[\"thin\",\"#000100\"]},\"bgcolor\":\"#f2f2f2\"},{\"bgcolor\":\"#f2f2f2\"},{\"font\":{\"size\":14}},{\"textwrap\":true},{\"textwrap\":true,\"color\":\"#fe0000\"},{\"color\":\"#fe0000\"}],\"validations\":[],\"isGroup\":true,\"cols\":{\"0\":{\"width\":154},\"5\":{\"width\":121},\"len\":50},\"merges\":[\"B1:C1\",\"D1:F1\",\"B2:C3\"]}', NULL, 'https://static.jeecg.com/designreport/images/fz1_1630235763858.png', 'admin', '2021-08-26 17:50:31', 'admin', '2023-07-31 16:45:31', 0, NULL, NULL, 1, 2879, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report` VALUES ('590812531803901952', '202108261750310852', '纵向分组小计示例2', NULL, NULL, 'datainfo', '{\"loopBlockList\":[],\"area\":{\"sri\":8,\"sci\":1,\"eri\":8,\"eci\":1,\"width\":80,\"height\":25},\"excel_config_id\":\"590812531803901952\",\"printConfig\":{\"paper\":\"A4\",\"width\":210,\"height\":297,\"definition\":1,\"isBackend\":false,\"marginX\":10,\"marginY\":10,\"layout\":\"portrait\"},\"zonedEditionList\":[],\"rows\":{\"0\":{\"cells\":{\"3\":{\"text\":\" \",\"style\":27},\"5\":{\"text\":\"\"},\"7\":{\"merge\":[0,2],\"height\":56,\"style\":27,\"text\":\" \"}},\"height\":59},\"1\":{\"cells\":{\"1\":{\"text\":\"纵向分组小计示例2\",\"merge\":[0,2],\"height\":56,\"style\":27},\"4\":{\"text\":\"说明:区域(areaname)、省份(dept)纵向分组;单价(price)、金额(amount)设置动态属性;小计设置compute行内计算compute(price*amount);参考文档:http://report.jeecg.com/2333594\",\"merge\":[0,4],\"height\":54,\"style\":29}},\"height\":54},\"2\":{\"cells\":{\"1\":{\"text\":\"区域\",\"style\":21,\"merge\":[2,0],\"height\":81},\"2\":{\"merge\":[2,0],\"height\":81,\"text\":\"省份\",\"style\":21},\"3\":{\"merge\":[0,2],\"height\":31,\"style\":21,\"text\":\"#{jm.groupRight(year)}年\",\"aggregate\":\"group\",\"direction\":\"right\"}},\"height\":35},\"3\":{\"cells\":{\"3\":{\"merge\":[0,2],\"height\":25,\"style\":21,\"text\":\"#{jm.groupRight(month)}月\",\"aggregate\":\"group\",\"direction\":\"right\"}},\"height\":34},\"4\":{\"cells\":{\"3\":{\"text\":\"单价\",\"style\":21},\"4\":{\"text\":\"金额\",\"style\":21},\"5\":{\"text\":\"小计\",\"style\":21}},\"height\":35},\"5\":{\"cells\":{\"1\":{\"text\":\"#{jm.group(areaname)}\",\"aggregate\":\"group\",\"subtotal\":\"groupField\",\"funcname\":\"\",\"style\":17},\"2\":{\"text\":\"#{jm.group(dept)}\",\"style\":17,\"aggregate\":\"group\",\"funcname\":\"\"},\"3\":{\"text\":\"#{jm.dynamic(price)}\",\"style\":26,\"aggregate\":\"dynamic\"},\"4\":{\"style\":26,\"text\":\"#{jm.dynamic(amount)}\",\"aggregate\":\"dynamic\",\"subtotal\":\"\",\"funcname\":\"SUM\"},\"5\":{\"text\":\"#{jm.compute(price*amount)}\",\"aggregate\":\"dynamic\",\"style\":26,\"subtotal\":\"\",\"funcname\":\"SUM\"}}},\"9\":{\"cells\":{},\"height\":37},\"len\":10},\"dbexps\":[],\"dicts\":[],\"rpbar\":{\"show\":true,\"pageSize\":\"\",\"btnList\":[]},\"groupField\":\"jm.areaname\",\"fixedPrintHeadRows\":[],\"fixedPrintTailRows\":[],\"freeze\":\"A1\",\"dataRectWidth\":656,\"displayConfig\":{},\"background\":false,\"name\":\"sheet1\",\"autofilter\":{},\"styles\":[{\"border\":{\"bottom\":[\"thin\",\"#000\"],\"top\":[\"thin\",\"#000\"],\"left\":[\"thin\",\"#000\"],\"right\":[\"thin\",\"#000\"]}},{\"border\":{\"bottom\":[\"thin\",\"#000\"],\"top\":[\"thin\",\"#000\"],\"left\":[\"thin\",\"#000\"],\"right\":[\"thin\",\"#000\"]},\"bgcolor\":\"#d8d8d8\"},{\"bgcolor\":\"#d8d8d8\"},{\"border\":{\"bottom\":[\"thin\",\"#000\"],\"top\":[\"thin\",\"#000\"],\"left\":[\"thin\",\"#000\"],\"right\":[\"thin\",\"#000\"]},\"bgcolor\":\"#71ae47\"},{\"bgcolor\":\"#71ae47\"},{\"border\":{\"bottom\":[\"thin\",\"#000\"],\"top\":[\"thin\",\"#000\"],\"left\":[\"thin\",\"#000\"],\"right\":[\"thin\",\"#000\"]},\"bgcolor\":\"#c45a10\"},{\"bgcolor\":\"#c45a10\"},{\"border\":{\"bottom\":[\"thin\",\"#000\"],\"top\":[\"thin\",\"#000\"],\"left\":[\"thin\",\"#000\"],\"right\":[\"thin\",\"#000\"]},\"bgcolor\":\"#7f7f7f\"},{\"bgcolor\":\"#7f7f7f\"},{\"border\":{\"bottom\":[\"thin\",\"#000\"],\"top\":[\"thin\",\"#000\"],\"left\":[\"thin\",\"#000\"],\"right\":[\"thin\",\"#000\"]},\"bgcolor\":\"#ffffff\"},{\"bgcolor\":\"#ffffff\"},{\"border\":{\"bottom\":[\"thin\",\"#000\"],\"top\":[\"thin\",\"#000\"],\"left\":[\"thin\",\"#000\"],\"right\":[\"thin\",\"#000\"]},\"bgcolor\":\"#5b9cd6\"},{\"bgcolor\":\"#5b9cd6\"},{\"border\":{\"bottom\":[\"thin\",\"#000\"],\"top\":[\"thin\",\"#000\"],\"left\":[\"thin\",\"#000\"],\"right\":[\"thin\",\"#000\"]},\"bgcolor\":\"#d0cecf\"},{\"bgcolor\":\"#d0cecf\"},{\"border\":{\"bottom\":[\"thin\",\"#000\"],\"top\":[\"thin\",\"#000\"],\"left\":[\"thin\",\"#000\"],\
|
|
|
|
|
INSERT INTO `jimu_report` VALUES ('590831722099462144', '20210826192130', '分栏示例', NULL, NULL, 'datainfo', '{\"loopBlockList\":[{\"sci\":1,\"sri\":2,\"eci\":5,\"eri\":5,\"index\":1,\"db\":\"jm\",\"loopTime\":3}],\"area\":{\"sri\":1,\"sci\":5,\"eri\":1,\"eci\":6,\"width\":154,\"height\":59},\"excel_config_id\":\"590831722099462144\",\"printConfig\":{\"paper\":\"A4\",\"width\":210,\"height\":297,\"definition\":1,\"isBackend\":false,\"marginX\":10,\"marginY\":10,\"layout\":\"portrait\"},\"zonedEditionList\":[],\"rows\":{\"0\":{\"cells\":{},\"height\":44},\"1\":{\"cells\":{\"2\":{\"style\":13,\"text\":\"\"},\"4\":{\"style\":14},\"5\":{\"style\":15,\"text\":\"分栏示例\",\"merge\":[0,1],\"height\":59},\"6\":{\"style\":16},\"8\":{\"style\":9,\"text\":\"说明:需要对多行区域进行循环且分栏展示时,则进行循环块设置并指定横向循环次数;参考文档:http://report.jeecg.com/2373085\",\"merge\":[0,2],\"height\":59}},\"height\":59},\"2\":{\"cells\":{\"1\":{\"text\":\"\",\"loopBlock\":1},\"2\":{\"text\":\"职员信息\",\"style\":2,\"merge\":[0,1],\"height\":34,\"loopBlock\":1},\"3\":{\"loopBlock\":1},\"4\":{\"text\":\"\",\"loopBlock\":1},\"5\":{\"text\":\"\",\"loopBlock\":1}},\"height\":51},\"3\":{\"cells\":{\"1\":{\"text\":\"姓名\",\"style\":4,\"loopBlock\":1},\"2\":{\"text\":\"性别\",\"style\":4,\"loopBlock\":1},\"3\":{\"text\":\"职务\",\"style\":4,\"loopBlock\":1},\"4\":{\"text\":\"联系方式\",\"style\":4,\"loopBlock\":1},\"5\":{\"text\":\"\",\"loopBlock\":1}},\"height\":31},\"4\":{\"cells\":{\"1\":{\"text\":\"#{jm.name}\",\"style\":0,\"loopBlock\":1},\"2\":{\"text\":\"#{jm.sex}\",\"style\":0,\"loopBlock\":1},\"3\":{\"text\":\"#{jm.update_by}\",\"style\":0,\"loopBlock\":1},\"4\":{\"text\":\"#{jm.jphone}\",\"style\":0,\"loopBlock\":1},\"5\":{\"text\":\"\",\"loopBlock\":1}}},\"5\":{\"cells\":{\"1\":{\"text\":\"\",\"loopBlock\":1},\"2\":{\"loopBlock\":1},\"3\":{\"text\":\"\",\"loopBlock\":1},\"4\":{\"text\":\"\",\"loopBlock\":1},\"5\":{\"text\":\"\",\"loopBlock\":1}},\"height\":34},\"len\":103},\"dbexps\":[],\"dicts\":[],\"rpbar\":{\"show\":true,\"pageSize\":\"\",\"btnList\":[]},\"freeze\":\"A1\",\"dataRectWidth\":817,\"displayConfig\":{},\"background\":false,\"name\":\"sheet1\",\"autofilter\":{},\"styles\":[{\"border\":{\"bottom\":[\"thin\",\"#000\"],\"top\":[\"thin\",\"#000\"],\"left\":[\"thin\",\"#000\"],\"right\":[\"thin\",\"#000\"]}},{\"font\":{\"size\":14}},{\"font\":{\"size\":14},\"align\":\"center\"},{\"border\":{\"bottom\":[\"thin\",\"#000\"],\"top\":[\"thin\",\"#000\"],\"left\":[\"thin\",\"#000\"],\"right\":[\"thin\",\"#000\"]},\"font\":{\"size\":11}},{\"border\":{\"bottom\":[\"thin\",\"#000\"],\"top\":[\"thin\",\"#000\"],\"left\":[\"thin\",\"#000\"],\"right\":[\"thin\",\"#000\"]},\"font\":{\"size\":11},\"bgcolor\":\"#f2f2f2\"},{\"font\":{\"size\":12}},{\"font\":{\"size\":15}},{\"font\":{\"size\":15},\"align\":\"center\"},{\"textwrap\":true},{\"textwrap\":true,\"color\":\"#fe0000\"},{\"color\":\"#fe0000\"},{\"textwrap\":true,\"color\":\"#000100\"},{\"color\":\"#000100\"},{\"textwrap\":true,\"color\":\"#000100\",\"font\":{\"size\":15}},{\"color\":\"#000100\",\"font\":{\"size\":15}},{\"color\":\"#000100\",\"font\":{\"size\":18}},{\"font\":{\"size\":18}}],\"validations\":[],\"cols\":{\"0\":{\"width\":72},\"3\":{\"width\":101},\"4\":{\"width\":90},\"5\":{\"width\":54},\"len\":50},\"merges\":[\"I2:K2\",\"C3:D3\",\"F2:G2\"]}', NULL, 'https://static.jeecg.com/designreport/images/fl_1630235558373.png', 'admin', '2021-08-26 19:21:30', 'admin', '2021-08-29 19:12:38', 0, NULL, NULL, 1, 2548, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report` VALUES ('590835562513256448', '20210826193641', '分版示例', NULL, NULL, 'datainfo', '{\"loopBlockList\":[],\"area\":{\"sri\":1,\"sci\":8,\"eri\":1,\"eci\":8,\"width\":100,\"height\":65},\"excel_config_id\":\"590835562513256448\",\"printConfig\":{\"paper\":\"A4\",\"width\":210,\"height\":297,\"definition\":1,\"isBackend\":false,\"marginX\":10,\"marginY\":10,\"layout\":\"portrait\"},\"zonedEditionList\":[{\"sci\":4,\"sri\":3,\"eci\":6,\"eri\":4,\"db\":\"flapi\",\"index\":1},{\"sci\":8,\"sri\":4,\"eci\":9,\"eri\":5,\"db\":\"flapi\",\"index\":2}],\"rows\":{\"0\":{\"cells\":{\"3\":{\"text\":\"\",\"style\":9,\"merge\":[0,1],\"height\":72}},\"height\":60},\"1\":{\"cells\":{\"3\":{\"style\":18,\"text\":\"分版示例\",\"merge\":[0,1],\"height\":65},\"5\":{\"merge\":[0,2],\"height\":65,\"text\":\"说明:当报表左侧已有表格,右侧仍需要展示表格时,需使用分版功能;参考文档:http://report.jeecg.com/2373086\",\"style\":20},\"6\":{\"style\":15},\"7\":{\"style\":15}},\"height\":65},\"2\":{\"cells\":{\"1\":{\"text\":\"表1\",\"style\":7},\"5\":{\"text\":\"表2\",\"style\":7}},\"height\":41},\"3\":{\"cells\":{\"0\":{\"text\":\"姓名\",\"style\":2},\"1\":{\"text\":\"性别\",\"style\":2},\"2\":{\"text\":\"年龄\",\"style\":2},\"4\":{\"text\":\"省份\",\"style\":2,\"zonedEdition\":1},\"5\":{\"style\":2,\"zonedEdition\":1,\"text\":\"月份\"},\"6\":{\"style\":2,\"zonedEdition\":1,\"text\":\"金额\"},\"8\":{\"text\":\"表3\",\"style\":8}},\"height\":35},\"4\":{\"cells\":{\"0\":{\"text\":\"#{jm.name}\",\"style\":0},\"1\":{\"text\":\"#{jm.sex}\",\"style\":0},\"2\":{\"text\":\"#{jm.age}\",\"style\":0},\"4\":{\"text\":\"#{flapi.dept}\",\"style\":0,\"zonedEdition\":1},\"5\":{\"style\":0,\"zonedEdition\":1,\"text\":\"#{flapi.month}月\"},\"6\":{\"style\":0,\"zonedEdition\":1,\"text\":\"#{flapi.amount}\"},\"8\":{\"text\":\"年份\",\"style\":2,\"zonedEdition\":2},\"9\":{\"text\":\"金额\",\"style\":2,\"zonedEdition\":2}},\"height\":30},\"5\":{\"cells\":{\"8\":{\"text\":\"#{flapi.year}年\",\"style\":0,\"zonedEdition\":2},\"9\":{\"text\":\"#{flapi.settleamount}\",\"style\":0,\"zonedEdition\":2}}},\"len\":103},\"dbexps\":[],\"dicts\":[],\"rpbar\":{\"show\":true,\"pageSize\":\"\",\"btnList\":[]},\"freeze\":\"A1\",\"dataRectWidth\":930,\"displayConfig\":{},\"background\":false,\"name\":\"sheet1\",\"autofilter\":{},\"styles\":[{\"border\":{\"bottom\":[\"thin\",\"#000\"],\"top\":[\"thin\",\"#000\"],\"left\":[\"thin\",\"#000\"],\"right\":[\"thin\",\"#000\"]}},{\"border\":{\"bottom\":[\"thin\",\"#000\"],\"top\":[\"thin\",\"#000\"],\"left\":[\"thin\",\"#000\"],\"right\":[\"thin\",\"#000\"]},\"font\":{\"size\":12}},{\"border\":{\"bottom\":[\"thin\",\"#000\"],\"top\":[\"thin\",\"#000\"],\"left\":[\"thin\",\"#000\"],\"right\":[\"thin\",\"#000\"]},\"font\":{\"size\":12},\"bgcolor\":\"#f2f2f2\"},{},{\"border\":{\"bottom\":[\"thin\",\"#000\"],\"top\":[\"thin\",\"#000\"],\"left\":[\"thin\",\"#000\"],\"right\":[\"thin\",\"#000\"]},\"bgcolor\":\"#f2f2f2\"},{\"font\":{\"size\":15}},{\"font\":{\"size\":12}},{\"font\":{\"size\":12},\"align\":\"center\"},{\"font\":{\"size\":12},\"align\":\"right\"},{\"font\":{\"size\":15},\"align\":\"center\"},{\"font\":{\"size\":15},\"align\":\"left\"},{\"textwrap\":true},{\"textwrap\":true,\"border\":{\"bottom\":[\"thin\",\"#fe0000\"],\"top\":[\"thin\",\"#fe0000\"],\"left\":[\"thin\",\"#fe0000\"],\"right\":[\"thin\",\"#fe0000\"]}},{\"textwrap\":true,\"border\":{\"bottom\":[\"thin\",\"#ffffff\"],\"top\":[\"thin\",\"#ffffff\"],\"left\":[\"thin\",\"#ffffff\"],\"right\":[\"thin\",\"#ffffff\"]}},{\"textwrap\":true,\"border\":{\"bottom\":[\"thin\",\"#ffffff\"],\"top\":[\"thin\",\"#ffffff\"],\"left\":[\"thin\",\"#ffffff\"],\"right\":[\"thin\",\"#ffffff\"]},\"color\":\"#fe0000\"},{\"color\":\"#fe0000\"},{\"textwrap\":true,\"border\":{\"bottom\":[\"thin\",\"#ffffff\"],\"top\":[\"thin\",\"#ffffff\"],\"left\":[\"thin\",\"#ffffff\"],\"right\":[\"thin\",\"#ffffff\"]},\"color\":\"#000100\"},{\"color\":\"#000100\"},{\"textwrap\":true,\"border\":{\"bottom\":[\"thin\",\"#ffffff\"],
|
|
|
|
|
INSERT INTO `jimu_report` VALUES ('592957394477469696', '20201215151426612465700180', '存储过程示例', NULL, NULL, 'datainfo', '{\"loopBlockList\":[],\"printConfig\":{\"paper\":\"A4\",\"width\":210,\"height\":297,\"definition\":1,\"isBackend\":false,\"marginX\":10,\"marginY\":10},\"dbexps\":[],\"toolPrintSizeObj\":{\"printType\":\"A4\",\"widthPx\":718,\"heightPx\":1047},\"dicts\":[],\"freeze\":\"A1\",\"dataRectWidth\":1689,\"autofilter\":{},\"validations\":[],\"cols\":{\"0\":{\"width\":48},\"1\":{\"width\":107},\"2\":{\"width\":142},\"3\":{\"width\":144},\"4\":{\"width\":142},\"5\":{\"width\":130},\"6\":{\"width\":131},\"7\":{\"width\":235},\"8\":{\"width\":230},\"9\":{\"width\":148},\"10\":{\"width\":132},\"len\":100},\"area\":false,\"excel_config_id\":\"592957394477469696\",\"zonedEditionList\":[],\"rows\":{\"0\":{\"cells\":{\"1\":{\"text\":\"存储过程示例\",\"style\":64,\"merge\":[0,1],\"height\":44},\"2\":{},\"3\":{\"style\":68,\"merge\":[0,2],\"height\":57,\"text\":\" \"}},\"height\":57},\"1\":{\"cells\":{\"1\":{\"text\":\"职务\",\"style\":51},\"2\":{\"text\":\"雇员ID\",\"style\":51},\"3\":{\"text\":\"姓名\",\"style\":51},\"4\":{\"style\":51,\"text\":\"性别\"},\"5\":{\"text\":\"雇佣日期\",\"style\":51},\"6\":{\"text\":\"家庭电话\",\"style\":51},\"7\":{\"text\":\"出生日期\",\"style\":51},\"8\":{\"text\":\"户口所在地\",\"style\":51},\"9\":{\"text\":\"联系地址\",\"style\":51},\"10\":{\"text\":\"紧急联系人\",\"style\":51},\"11\":{\"style\":51,\"text\":\"分类\"}},\"height\":46},\"2\":{\"cells\":{\"1\":{\"text\":\"#{pop.group(update_by)}\",\"style\":61,\"aggregate\":\"group\"},\"2\":{\"text\":\"#{pop.group(id)}\",\"style\":54,\"aggregate\":\"group\"},\"3\":{\"text\":\"#{pop.group(name)}\",\"style\":54,\"aggregate\":\"group\"},\"4\":{\"text\":\"#{pop.sex}\",\"style\":55},\"5\":{\"text\":\"#{pop.gtime}\",\"style\":56},\"6\":{\"text\":\"#{pop.jphone}\",\"style\":57},\"7\":{\"text\":\"#{pop.birth}\",\"style\":56},\"8\":{\"text\":\"#{pop.hukou}\",\"style\":58},\"9\":{\"text\":\"#{pop.laddress}\",\"style\":57},\"10\":{\"text\":\"#{pop.jperson}\",\"style\":57},\"11\":{\"style\":57,\"text\":\"#{pop.type}\"}},\"isDrag\":true,\"height\":35},\"5\":{\"cells\":{\"2\":{\"text\":\"\"}},\"isDrag\":true},\"len\":99},\"rpbar\":{\"show\":true,\"btnList\":[]},\"groupField\":\"pop.update_by\",\"fixedPrintHeadRows\":[],\"fixedPrintTailRows\":[],\"displayConfig\":{},\"background\":false,\"name\":\"sheet1\",\"styles\":[{\"bgcolor\":\"#5b9cd6\"},{\"bgcolor\":\"#5b9cd6\",\"color\":\"#ffffff\"},{\"color\":\"#ffffff\"},{\"align\":\"center\"},{\"bgcolor\":\"#5b9cd6\",\"color\":\"#ffffff\",\"align\":\"center\"},{\"bgcolor\":\"#02a274\",\"color\":\"#ffffff\",\"align\":\"center\"},{\"bgcolor\":\"#02a274\",\"color\":\"#ffffff\",\"align\":\"center\",\"border\":{\"bottom\":[\"thin\",\"#bfbfbf\"],\"top\":[\"thin\",\"#bfbfbf\"],\"left\":[\"thin\",\"#bfbfbf\"],\"right\":[\"thin\",\"#bfbfbf\"]}},{\"border\":{\"bottom\":[\"thin\",\"#bfbfbf\"],\"top\":[\"thin\",\"#bfbfbf\"],\"left\":[\"thin\",\"#bfbfbf\"],\"right\":[\"thin\",\"#bfbfbf\"]}},{\"border\":{\"bottom\":[\"thin\",\"#bfbfbf\"],\"top\":[\"thin\",\"#bfbfbf\"],\"left\":[\"thin\",\"#bfbfbf\"],\"right\":[\"thin\",\"#bfbfbf\"]},\"bgcolor\":\"#f1f9f6\"},{\"border\":{\"bottom\":[\"thin\",\"#bfbfbf\"],\"top\":[\"thin\",\"#bfbfbf\"],\"left\":[\"thin\",\"#bfbfbf\"],\"right\":[\"thin\",\"#bfbfbf\"]},\"bgcolor\":\"#ddefe8\"},{\"font\":{\"size\":8}},{\"border\":{\"bottom\":[\"thin\",\"#bfbfbf\"],\"top\":[\"thin\",\"#bfbfbf\"],\"left\":[\"thin\",\"#bfbfbf\"],\"right\":[\"thin\",\"#bfbfbf\"]},\"bgcolor\":\"#f1f9f6\",\"font\":{\"size\":8}},{\"border\":{\"bottom\":[\"thin\",\"#bfbfbf\"],\"top\":[\"thin\",\"#bfbfbf\"],\"left\":[\"thin\",\"#bfbfbf\"],\"right\":[\"thin\",\"#bfbfbf\"]},\"bgcolor\":\"#ddefe8\",\"font\":{\"size\":8}},{\"border\":{\"bottom\":[\"thin\",\"#bfbfbf\"],\"top\":[\"thin\",\"#bfbfbf\"],\"left\":[\"thin\",\"#bfbfbf\"],\"right\":[\"thin\",\"#bfbfbf\"]},\"font\":{\"size\":8}},{\"font\":{\"size\":9}},{\"border\":{\"bottom\":[\"thin\",\"#bfbfbf\"],\"top\":[\"th
|
|
|
|
|
INSERT INTO `jimu_report` VALUES ('6059e405dd9c66a6d38e00841d2e40cc', '566777', '处方笺', '', NULL, 'printinfo', '{\"loopBlockList\":[],\"area\":{\"sri\":10,\"sci\":5,\"eri\":10,\"eci\":6,\"width\":72,\"height\":25},\"excel_config_id\":\"6059e405dd9c66a6d38e00841d2e40cc\",\"printConfig\":{\"paper\":\"A4\",\"width\":210,\"height\":297,\"definition\":1,\"isBackend\":false},\"rows\":{\"0\":{\"cells\":{\"3\":{\"style\":80,\"text\":\" \"}},\"height\":96},\"1\":{\"cells\":{\"1\":{\"style\":24,\"text\":\" \"},\"2\":{\"style\":25,\"text\":\" \"},\"3\":{\"style\":25,\"text\":\" \"},\"4\":{\"style\":25,\"text\":\" \"},\"5\":{\"style\":25,\"text\":\" \"},\"6\":{\"style\":25,\"text\":\" \"},\"7\":{\"style\":25,\"text\":\" \"},\"8\":{\"style\":25,\"text\":\" \"},\"9\":{\"style\":25,\"text\":\" \"},\"10\":{\"style\":25,\"text\":\" \"},\"11\":{\"style\":25,\"text\":\" \"},\"12\":{\"style\":26,\"text\":\" \"}},\"height\":18},\"2\":{\"cells\":{\"1\":{\"text\":\" \",\"style\":27},\"2\":{\"merge\":[0,9],\"text\":\"智能医学院处方笺\",\"style\":38},\"3\":{\"style\":12,\"text\":\" \"},\"4\":{\"style\":12,\"text\":\" \"},\"5\":{\"style\":12,\"text\":\" \"},\"6\":{\"style\":12,\"text\":\" \"},\"7\":{\"style\":12,\"text\":\" \"},\"8\":{\"style\":12,\"text\":\" \"},\"9\":{\"text\":\" \"},\"10\":{\"style\":12,\"text\":\" \"},\"11\":{\"style\":12,\"text\":\" \"},\"12\":{\"style\":28,\"text\":\" \"},\"13\":{\"style\":80}},\"height\":124},\"3\":{\"cells\":{\"1\":{\"text\":\" \",\"style\":46},\"2\":{\"merge\":[0,1],\"text\":\"姓名:\",\"style\":4},\"3\":{\"style\":4,\"text\":\" \"},\"4\":{\"text\":\"${yonghu.yphone}\"},\"5\":{\"text\":\"性别:\",\"style\":42},\"6\":{\"text\":\"${yonghu.ysex}\",\"style\":42},\"7\":{\"text\":\"年龄:\",\"style\":47},\"8\":{\"text\":\"${yonghu.yage}\"},\"9\":{\"text\":\" \"},\"10\":{\"text\":\" \",\"style\":42},\"11\":{\"style\":69,\"text\":\" \",\"merge\":[0,1]},\"12\":{\"style\":43,\"text\":\" \"},\"13\":{\"style\":80}},\"isDrag\":true},\"4\":{\"cells\":{\"1\":{\"text\":\" \",\"style\":74},\"2\":{\"style\":4,\"merge\":[0,1],\"text\":\"单位:\"},\"3\":{\"style\":4,\"text\":\" \"},\"4\":{\"text\":\"${yonghu.danwei}\"},\"5\":{\"text\":\"电话:\"},\"6\":{\"text\":\"${yonghu.yphone}\",\"merge\":[0,5]},\"7\":{\"text\":\" \"},\"8\":{\"text\":\" \"},\"9\":{\"text\":\" \"},\"10\":{\"text\":\" \"},\"11\":{\"text\":\" \"},\"12\":{\"style\":28,\"text\":\" \"},\"15\":{\"text\":\"\"}},\"isDrag\":true,\"height\":29},\"5\":{\"cells\":{\"1\":{\"style\":31,\"text\":\" \"},\"2\":{\"merge\":[0,1],\"text\":\"初步诊断:\",\"style\":4},\"3\":{\"text\":\" \",\"style\":4},\"4\":{\"text\":\"${yonghu.yjieguo}\",\"merge\":[0,7]},\"5\":{\"text\":\" \"},\"6\":{\"text\":\" \"},\"7\":{\"text\":\" \"},\"8\":{\"text\":\" \"},\"9\":{\"text\":\" \"},\"10\":{\"text\":\" \"},\"11\":{\"text\":\" \"},\"12\":{\"style\":28,\"text\":\" \"}},\"isDrag\":true,\"height\":34},\"6\":{\"cells\":{\"1\":{\"text\":\" RP:\",\"merge\":[0,2],\"style\":79},\"2\":{\"style\":11,\"text\":\" \"},\"3\":{\"style\":11,\"text\":\" \"},\"4\":{\"style\":39,\"text\":\" \"},\"5\":{\"style\":0,\"text\":\" \"},\"6\":{\"style\":0,\"text\":\" \"},\"7\":{\"style\":0,\"text\":\" \"},\"8\":{\"style\":0,\"text\":\" \"},\"9\":{\"text\":\" \"},\"10\":{\"style\":0,\"text\":\" \"},\"11\":{\"text\":\" \"},\"12\":{\"style\":28,\"text\":\" \"},\"14\":{},\"16\":{}},\"height\":79},\"7\":{\"cells\":{\"1\":{\"text\":\".\",\"style\":48},\"2\":{\"text\":\"\",\"style\":1},\"3\":{\"text\":\"#{yaopin.name}\",\"rendered\":\"\",\"merge\":[0,1]},\"5\":{},\"6\":{},\"7\":{\"text\":\"#{yaopin.percent}\",\"merge\":[0,1]},\"9\":{},\"10\":{},\"11\":{\"text\":\"\"},\"12\":{\"style\":28,\"text\":\" \"},\"14\":{}},\"isDrag\":true,\"height\":37},\"8\":{\"cells\":{\"1\":{\"style\":31,\"text\":\" \"},\"2\":{\"text\":\" \"},\"3\":{\"text\":\" \"},\"4\":{\"text\":\" \"},\"5\":{\"text\":\" \"},\"6\":{\"text\":\" \"},\"7\":{\"text\":\" \"},\"8\":{\"text\":\" \"},\"9\":{\"text\":\" \"},\"10\":{\"text\":\" \"},\"11\":{\"text\":\" \"},\"12\":{\"style\":28,\"text\":\" \"}},\"height\":27},\"9\":{\"ce
|
|
|
|
|
INSERT INTO `jimu_report` VALUES ('6d6bdcb5e820c301ea32789e3ae43c44', '1223', '供电公司抢修单', '', NULL, 'printinfo', '{\"loopBlockList\":[],\"area\":{\"sri\":16,\"sci\":2,\"eri\":16,\"eci\":6,\"width\":555,\"height\":107},\"printElWidth\":718,\"excel_config_id\":\"6d6bdcb5e820c301ea32789e3ae43c44\",\"printElHeight\":1047,\"rows\":{\"0\":{\"cells\":{},\"height\":11},\"1\":{\"cells\":{\"1\":{\"text\":\"供电公司抢修竣工单\",\"merge\":[0,5],\"style\":39},\"2\":{\"style\":39},\"3\":{\"style\":39},\"4\":{\"style\":39},\"5\":{\"style\":39},\"6\":{\"style\":39}},\"height\":84},\"2\":{\"cells\":{\"1\":{\"text\":\"填报单位:\",\"style\":26},\"2\":{\"text\":\"#{qiangxiu.danwei}\",\"style\":27},\"3\":{\"style\":27},\"4\":{\"text\":\"\",\"style\":27},\"5\":{\"text\":\"填报日期:\",\"style\":26},\"6\":{\"text\":\"#{qiangxiu.time}\",\"style\":27}}},\"3\":{\"cells\":{\"1\":{\"text\":\"填报名称:\",\"style\":26},\"2\":{\"text\":\"#{qiangxiu.ktime}\",\"style\":27},\"3\":{\"style\":27},\"4\":{\"style\":27},\"5\":{\"text\":\"项目编号:\",\"style\":26},\"6\":{\"text\":\"#{qiangxiu.wtime}\",\"style\":27}}},\"4\":{\"cells\":{\"1\":{\"style\":28},\"2\":{\"style\":28},\"3\":{\"style\":28},\"4\":{\"style\":28},\"5\":{\"style\":28},\"6\":{\"style\":28}},\"height\":10},\"5\":{\"cells\":{\"1\":{\"text\":\"项目批准核算\",\"style\":29},\"2\":{\"text\":\"#{qiangxiu.yusuan}\",\"style\":30,\"merge\":[0,4]}},\"height\":89},\"6\":{\"cells\":{\"1\":{\"text\":\"开工日期\",\"style\":32},\"2\":{\"style\":33,\"text\":\"#{qiangxiu.ktime}\",\"merge\":[0,1]},\"3\":{\"style\":28},\"4\":{\"style\":34,\"text\":\"完工日期\"},\"5\":{\"style\":33,\"merge\":[0,1],\"text\":\"#{qiangxiu.wtime}\"},\"6\":{\"style\":28}},\"height\":31},\"7\":{\"cells\":{\"1\":{\"text\":\"完工主要内容\",\"style\":32},\"2\":{\"style\":33,\"text\":\"#{qiangxiu.neirong}\",\"merge\":[0,4]}},\"height\":71},\"8\":{\"cells\":{\"1\":{\"text\":\"形成能力\",\"style\":32},\"2\":{\"style\":33,\"merge\":[0,4],\"text\":\"#{qiangxiu.nengli}\"},\"3\":{\"style\":28},\"4\":{\"style\":28},\"5\":{\"style\":28},\"6\":{\"style\":28}},\"height\":49},\"9\":{\"cells\":{\"1\":{\"text\":\"目标效益验收意见\",\"style\":32},\"2\":{\"style\":35,\"text\":\"#{qiangxiu.yijian}\",\"merge\":[0,4]}},\"height\":100},\"10\":{\"cells\":{\"1\":{\"style\":37,\"text\":\" \",\"merge\":[0,3]},\"2\":{\"style\":28},\"3\":{\"style\":28},\"4\":{\"style\":28},\"5\":{\"style\":37,\"text\":\"#{qiangxiu.time1}\",\"merge\":[0,1]},\"6\":{\"style\":28}}},\"11\":{\"cells\":{\"1\":{\"text\":\"实施质量验收评价\",\"style\":32},\"2\":{\"style\":35,\"text\":\"#{qiangxiu.pingjia}\",\"merge\":[0,4]}},\"height\":99},\"12\":{\"cells\":{\"1\":{\"style\":33,\"merge\":[0,3]},\"2\":{\"style\":28},\"3\":{\"style\":28},\"4\":{\"style\":28},\"5\":{\"style\":33,\"merge\":[0,1],\"text\":\"#{qiangxiu.time1}\"},\"6\":{\"style\":28}}},\"13\":{\"cells\":{\"1\":{\"text\":\"验收总结\",\"style\":32},\"2\":{\"style\":35,\"text\":\"#{qiangxiu.zongjie}\",\"rendered\":\"\",\"merge\":[0,4]}},\"height\":80},\"14\":{\"cells\":{\"1\":{\"text\":\"责任单位意见\",\"style\":32},\"2\":{\"style\":33,\"text\":\"#{qiangxiu.zongjie}\",\"merge\":[0,4]}},\"height\":67},\"15\":{\"cells\":{\"1\":{\"text\":\"责任单位审核人\",\"style\":32},\"2\":{\"style\":33,\"merge\":[0,1],\"text\":\"#{qiangxiu.dshenhe}\"},\"3\":{\"style\":28},\"4\":{\"style\":34,\"text\":\"日期\"},\"5\":{\"style\":33,\"text\":\"#{qiangxiu.time3}\",\"merge\":[0,1]},\"6\":{\"style\":28}},\"height\":42},\"16\":{\"cells\":{\"1\":{\"text\":\"生技部审批意见\",\"style\":32},\"2\":{\"style\":33,\"text\":\"#{qiangxiu.zongjie}\",\"merge\":[0,4]}},\"height\":107},\"17\":{\"cells\":{\"1\":{\"text\":\"生技部主任\",\"style\":32},\"2\":{\"style\":33,\"merge\":[0,1],\"text\":\"#{qiangxiu.zhuren}\"},\"3\":{\"style\":28},\"4\":{\"style\":34,\"text\":\"日期\"},\"5\":{\"style\":33,\"text\":\"#{qiangxiu.time4}\",\"merge\":[
|
|
|
|
|
INSERT INTO `jimu_report` VALUES ('753506001105539072', '20221118170243', '分版错误报表', NULL, NULL, 'printinfo', '{\"loopBlockList\":[],\"area\":{\"sri\":9,\"sci\":3,\"eri\":9,\"eci\":3,\"width\":100,\"height\":25},\"excel_config_id\":\"753506001105539072\",\"printConfig\":{\"paper\":\"A4\",\"width\":210,\"height\":297,\"definition\":1,\"isBackend\":false,\"marginX\":10,\"marginY\":10,\"layout\":\"portrait\",\"printCallBackUrl\":\"\"},\"zonedEditionList\":[{\"sci\":0,\"sri\":7,\"eci\":1,\"eri\":8,\"db\":\"test02\",\"index\":1}],\"rows\":{\"0\":{\"cells\":{\"0\":{\"text\":\"序号\",\"style\":0},\"1\":{\"text\":\"图片\",\"style\":0},\"2\":{\"text\":\"批次号\",\"style\":0},\"3\":{\"text\":\"款式编码\",\"style\":0},\"4\":{\"text\":\"款式名称\",\"style\":0},\"5\":{\"text\":\"颜色\",\"style\":0},\"6\":{\"text\":\"交期\",\"style\":0}},\"height\":25},\"1\":{\"cells\":{\"0\":{\"style\":0,\"text\":\"=row()\"},\"1\":{\"style\":0,\"text\":\"#{test01.s_cover_img_url}\",\"rendered\":\"\",\"config\":\"\",\"display\":\"img\"},\"2\":{\"style\":0,\"text\":\"#{test01.s_lot_no}\"},\"3\":{\"style\":0,\"text\":\"#{test01.s_item_code}\"},\"4\":{\"style\":0,\"text\":\"#{test01.s_full_name}\"},\"5\":{\"style\":0,\"text\":\"#{test01.modelcolor}\"},\"6\":{\"style\":0,\"text\":\"#{test01.d_delivery_date}\"}}},\"2\":{\"cells\":{\"1\":{\"text\":\"\",\"rendered\":\"\",\"config\":\"\"}}},\"7\":{\"cells\":{\"0\":{\"text\":\"code\"},\"1\":{\"text\":\"name\"}}},\"8\":{\"cells\":{\"0\":{\"text\":\"#{test02.suit_item_code}\"},\"1\":{\"text\":\"#{test02.suit_full_name}\"}}},\"len\":101},\"dbexps\":[],\"dicts\":[],\"rpbar\":{\"show\":true,\"pageSize\":\"\",\"btnList\":[]},\"fixedPrintHeadRows\":[],\"fixedPrintTailRows\":[],\"freeze\":\"A1\",\"dataRectWidth\":1035,\"displayConfig\":{},\"background\":false,\"name\":\"sheet1\",\"autofilter\":{},\"styles\":[{\"border\":{\"bottom\":[\"thin\",\"#000\"],\"top\":[\"thin\",\"#000\"],\"left\":[\"thin\",\"#000\"],\"right\":[\"thin\",\"#000\"]}}],\"validations\":[],\"cols\":{\"0\":{\"width\":144},\"1\":{\"width\":391},\"len\":100},\"merges\":[]}', NULL, NULL, '15629196826', '2022-11-18 17:02:43', 'admin', '2023-08-14 14:13:37', 0, NULL, NULL, 0, 62, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report` VALUES ('7905022412733a0c68dc7b4ef8947489', '8996445', '介绍信', '', NULL, 'printinfo', '{\"loopBlockList\":[],\"area\":{\"sri\":3,\"sci\":1,\"eri\":3,\"eci\":11,\"width\":678,\"height\":216},\"excel_config_id\":\"7905022412733a0c68dc7b4ef8947489\",\"printConfig\":{\"paper\":\"A4\",\"width\":210,\"height\":297,\"definition\":1,\"isBackend\":false,\"marginX\":10,\"marginY\":10},\"zonedEditionList\":[],\"rows\":{\"0\":{\"cells\":{\"1\":{},\"12\":{}},\"height\":11},\"1\":{\"cells\":{},\"height\":24},\"2\":{\"cells\":{},\"isDrag\":true,\"height\":43},\"3\":{\"cells\":{\"0\":{\"text\":\" \",\"style\":46},\"1\":{\"merge\":[0,10],\"text\":\"介绍信\",\"style\":337}},\"height\":216},\"4\":{\"cells\":{\"1\":{\"text\":\"${jieshaoxin.name}\",\"style\":338,\"merge\":[0,3]},\"5\":{\"text\":\":\",\"style\":339}},\"isDrag\":true,\"height\":80},\"5\":{\"cells\":{\"1\":{\"text\":\"兹介绍我局\",\"style\":340,\"merge\":[0,5]},\"7\":{\"text\":\"${jieshaoxin.value}\",\"style\":341},\"8\":{\"text\":\"同志\",\"style\":339},\"9\":{\"text\":\"${jieshaoxin.percent}\",\"style\":339},\"10\":{\"text\":\"人,前往你处\",\"style\":339,\"merge\":[0,1]}},\"isDrag\":true,\"height\":42},\"6\":{\"cells\":{\"1\":{\"text\":\"${jieshaoxin.shiqing}\",\"style\":342,\"merge\":[0,5]},\"15\":{\"text\":\"\"}},\"isDrag\":true,\"height\":48},\"7\":{\"cells\":{\"1\":{\"style\":343,\"text\":\" \"},\"2\":{\"style\":344,\"merge\":[0,5],\"text\":\"请予接洽并给予帮助。\"}},\"height\":56},\"8\":{\"cells\":{},\"height\":15},\"9\":{\"cells\":{},\"height\":11},\"10\":{\"cells\":{\"8\":{\"text\":\" \",\"style\":316,\"merge\":[0,3]}},\"height\":39},\"11\":{\"cells\":{\"8\":{\"merge\":[0,2],\"text\":\"单位盖章\",\"style\":347},\"11\":{\"merge\":[0,1],\"style\":316,\"text\":\" \"}},\"height\":84},\"12\":{\"cells\":{\"1\":{\"merge\":[0,2],\"text\":\" \",\"style\":317},\"4\":{\"merge\":[0,2],\"text\":\" \",\"style\":346},\"7\":{\"text\":\"(有效时间:至\",\"style\":317},\"8\":{\"text\":\"${jieshaoxin.gdata}\",\"style\":316,\"merge\":[0,2]},\"11\":{\"style\":348,\"text\":\"止)\"}},\"isDrag\":true,\"height\":30},\"13\":{\"cells\":{\"1\":{\"merge\":[12,11]}}},\"17\":{\"cells\":{},\"isDrag\":true},\"len\":89},\"dbexps\":[],\"toolPrintSizeObj\":{\"printType\":\"A4\",\"widthPx\":718,\"heightPx\":1047},\"dicts\":[],\"rpbar\":{\"show\":true,\"pageSize\":\"\",\"btnList\":[]},\"fixedPrintHeadRows\":[],\"fixedPrintTailRows\":[],\"freeze\":\"A1\",\"dataRectWidth\":699,\"displayConfig\":{},\"background\":false,\"name\":\"sheet1\",\"autofilter\":{},\"styles\":[{\"align\":\"left\"},{\"align\":\"left\",\"underline\":true},{\"underline\":true},{\"align\":\"center\",\"underline\":true},{\"align\":\"center\"},{\"align\":\"center\",\"underline\":false},{\"align\":\"center\",\"underline\":false,\"border\":{\"bottom\":[\"thin\",\"#000\"]}},{\"align\":\"left\",\"border\":{\"bottom\":[\"thin\",\"#000\"]}},{\"align\":\"left\",\"font\":{\"size\":16}},{\"font\":{\"size\":16}},{\"align\":\"center\",\"underline\":false,\"border\":{\"bottom\":[\"thin\",\"#000\"]},\"font\":{\"size\":16}},{\"align\":\"center\",\"underline\":false,\"font\":{\"size\":16}},{\"align\":\"left\",\"border\":{\"bottom\":[\"thin\",\"#000\"]},\"font\":{\"size\":16}},{\"align\":\"left\",\"font\":{\"size\":16,\"bold\":true}},{\"font\":{\"size\":16,\"bold\":true}},{\"align\":\"center\",\"underline\":false,\"font\":{\"size\":16,\"bold\":true}},{\"align\":\"center\",\"underline\":false,\"border\":{\"bottom\":[\"thin\",\"#000\"]},\"font\":{\"size\":16,\"bold\":true}},{\"font\":{\"bold\":true}},{\"align\":\"left\",\"border\":{\"bottom\":[\"thin\",\"#000\"]},\"font\":{\"size\":16,\"bold\":true}},{\"align\":\"left\",\"font\":{\"size\":16,\"bold\":false}},{\"font\":{\"size\":16,\"bold\":false}},{\"align\":\"center\",\"underline\":false,\"font\":{\"size\":16,\"bold\":false}},{\"align\":\"center\",\"underline\":false,\"border\":{\"bottom\":[\"thin\",\"#000\"]},\"font\":{\"size\":16,\"bold\":false}},{\"font\":{\"bold\":false}},{\"align\":\"left\",\"border\":{\"bottom\":[\"thin\",\"#00
|
|
|
|
|
INSERT INTO `jimu_report` VALUES ('7c02c224a2db56d0350069650033f702', '895666', '核查评估表', '', NULL, 'printinfo', '{\"loopBlockList\":[],\"area\":{\"sri\":5,\"sci\":18,\"eri\":5,\"eci\":18,\"width\":53,\"height\":46},\"printElWidth\":718,\"excel_config_id\":\"7c02c224a2db56d0350069650033f702\",\"printElHeight\":1047,\"rows\":{\"0\":{\"cells\":{\"1\":{\"text\":\"XX县(市、区)YY低保第三方核查评估汇总表\",\"merge\":[0,21],\"style\":386},\"2\":{\"style\":386},\"3\":{\"style\":386},\"4\":{\"style\":386},\"5\":{\"style\":386},\"6\":{\"style\":386},\"7\":{\"style\":386},\"8\":{\"style\":386},\"9\":{\"style\":386},\"10\":{\"style\":386},\"11\":{\"style\":386},\"12\":{\"style\":386},\"13\":{\"style\":386},\"14\":{\"style\":386},\"15\":{\"style\":386},\"16\":{\"style\":386},\"17\":{\"style\":386},\"18\":{\"style\":386},\"19\":{\"style\":386},\"20\":{\"style\":386},\"21\":{\"style\":386},\"22\":{\"style\":386}},\"height\":70},\"1\":{\"cells\":{\"1\":{\"merge\":[0,2],\"style\":403,\"text\":\" 北京市林翠社区\"},\"2\":{\"style\":398,\"text\":\" \"},\"3\":{\"style\":398,\"text\":\" \"},\"4\":{\"merge\":[0,2],\"text\":\"镇(乡、街道办事处)\",\"style\":399},\"5\":{\"style\":399},\"6\":{\"style\":399},\"7\":{\"style\":399,\"merge\":[0,7]},\"8\":{\"style\":400},\"9\":{\"style\":400},\"10\":{\"style\":400},\"11\":{\"style\":400},\"12\":{\"style\":400},\"13\":{\"style\":400},\"14\":{\"style\":400},\"15\":{\"merge\":[0,7],\"text\":\"单位:人、元、套、平方米\",\"style\":398},\"16\":{\"style\":401},\"17\":{\"style\":401},\"18\":{\"style\":401},\"19\":{\"style\":401},\"20\":{\"style\":401},\"21\":{\"style\":401},\"22\":{\"style\":401}}},\"2\":{\"cells\":{\"1\":{\"style\":114},\"2\":{\"style\":114},\"3\":{\"style\":114},\"4\":{\"style\":114},\"5\":{\"style\":114},\"6\":{\"style\":114},\"7\":{\"style\":114},\"8\":{\"style\":114},\"9\":{\"style\":114},\"10\":{\"style\":114},\"11\":{\"style\":114},\"12\":{\"style\":114},\"13\":{\"style\":114},\"14\":{\"style\":114},\"15\":{\"style\":114},\"16\":{\"style\":114},\"17\":{\"style\":114},\"18\":{\"style\":114},\"19\":{\"style\":114},\"20\":{\"style\":114},\"21\":{\"style\":114},\"22\":{\"style\":114}},\"height\":14},\"3\":{\"cells\":{\"1\":{\"style\":406,\"text\":\"村(社区)名称\",\"merge\":[1,0]},\"2\":{\"style\":407,\"text\":\"户主名称\",\"merge\":[1,0]},\"3\":{\"style\":407,\"text\":\"保障编号\",\"merge\":[1,0]},\"4\":{\"style\":408,\"text\":\"家庭人口\",\"merge\":[1,0]},\"5\":{\"style\":409,\"text\":\"家庭住址\",\"merge\":[1,0]},\"6\":{\"style\":409,\"text\":\"联系电话\",\"merge\":[1,0]},\"7\":{\"style\":408,\"text\":\"身份证号码\",\"merge\":[1,0]},\"8\":{\"style\":409,\"text\":\"原保障\",\"merge\":[0,2]},\"9\":{\"style\":377,\"text\":\" \"},\"10\":{\"style\":377,\"text\":\" \"},\"11\":{\"text\":\"核减后月人均收入\",\"style\":408,\"merge\":[1,0]},\"12\":{\"merge\":[0,5],\"text\":\"保障建议\",\"style\":410},\"13\":{\"style\":379,\"text\":\" \"},\"14\":{\"style\":379,\"text\":\" \"},\"15\":{\"style\":379,\"text\":\" \"},\"16\":{\"style\":379,\"text\":\" \"},\"17\":{\"style\":379,\"text\":\" \"},\"18\":{\"text\":\"是否新增对象\",\"style\":411,\"merge\":[1,0]},\"19\":{\"text\":\"建议取消原因\",\"style\":409,\"merge\":[0,3]},\"20\":{\"style\":377,\"text\":\" \"},\"21\":{\"style\":377,\"text\":\" \"},\"22\":{\"style\":377,\"text\":\" \"}}},\"4\":{\"cells\":{\"1\":{\"style\":381,\"text\":\" \"},\"2\":{\"style\":407,\"text\":\" \"},\"3\":{\"style\":382,\"text\":\" \"},\"4\":{\"style\":408,\"text\":\" \"},\"5\":{\"style\":377,\"text\":\" \"},\"6\":{\"style\":409,\"text\":\" \"},\"7\":{\"style\":383,\"text\":\" \"},\"8\":{\"text\":\"户数\",\"style\":412},\"9\":{\"style\":411,\"text\":\"人口\"},\"10\":{\"style\":413,\"text\":\"金额\"},\"11\":{\"style\":383,\"text\":\" \"},\"12\":{\"text\":\"保障类型\",\"style\":408},\"13\":{\"style\":413,\"text\":\"人口\"},\"14\":{\"style\":408,\"text\":\"差额补助\"},\"15\":{\"style\":408,\"text\":\"全额补助\"},\"16\":{\"style\":408,\"tex
|
|
|
|
|
INSERT INTO `jimu_report` VALUES ('850276523718049792', '20230812174413', 'aaa', NULL, NULL, 'datainfo', '{\"loopBlockList\":[],\"area\":{\"sri\":11,\"sci\":4,\"eri\":11,\"eci\":4,\"width\":274,\"height\":25},\"excel_config_id\":\"850276523718049792\",\"printConfig\":{\"paper\":\"A4\",\"width\":210,\"height\":297,\"definition\":1,\"isBackend\":false,\"marginX\":10,\"marginY\":10,\"layout\":\"portrait\",\"printCallBackUrl\":\"\"},\"zonedEditionList\":[],\"rows\":{\"3\":{\"cells\":{\"1\":{\"text\":\"#{aaa.code}\"},\"2\":{\"text\":\"#{aaa.name}\"},\"3\":{\"text\":\"#{aaa.view_count}\"},\"4\":{\"text\":\"\"}}},\"10\":{\"cells\":{\"1\":{\"text\":\"D4值=\",\"style\":1},\"2\":{\"text\":\"=cnmoney(::D4)\"}}},\"26\":{\"cells\":{}},\"len\":200},\"dbexps\":[],\"dicts\":[],\"rpbar\":{\"show\":true,\"pageSize\":\"\",\"btnList\":[]},\"fixedPrintHeadRows\":[],\"fixedPrintTailRows\":[],\"freeze\":\"A1\",\"dataRectWidth\":400,\"displayConfig\":{},\"background\":false,\"name\":\"sheet1\",\"autofilter\":{},\"styles\":[{\"align\":\"right\"},{\"align\":\"center\"}],\"validations\":[],\"cols\":{\"4\":{\"width\":274},\"len\":100},\"merges\":[]}', NULL, NULL, 'admin', '2023-08-12 17:44:13', 'admin', '2023-08-14 10:36:50', 0, NULL, NULL, 0, 52, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report` VALUES ('850286412532121600', '20230812182254', 'api测试', NULL, NULL, 'datainfo', '{\"loopBlockList\":[],\"area\":false,\"excel_config_id\":\"850286412532121600\",\"printConfig\":{\"paper\":\"A4\",\"width\":210,\"height\":297,\"definition\":1,\"isBackend\":false,\"marginX\":10,\"marginY\":10,\"layout\":\"portrait\",\"printCallBackUrl\":\"\"},\"zonedEditionList\":[],\"rows\":{\"3\":{\"cells\":{\"1\":{\"text\":\"#{aaa.ctotal}\"},\"2\":{\"text\":\"#{aaa.cname}\"}}},\"len\":200},\"dbexps\":[],\"dicts\":[],\"rpbar\":{\"show\":true,\"pageSize\":\"\",\"btnList\":[]},\"fixedPrintHeadRows\":[],\"fixedPrintTailRows\":[],\"freeze\":\"A1\",\"dataRectWidth\":300,\"displayConfig\":{},\"background\":false,\"name\":\"sheet1\",\"autofilter\":{},\"styles\":[],\"validations\":[],\"cols\":{\"len\":100},\"merges\":[]}', NULL, NULL, 'jeecg', '2023-08-12 18:22:55', NULL, '2023-08-12 18:22:55', 0, NULL, NULL, 0, 7, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report` VALUES ('850315907339223040', '20210309142400__0615', '简单分组报表副本0615', NULL, NULL, 'datainfo', '{\"loopBlockList\":[],\"area\":{\"sri\":3,\"sci\":2,\"eri\":3,\"eci\":2,\"width\":100,\"height\":54},\"excel_config_id\":\"850315907339223040\",\"printConfig\":{\"paper\":\"A4\",\"width\":210,\"height\":297,\"definition\":4,\"isBackend\":false,\"marginX\":10,\"marginY\":10,\"layout\":\"portrait\"},\"zonedEditionList\":[],\"rows\":{\"1\":{\"cells\":{\"1\":{\"height\":0,\"text\":\"纵向员工信息登记表\",\"style\":2,\"merge\":[0,5]}},\"height\":40},\"2\":{\"cells\":{\"1\":{\"text\":\"部门\",\"style\":15},\"2\":{\"text\":\"学历\",\"style\":15},\"3\":{\"text\":\"姓名\",\"style\":15},\"4\":{\"text\":\"性别\",\"style\":15},\"5\":{\"text\":\"年龄\",\"style\":15},\"6\":{\"text\":\"薪水\",\"style\":15}},\"height\":34},\"3\":{\"cells\":{\"1\":{\"style\":17,\"text\":\"#{tt.group(department)}\",\"aggregate\":\"group\",\"textOrders\":\"人事部|研发部\",\"sort\":\"desc\"},\"2\":{\"style\":17,\"text\":\"#{tt.group(education)}\",\"aggregate\":\"group\",\"sort\":\"default\",\"textOrders\":\"本科|专科\"},\"3\":{\"style\":17,\"text\":\"#{tt.name}\",\"sort\":\"default\",\"textOrders\":\"\"},\"4\":{\"style\":17,\"text\":\"#{tt.sex}\"},\"5\":{\"style\":17,\"text\":\"#{tt.age}\"},\"6\":{\"style\":17,\"text\":\"#{tt.salary}\"}},\"height\":54},\"len\":100},\"dbexps\":[],\"dicts\":[],\"rpbar\":{\"show\":true,\"pageSize\":\"1000\",\"btnList\":[1,2,3,4,5,6,7,8,9]},\"groupField\":\"tt.department\",\"fixedPrintHeadRows\":[],\"fixedPrintTailRows\":[],\"freeze\":\"A1\",\"dataRectWidth\":687,\"displayConfig\":{},\"background\":false,\"name\":\"sheet1\",\"autofilter\":{},\"styles\":[{\"font\":{\"bold\":true}},{\"font\":{\"bold\":true,\"size\":16}},{\"font\":{\"bold\":true,\"size\":16},\"align\":\"center\"},{\"align\":\"center\"},{\"align\":\"center\",\"bgcolor\":\"#5b9cd6\"},{\"align\":\"center\",\"bgcolor\":\"#5b9cd6\",\"color\":\"#ffffff\"},{\"align\":\"center\",\"bgcolor\":\"#5b9cd6\",\"color\":\"#ffffff\",\"border\":{\"bottom\":[\"thin\",\"#000\"],\"top\":[\"thin\",\"#000\"],\"left\":[\"thin\",\"#000\"],\"right\":[\"thin\",\"#000\"]}},{\"border\":{\"bottom\":[\"thin\",\"#000\"],\"top\":[\"thin\",\"#000\"],\"left\":[\"thin\",\"#000\"],\"right\":[\"thin\",\"#000\"]}},{\"align\":\"center\",\"bgcolor\":\"#5b9cd6\",\"color\":\"#ffffff\",\"border\":{\"bottom\":[\"thin\",\"#bfbfbf\"],\"top\":[\"thin\",\"#bfbfbf\"],\"left\":[\"thin\",\"#bfbfbf\"],\"right\":[\"thin\",\"#bfbfbf\"]}},{\"border\":{\"bottom\":[\"thin\",\"#bfbfbf\"],\"top\":[\"thin\",\"#bfbfbf\"],\"left\":[\"thin\",\"#bfbfbf\"],\"right\":[\"thin\",\"#bfbfbf\"]}},{\"align\":\"center\",\"bgcolor\":\"#5b9cd6\",\"color\":\"#ffffff\",\"border\":{\"bottom\":[\"thin\",\"#9cc2e6\"],\"top\":[\"thin\",\"#9cc2e6\"],\"left\":[\"thin\",\"#9cc2e6\"],\"right\":[\"thin\",\"#9cc2e6\"]}},{\"border\":{\"bottom\":[\"thin\",\"#9cc2e6\"],\"top\":[\"thin\",\"#9cc2e6\"],\"left\":[\"thin\",\"#9cc2e6\"],\"right\":[\"thin\",\"#9cc2e6\"]}},{\"align\":\"center\",\"bgcolor\":\"#bdd7ee\",\"color\":\"#ffffff\",\"border\":{\"bottom\":[\"thin\",\"#9cc2e6\"],\"top\":[\"thin\",\"#9cc2e6\"],\"left\":[\"thin\",\"#9cc2e6\"],\"right\":[\"thin\",\"#9cc2e6\"]}},{\"align\":\"center\",\"bgcolor\":\"#bdd7ee\",\"color\":\"#000100\",\"border\":{\"bottom\":[\"thin\",\"#9cc2e6\"],\"top\":[\"thin\",\"#9cc2e6\"],\"left\":[\"thin\",\"#9cc2e6\"],\"right\":[\"thin\",\"#9cc2e6\"]}},{\"align\":\"center\",\"bgcolor\":\"#9cc2e6\",\"color\":\"#000100\",\"border\":{\"bottom\":[\"thin\",\"#9cc2e6\"],\"top\":[\"thin\",\"#9cc2e6\"],\"left\":[\"thin\",\"#9cc2e6\"],\"right\":[\"thin\",\"#9cc2e6\"]}},{\"align\":\"center\",\"bgcolor\":\"#9cc2e6\",\"color\":\"#000100\",\"border\":{\"bottom\":[\"thin\",\"#5b9cd6\"],\"top\":[\"thin\",\"#5b9cd6\"],\"left\":[\"thin\",\"#5b9cd6\"],\"right\":[\"thin\",\"#5b9cd6\"]}},{\"border\":{\"bottom\":[\"thin\",\"#5b9cd6\"],\"top\":[\"thin\",\"#5b9cd6\"],\"left\":[\"thin\",\"#5b9cd6\"],\"right\":[\"thin\",\"#5b9cd6\"]}},{\"border\":{\"bottom\":[\"thin\",\"#5b9cd6\"],\"t
|
|
|
|
|
INSERT INTO `jimu_report` VALUES ('850318855100268544', '20210127172112__9627', '多级循环表头报表副本9627', NULL, NULL, 'datainfo', '{\"loopBlockList\":[],\"printConfig\":{\"paper\":\"A4\",\"width\":210,\"height\":297,\"definition\":1,\"isBackend\":false,\"marginX\":10,\"marginY\":10},\"dbexps\":[],\"toolPrintSizeObj\":{\"printType\":\"A4\",\"widthPx\":718,\"heightPx\":1047},\"dicts\":[],\"freeze\":\"A1\",\"dataRectWidth\":434,\"autofilter\":{},\"validations\":[],\"cols\":{\"0\":{\"width\":36},\"1\":{\"width\":87},\"2\":{\"width\":132},\"3\":{\"width\":179},\"len\":100},\"area\":{\"sri\":5,\"sci\":0,\"eri\":5,\"eci\":99,\"width\":10034,\"height\":25},\"excel_config_id\":\"850318855100268544\",\"zonedEditionList\":[],\"rows\":{\"0\":{\"cells\":{\"0\":{\"text\":\"\",\"rendered\":\"\"},\"1\":{\"text\":\"各地区商品销售额一栏表\",\"merge\":[0,2],\"style\":6}},\"height\":83},\"1\":{\"cells\":{\"1\":{\"text\":\"地区|销量|时间\",\"style\":2,\"lineStart\":\"lefttop\",\"rendered\":\"\",\"merge\":[1,1],\"height\":74},\"3\":{\"style\":30,\"text\":\"#{xs.groupRight(year)}年\",\"aggregate\":\"group\",\"direction\":\"right\"}},\"height\":40},\"2\":{\"cells\":{\"3\":{\"style\":8,\"text\":\"#{xs.groupRight(mouth)}\",\"aggregate\":\"group\",\"direction\":\"right\",\"sort\":\"default\"}},\"height\":34},\"3\":{\"cells\":{\"1\":{\"text\":\"#{xs.group(diqu)}\",\"style\":28,\"aggregate\":\"group\"},\"2\":{\"style\":28,\"text\":\"#{xs.group(class)}\",\"aggregate\":\"group\"},\"3\":{\"style\":29,\"text\":\"#{xs.dynamic(sales)}\",\"aggregate\":\"dynamic\",\"rendered\":\"\",\"decimalPlaces\":\"0\"}},\"height\":38},\"4\":{\"cells\":{\"1\":{\"style\":24,\"text\":\"总计\"},\"2\":{\"text\":\"=cnmoney(::D5)\",\"style\":34},\"3\":{\"style\":25,\"text\":\"=SUM(D4)\"}},\"height\":37},\"7\":{\"cells\":{\"1\":{}}},\"9\":{\"cells\":{\"1\":{}}},\"len\":99},\"rpbar\":{\"show\":true,\"pageSize\":\"\",\"btnList\":[]},\"groupField\":\"xs.diqu\",\"fixedPrintHeadRows\":[],\"fixedPrintTailRows\":[],\"displayConfig\":{},\"background\":false,\"name\":\"sheet1\",\"styles\":[{\"bgcolor\":\"#5b9cd6\"},{\"bgcolor\":\"#5b9cd6\",\"color\":\"#ffffff\"},{\"bgcolor\":\"#5b9cd6\",\"color\":\"#ffffff\",\"border\":{\"bottom\":[\"thin\",\"#d8d8d8\"],\"top\":[\"thin\",\"#d8d8d8\"],\"left\":[\"thin\",\"#d8d8d8\"],\"right\":[\"thin\",\"#d8d8d8\"]}},{\"border\":{\"bottom\":[\"thin\",\"#d8d8d8\"],\"top\":[\"thin\",\"#d8d8d8\"],\"left\":[\"thin\",\"#d8d8d8\"],\"right\":[\"thin\",\"#d8d8d8\"]}},{\"font\":{\"size\":16}},{\"font\":{\"size\":16,\"bold\":true}},{\"font\":{\"size\":16,\"bold\":true},\"align\":\"center\"},{\"border\":{\"bottom\":[\"thin\",\"#d8d8d8\"],\"top\":[\"thin\",\"#d8d8d8\"],\"left\":[\"thin\",\"#d8d8d8\"],\"right\":[\"thin\",\"#d8d8d8\"]},\"align\":\"center\"},{\"bgcolor\":\"#5b9cd6\",\"color\":\"#ffffff\",\"border\":{\"bottom\":[\"thin\",\"#d8d8d8\"],\"top\":[\"thin\",\"#d8d8d8\"],\"left\":[\"thin\",\"#d8d8d8\"],\"right\":[\"thin\",\"#d8d8d8\"]},\"align\":\"center\"},{\"bgcolor\":\"#9cc2e6\"},{\"bgcolor\":\"#9cc2e6\",\"align\":\"center\"},{\"align\":\"center\"},{\"bgcolor\":\"#9cc2e6\",\"format\":\"number\"},{\"bgcolor\":\"#9cc2e6\",\"format\":\"number\",\"align\":\"center\"},{\"border\":{\"bottom\":[\"thin\",\"#d8d8d8\"],\"top\":[\"thin\",\"#d8d8d8\"],\"left\":[\"thin\",\"#d8d8d8\"],\"right\":[\"thin\",\"#d8d8d8\"]},\"align\":\"center\",\"font\":{\"size\":9}},{\"bgcolor\":\"#5b9cd6\",\"color\":\"#ffffff\",\"border\":{\"bottom\":[\"thin\",\"#000\"],\"top\":[\"thin\",\"#000\"],\"left\":[\"thin\",\"#000\"],\"right\":[\"thin\",\"#000\"]}},{\"bgcolor\":\"#5b9cd6\",\"color\":\"#ffffff\",\"align\":\"center\"},{\"bgcolor\":\"#5b9cd6\",\"color\":\"#ffffff\",\"align\":\"center\",\"border\":{\"bottom\":[\"thin\",\"#000\"],\"top\":[\"thin\",\"#000\"],\"left\":[\"thin\",\"#000\"],\"right\":[\"thin\",\"#000\"]}},{\"border\":{\"bottom\":[\"thin\",\"#000\"],\"top\":[\"thin\",\"#000\"],\"left\":[\"thin\",\"#000\"],\"right\":[\"thin\",\"#000\"]},\"align\":\"center\",\"font\":{\"size\":9}},{\"bgcolor\":\"#9cc2e6\",\"align\":\"center\",\"border\":{\"bottom
|
|
|
|
|
INSERT INTO `jimu_report` VALUES ('850709188564844544', '20210729233805__4750', '表达式示例副本4750', NULL, NULL, 'datainfo', '{\"loopBlockList\":[],\"area\":{\"sri\":3,\"sci\":0,\"eri\":3,\"eci\":0,\"width\":100,\"height\":25},\"excel_config_id\":\"850709188564844544\",\"printConfig\":{\"paper\":\"A4\",\"width\":210,\"height\":297,\"definition\":1,\"isBackend\":false,\"marginX\":10,\"marginY\":10,\"layout\":\"portrait\"},\"zonedEditionList\":[],\"rows\":{\"0\":{\"cells\":{\"0\":{\"text\":\"1000222.22\"},\"1\":{\"linkIds\":\"\",\"rendered\":\"\",\"config\":\"\",\"display\":\"\",\"style\":18,\"text\":\"=cnmoney(A1)\"},\"3\":{\"style\":16,\"text\":\"\"},\"4\":{\"text\":\"\"}},\"height\":43},\"1\":{\"cells\":{\"1\":{\"style\":12,\"text\":\"日期函数\",\"merge\":[0,3],\"height\":25},\"6\":{\"style\":12,\"text\":\"字符串函数\",\"merge\":[0,3],\"height\":25}},\"height\":34},\"2\":{\"cells\":{\"1\":{\"text\":\"函数名称\",\"style\":17},\"2\":{\"text\":\"表达式\",\"style\":17},\"3\":{\"text\":\"常量参数\",\"style\":17},\"4\":{\"text\":\"数据集参数\",\"style\":17},\"6\":{\"text\":\"函数名称\",\"style\":17},\"7\":{\"text\":\"表达式\",\"style\":17},\"8\":{\"text\":\"常量参数\",\"style\":17},\"9\":{\"text\":\"数据集参数\",\"style\":17}}},\"3\":{\"cells\":{\"1\":{\"text\":\"date()\",\"style\":4},\"2\":{\"text\":\"date(\\\"2021-07-29 12:11:10\\\")\",\"style\":4},\"3\":{\"text\":\"=date(\\\"2021-07-29 12:11:10\\\")\",\"style\":4},\"4\":{\"text\":\"=date(\\\"${jm_expression.create_time}\\\")\",\"style\":4},\"6\":{\"text\":\"char()\",\"style\":4,\"merge\":[1,0],\"height\":50},\"7\":{\"text\":\"char(22269)\",\"style\":4},\"8\":{\"text\":\"=char(22269)\",\"style\":4},\"9\":{\"style\":4,\"text\":\" \"}}},\"4\":{\"cells\":{\"1\":{\"text\":\"time()\",\"style\":4},\"2\":{\"text\":\"time(\\\"12:11:10\\\")\",\"style\":4},\"3\":{\"text\":\"=time(\\\"12:11:10\\\")\",\"style\":4},\"4\":{\"text\":\"=time(\\\"${jm_expression.create_time}\\\")\",\"style\":4},\"7\":{\"text\":\"char(101)\",\"style\":4},\"8\":{\"text\":\"=char(101)\",\"style\":4},\"9\":{\"style\":4,\"text\":\" \"}}},\"5\":{\"cells\":{\"1\":{\"text\":\"now()\",\"merge\":[3,0],\"height\":100,\"style\":4,\"linkIds\":\"\",\"rendered\":\"\",\"config\":\"\",\"display\":\"\"},\"2\":{\"text\":\"now()\",\"style\":4},\"3\":{\"text\":\"=now()\",\"style\":5},\"4\":{\"text\":\"=now()\",\"style\":5},\"6\":{\"style\":4,\"text\":\"cnmoney()\",\"merge\":[2,0],\"height\":75},\"7\":{\"text\":\"cnmoney(341.234)\",\"style\":4},\"8\":{\"style\":4,\"text\":\"=cnmoney(341.234)\"},\"9\":{\"style\":4,\"text\":\"=cnmoney(${jm_expression.num})\"}}},\"6\":{\"cells\":{\"2\":{\"text\":\"now()\",\"style\":4},\"3\":{\"text\":\"=now()\",\"style\":6},\"4\":{\"text\":\"=now()\",\"style\":6},\"7\":{\"text\":\"cnmoney(341.234,\\\"b\\\")\",\"style\":4},\"8\":{\"text\":\"=cnmoney(341.234,\\\"b\\\")\",\"style\":4},\"9\":{\"style\":4,\"text\":\"=cnmoney(${jm_expression.num},\\\"b\\\")\"}}},\"7\":{\"cells\":{\"2\":{\"text\":\"now()\",\"style\":4},\"3\":{\"text\":\"=now()\",\"style\":7},\"4\":{\"text\":\"=now()\",\"style\":7},\"7\":{\"text\":\"cnmoney(341.234,\\\"bw\\\")\",\"style\":4},\"8\":{\"text\":\"=cnmoney(341.234,\\\"bw\\\")\",\"style\":4},\"9\":{\"text\":\"=cnmoney(${jm_expression.num},\\\"bw\\\")\",\"style\":4}}},\"8\":{\"cells\":{\"2\":{\"text\":\"now()\",\"style\":4},\"3\":{\"text\":\"=now()\",\"style\":8},\"4\":{\"text\":\"=now()\",\"style\":8},\"6\":{\"text\":\"concat()\",\"style\":4},\"7\":{\"text\":\"concat(\'hello \',\'word\',\' !\')\",\"style\":4},\"8\":{\"text\":\"=concat(\'hello \',\'world\',\' !\')\",\"style\":4},\"9\":{\"text\":\"=concat(\'${jm_expression.upper}\',\' world\',\' !\')\",\"style\":4}}},\"9\":{\"cells\":{\"1\":{\"text\":\"year()\",\"style\":4},\"2\":{\"text\":\"year(\\\"2021-07-29 12:11:10\\\")\",\"style\":4},\"3\":{\"text\":\"=year(\\\"2021-07-29 12:11:10\\\")\",\"style\":4},\"4\":{\"text\":\"=year(\\\"${jm_expression.create_time}\\\")\",\"style\":4},\"6\":{\"text\":\"lower()\",\"style\":4},\"7\":{\"text\":\"lower(\'HELLOW\')\",\"style\":4},\"8\":{\"
|
|
|
|
|
INSERT INTO `jimu_report` VALUES ('850710545531240448', '20230813222715', 'SSD', NULL, NULL, 'datainfo', '{\"loopBlockList\":[],\"area\":false,\"excel_config_id\":\"850710545531240448\",\"printConfig\":{\"layout\":\"portrait\",\"printCallBackUrl\":\"\",\"paper\":\"A4\",\"isBackend\":false,\"width\":210,\"definition\":1,\"marginX\":10,\"height\":297,\"marginY\":10},\"zonedEditionList\":[],\"rows\":{\"2\":{\"cells\":{\"1\":{\"text\":\"12.34\"},\"2\":{\"text\":\"=cnmoney(B3)\"}}},\"len\":200},\"dbexps\":[],\"dicts\":[],\"rpbar\":{\"show\":true,\"pageSize\":\"\",\"btnList\":[]},\"fixedPrintHeadRows\":[],\"fixedPrintTailRows\":[],\"freeze\":\"A1\",\"dataRectWidth\":300,\"displayConfig\":{},\"background\":false,\"name\":\"sheet1\",\"autofilter\":{},\"styles\":[],\"validations\":[],\"cols\":{\"len\":100},\"merges\":[]}', NULL, NULL, 'admin', '2023-08-13 22:27:15', 'admin', '2023-09-25 15:13:07', 0, NULL, NULL, 0, 22, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report` VALUES ('850943990899482624', '20210826193641__1135', '分版示例副本1135', NULL, NULL, 'datainfo', '{\"loopBlockList\":[],\"area\":{\"sri\":1,\"sci\":8,\"eri\":1,\"eci\":8,\"width\":100,\"height\":65},\"excel_config_id\":\"590835562513256448\",\"printConfig\":{\"paper\":\"A4\",\"width\":210,\"height\":297,\"definition\":1,\"isBackend\":false,\"marginX\":10,\"marginY\":10,\"layout\":\"portrait\"},\"zonedEditionList\":[{\"sci\":4,\"sri\":3,\"eci\":6,\"eri\":4,\"db\":\"flapi\",\"index\":1},{\"sci\":8,\"sri\":4,\"eci\":9,\"eri\":5,\"db\":\"flapi\",\"index\":2}],\"rows\":{\"0\":{\"cells\":{\"3\":{\"text\":\"\",\"style\":9,\"merge\":[0,1],\"height\":72}},\"height\":60},\"1\":{\"cells\":{\"3\":{\"style\":18,\"text\":\"分版示例\",\"merge\":[0,1],\"height\":65},\"5\":{\"merge\":[0,2],\"height\":65,\"text\":\"说明:当报表左侧已有表格,右侧仍需要展示表格时,需使用分版功能;参考文档:http://report.jeecg.com/2373086\",\"style\":20},\"6\":{\"style\":15},\"7\":{\"style\":15}},\"height\":65},\"2\":{\"cells\":{\"1\":{\"text\":\"表1\",\"style\":7},\"5\":{\"text\":\"表2\",\"style\":7}},\"height\":41},\"3\":{\"cells\":{\"0\":{\"text\":\"姓名\",\"style\":2},\"1\":{\"text\":\"性别\",\"style\":2},\"2\":{\"text\":\"年龄\",\"style\":2},\"4\":{\"text\":\"省份\",\"style\":2,\"zonedEdition\":1},\"5\":{\"style\":2,\"zonedEdition\":1,\"text\":\"月份\"},\"6\":{\"style\":2,\"zonedEdition\":1,\"text\":\"金额\"},\"8\":{\"text\":\"表3\",\"style\":8}},\"height\":35},\"4\":{\"cells\":{\"0\":{\"text\":\"#{jm.name}\",\"style\":0},\"1\":{\"text\":\"#{jm.sex}\",\"style\":0},\"2\":{\"text\":\"#{jm.age}\",\"style\":0},\"4\":{\"text\":\"#{flapi.dept}\",\"style\":0,\"zonedEdition\":1},\"5\":{\"style\":0,\"zonedEdition\":1,\"text\":\"#{flapi.month}月\"},\"6\":{\"style\":0,\"zonedEdition\":1,\"text\":\"#{flapi.amount}\"},\"8\":{\"text\":\"年份\",\"style\":2,\"zonedEdition\":2},\"9\":{\"text\":\"金额\",\"style\":2,\"zonedEdition\":2}},\"height\":30},\"5\":{\"cells\":{\"8\":{\"text\":\"#{flapi.year}年\",\"style\":0,\"zonedEdition\":2},\"9\":{\"text\":\"#{flapi.settleamount}\",\"style\":0,\"zonedEdition\":2}}},\"len\":103},\"dbexps\":[],\"dicts\":[],\"rpbar\":{\"show\":true,\"pageSize\":\"\",\"btnList\":[]},\"freeze\":\"A1\",\"dataRectWidth\":930,\"displayConfig\":{},\"background\":false,\"name\":\"sheet1\",\"autofilter\":{},\"styles\":[{\"border\":{\"bottom\":[\"thin\",\"#000\"],\"top\":[\"thin\",\"#000\"],\"left\":[\"thin\",\"#000\"],\"right\":[\"thin\",\"#000\"]}},{\"border\":{\"bottom\":[\"thin\",\"#000\"],\"top\":[\"thin\",\"#000\"],\"left\":[\"thin\",\"#000\"],\"right\":[\"thin\",\"#000\"]},\"font\":{\"size\":12}},{\"border\":{\"bottom\":[\"thin\",\"#000\"],\"top\":[\"thin\",\"#000\"],\"left\":[\"thin\",\"#000\"],\"right\":[\"thin\",\"#000\"]},\"font\":{\"size\":12},\"bgcolor\":\"#f2f2f2\"},{},{\"border\":{\"bottom\":[\"thin\",\"#000\"],\"top\":[\"thin\",\"#000\"],\"left\":[\"thin\",\"#000\"],\"right\":[\"thin\",\"#000\"]},\"bgcolor\":\"#f2f2f2\"},{\"font\":{\"size\":15}},{\"font\":{\"size\":12}},{\"font\":{\"size\":12},\"align\":\"center\"},{\"font\":{\"size\":12},\"align\":\"right\"},{\"font\":{\"size\":15},\"align\":\"center\"},{\"font\":{\"size\":15},\"align\":\"left\"},{\"textwrap\":true},{\"textwrap\":true,\"border\":{\"bottom\":[\"thin\",\"#fe0000\"],\"top\":[\"thin\",\"#fe0000\"],\"left\":[\"thin\",\"#fe0000\"],\"right\":[\"thin\",\"#fe0000\"]}},{\"textwrap\":true,\"border\":{\"bottom\":[\"thin\",\"#ffffff\"],\"top\":[\"thin\",\"#ffffff\"],\"left\":[\"thin\",\"#ffffff\"],\"right\":[\"thin\",\"#ffffff\"]}},{\"textwrap\":true,\"border\":{\"bottom\":[\"thin\",\"#ffffff\"],\"top\":[\"thin\",\"#ffffff\"],\"left\":[\"thin\",\"#ffffff\"],\"right\":[\"thin\",\"#ffffff\"]},\"color\":\"#fe0000\"},{\"color\":\"#fe0000\"},{\"textwrap\":true,\"border\":{\"bottom\":[\"thin\",\"#ffffff\"],\"top\":[\"thin\",\"#ffffff\"],\"left\":[\"thin\",\"#ffffff\"],\"right\":[\"thin\",\"#ffffff\"]},\"color\":\"#000100\"},{\"color\":\"#000100\"},{\"textwrap\":true,\"border\":{\"bottom\":[\"thin
|
|
|
|
|
INSERT INTO `jimu_report` VALUES ('850944008423284736', '20210826192130__0651', '分栏示例副本0651', NULL, NULL, 'datainfo', '{\"loopBlockList\":[{\"sci\":1,\"index\":1,\"eci\":5,\"sri\":2,\"eri\":5,\"db\":\"jm\",\"loopTime\":3}],\"area\":false,\"excel_config_id\":\"850944008423284736\",\"printConfig\":{\"layout\":\"portrait\",\"paper\":\"A4\",\"isBackend\":false,\"width\":210,\"definition\":1,\"marginX\":10,\"height\":297,\"marginY\":10},\"zonedEditionList\":[],\"rows\":{\"0\":{\"cells\":{},\"height\":44},\"1\":{\"cells\":{\"2\":{\"style\":13,\"text\":\" \"},\"4\":{\"style\":14,\"text\":\" \"},\"5\":{\"merge\":[0,1],\"style\":15,\"text\":\"分栏示例\",\"height\":59},\"8\":{\"merge\":[0,5],\"style\":9,\"text\":\"说明:需要对多行区域进行循环且分栏展示时,则进行循环块设置并指定横向循环次数;参考文档:http://report.jeecg.com/2373085\",\"height\":59}},\"height\":59},\"2\":{\"cells\":{\"1\":{\"loopBlock\":1,\"text\":\"\"},\"2\":{\"loopBlock\":1,\"merge\":[0,1],\"style\":2,\"text\":\"职员信息\",\"height\":34},\"3\":{\"loopBlock\":1},\"4\":{\"loopBlock\":1,\"text\":\"\"},\"5\":{\"loopBlock\":1,\"text\":\"\"}},\"height\":51},\"3\":{\"cells\":{\"1\":{\"loopBlock\":1,\"style\":4,\"text\":\"姓名\"},\"2\":{\"loopBlock\":1,\"style\":4,\"text\":\"性别\"},\"3\":{\"loopBlock\":1,\"style\":4,\"text\":\"职务\"},\"4\":{\"loopBlock\":1,\"style\":4,\"text\":\"联系方式\"},\"5\":{\"loopBlock\":1,\"text\":\"\"}},\"height\":31},\"4\":{\"cells\":{\"1\":{\"loopBlock\":1,\"style\":0,\"text\":\"#{jm.name}\"},\"2\":{\"loopBlock\":1,\"style\":0,\"text\":\"#{jm.sex}\"},\"3\":{\"loopBlock\":1,\"style\":0,\"text\":\"#{jm.update_by}\"},\"4\":{\"loopBlock\":1,\"style\":0,\"text\":\"#{jm.jphone}\"},\"5\":{\"loopBlock\":1,\"text\":\"\"}}},\"5\":{\"cells\":{\"1\":{\"loopBlock\":1,\"text\":\"\"},\"2\":{\"loopBlock\":1},\"3\":{\"loopBlock\":1,\"text\":\"\"},\"4\":{\"loopBlock\":1,\"text\":\"\"},\"5\":{\"loopBlock\":1,\"text\":\"\"}},\"height\":34},\"len\":103},\"dbexps\":[],\"dicts\":[],\"rpbar\":{\"show\":true,\"pageSize\":\"\",\"btnList\":[]},\"fixedPrintHeadRows\":[],\"fixedPrintTailRows\":[],\"freeze\":\"A1\",\"dataRectWidth\":817,\"displayConfig\":{},\"background\":false,\"name\":\"sheet1\",\"autofilter\":{},\"styles\":[{\"border\":{\"top\":[\"thin\",\"#000\"],\"left\":[\"thin\",\"#000\"],\"bottom\":[\"thin\",\"#000\"],\"right\":[\"thin\",\"#000\"]}},{\"font\":{\"size\":14}},{\"align\":\"center\",\"font\":{\"size\":14}},{\"border\":{\"top\":[\"thin\",\"#000\"],\"left\":[\"thin\",\"#000\"],\"bottom\":[\"thin\",\"#000\"],\"right\":[\"thin\",\"#000\"]},\"font\":{\"size\":11}},{\"border\":{\"top\":[\"thin\",\"#000\"],\"left\":[\"thin\",\"#000\"],\"bottom\":[\"thin\",\"#000\"],\"right\":[\"thin\",\"#000\"]},\"bgcolor\":\"#f2f2f2\",\"font\":{\"size\":11}},{\"font\":{\"size\":12}},{\"font\":{\"size\":15}},{\"align\":\"center\",\"font\":{\"size\":15}},{\"textwrap\":true},{\"color\":\"#fe0000\",\"textwrap\":true},{\"color\":\"#fe0000\"},{\"color\":\"#000100\",\"textwrap\":true},{\"color\":\"#000100\"},{\"color\":\"#000100\",\"textwrap\":true,\"font\":{\"size\":15}},{\"color\":\"#000100\",\"font\":{\"size\":15}},{\"color\":\"#000100\",\"font\":{\"size\":18}},{\"font\":{\"size\":18}}],\"validations\":[],\"cols\":{\"0\":{\"width\":72},\"3\":{\"width\":101},\"4\":{\"width\":90},\"5\":{\"width\":54},\"len\":100},\"merges\":[\"F2:G2\",\"I2:N2\",\"C3:D3\"]}', NULL, 'https://static.jeecg.com/designreport/images/fl_1630235558373.png', 'admin', '2023-08-14 13:54:32', 'admin', '2023-09-23 16:10:12', 1, NULL, NULL, 0, 53, NULL, NULL, NULL, '2');
|
|
|
|
|
INSERT INTO `jimu_report` VALUES ('859286752275275776', '20230906142543', '11', NULL, NULL, 'datainfo', '{\"loopBlockList\":[],\"area\":{\"sri\":5,\"sci\":0,\"eri\":5,\"eci\":0,\"width\":100,\"height\":25},\"excel_config_id\":\"859286752275275776\",\"printConfig\":{\"paper\":\"A4\",\"width\":210,\"height\":297,\"definition\":1,\"isBackend\":false,\"marginX\":10,\"marginY\":10,\"layout\":\"portrait\",\"printCallBackUrl\":\"\"},\"zonedEditionList\":[],\"rows\":{\"1\":{\"cells\":{\"0\":{\"text\":\"1\"}}},\"5\":{\"cells\":{\"0\":{\"text\":\"2\"}}},\"len\":100},\"dbexps\":[],\"dicts\":[],\"rpbar\":{\"show\":true,\"pageSize\":\"\",\"btnList\":[]},\"fixedPrintHeadRows\":[],\"fixedPrintTailRows\":[],\"freeze\":\"A1\",\"dataRectWidth\":100,\"displayConfig\":{},\"background\":false,\"name\":\"sheet1\",\"autofilter\":{},\"styles\":[],\"validations\":[],\"cols\":{\"len\":100},\"merges\":[]}', NULL, NULL, 'admin', '2023-09-06 14:25:43', 'admin', '2023-09-06 14:30:07', 1, NULL, NULL, 0, 0, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report` VALUES ('861176131696533504', '20230911193335', 'd', NULL, NULL, 'datainfo', '{\"loopBlockList\":[],\"area\":{\"sri\":12,\"sci\":1,\"eri\":12,\"eci\":1,\"width\":100,\"height\":25},\"excel_config_id\":\"861176131696533504\",\"printConfig\":{\"paper\":\"A4\",\"width\":210,\"height\":297,\"definition\":1,\"isBackend\":false,\"marginX\":10,\"marginY\":10,\"layout\":\"portrait\",\"printCallBackUrl\":\"\"},\"zonedEditionList\":[],\"rows\":{\"4\":{\"cells\":{\"1\":{\"text\":\"d\"}}},\"8\":{\"cells\":{\"1\":{\"text\":\"d\"}}},\"12\":{\"cells\":{\"1\":{\"text\":\"d\"}}},\"len\":200},\"dbexps\":[],\"dicts\":[],\"rpbar\":{\"show\":true,\"pageSize\":\"\",\"btnList\":[]},\"fixedPrintHeadRows\":[],\"fixedPrintTailRows\":[],\"freeze\":\"A1\",\"dataRectWidth\":200,\"displayConfig\":{},\"background\":false,\"name\":\"sheet1\",\"autofilter\":{},\"styles\":[],\"validations\":[],\"cols\":{\"len\":100},\"merges\":[]}', NULL, NULL, 'admin', '2023-09-11 19:33:35', 'admin', '2023-09-11 19:35:24', 1, NULL, NULL, 0, 2, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report` VALUES ('861176405613944832', '20230911193431', 'ddd', NULL, NULL, 'datainfo', '{\"loopBlockList\":[],\"area\":false,\"excel_config_id\":\"861176405613944832\",\"printConfig\":{\"paper\":\"A4\",\"width\":210,\"height\":297,\"definition\":1,\"isBackend\":false,\"marginX\":10,\"marginY\":10,\"layout\":\"portrait\",\"printCallBackUrl\":\"\"},\"zonedEditionList\":[],\"rows\":{\"3\":{\"cells\":{\"0\":{\"text\":\"2\"}}},\"7\":{\"cells\":{\"0\":{\"text\":\"2\"}}},\"11\":{\"cells\":{\"0\":{\"text\":\"3\"}}},\"len\":200},\"dbexps\":[],\"dicts\":[],\"rpbar\":{\"show\":true,\"pageSize\":\"\",\"btnList\":[]},\"fixedPrintHeadRows\":[],\"fixedPrintTailRows\":[],\"freeze\":\"A1\",\"dataRectWidth\":100,\"displayConfig\":{},\"background\":false,\"name\":\"sheet1\",\"autofilter\":{},\"styles\":[],\"validations\":[],\"cols\":{\"len\":100},\"merges\":[]}', NULL, NULL, 'admin', '2023-09-11 19:34:32', 'admin', '2023-09-11 19:35:24', 1, NULL, NULL, 0, 0, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report` VALUES ('861176669725073408', '20230911193536', 'dd', NULL, NULL, 'datainfo', '{\"loopBlockList\":[],\"area\":false,\"excel_config_id\":\"861176669725073408\",\"printConfig\":{\"paper\":\"A4\",\"width\":210,\"height\":297,\"definition\":1,\"isBackend\":false,\"marginX\":10,\"marginY\":10,\"layout\":\"portrait\",\"printCallBackUrl\":\"\"},\"zonedEditionList\":[],\"rows\":{\"4\":{\"cells\":{\"2\":{\"text\":\"d\"}}},\"9\":{\"cells\":{\"2\":{\"text\":\"d\"}}},\"14\":{\"cells\":{\"2\":{\"text\":\"d\"}}},\"len\":200},\"dbexps\":[],\"dicts\":[],\"rpbar\":{\"show\":true,\"pageSize\":\"\",\"btnList\":[]},\"fixedPrintHeadRows\":[],\"fixedPrintTailRows\":[],\"freeze\":\"A1\",\"dataRectWidth\":300,\"displayConfig\":{},\"background\":false,\"name\":\"sheet1\",\"autofilter\":{},\"styles\":[],\"validations\":[],\"cols\":{\"len\":100},\"merges\":[]}', NULL, NULL, 'admin', '2023-09-11 19:35:37', 'admin', '2023-09-11 19:37:12', 1, NULL, NULL, 0, 0, NULL, NULL, NULL, '1');
|
|
|
|
|
INSERT INTO `jimu_report` VALUES ('861177110013747200', '20230911193718', 'd', NULL, NULL, 'datainfo', '{\"loopBlockList\":[],\"area\":{\"sri\":6,\"sci\":1,\"eri\":6,\"eci\":1,\"width\":100,\"height\":25},\"excel_config_id\":\"861177110013747200\",\"printConfig\":{\"layout\":\"portrait\",\"printCallBackUrl\":\"\",\"paper\":\"A4\",\"isBackend\":false,\"width\":210,\"definition\":1,\"marginX\":10,\"height\":297,\"marginY\":10},\"zonedEditionList\":[],\"rows\":{\"14\":{\"cells\":{\"3\":{\"text\":\"d\"}}},\"20\":{\"cells\":{\"3\":{\"text\":\"d\"}}},\"24\":{\"cells\":{\"2\":{\"text\":\"d\"}}},\"len\":200},\"dbexps\":[],\"dicts\":[],\"rpbar\":{\"show\":true,\"pageSize\":\"\",\"btnList\":[]},\"fixedPrintHeadRows\":[],\"fixedPrintTailRows\":[],\"freeze\":\"A1\",\"dataRectWidth\":400,\"displayConfig\":{},\"background\":false,\"name\":\"sheet1\",\"autofilter\":{},\"styles\":[],\"validations\":[],\"cols\":{\"len\":100},\"merges\":[]}', NULL, NULL, 'admin', '2023-09-11 19:37:19', 'admin', '2023-09-11 19:37:36', 1, NULL, NULL, 0, 0, NULL, NULL, NULL, '1');
|
|
|
|
|
INSERT INTO `jimu_report` VALUES ('861212723307970560', '20230911215849', '11', NULL, NULL, 'datainfo', '{\"loopBlockList\":[],\"area\":{\"sri\":8,\"sci\":0,\"eri\":8,\"eci\":0,\"width\":100,\"height\":25},\"excel_config_id\":\"861212723307970560\",\"printConfig\":{\"paper\":\"A4\",\"width\":210,\"height\":297,\"definition\":1,\"isBackend\":false,\"marginX\":10,\"marginY\":10,\"layout\":\"portrait\",\"printCallBackUrl\":\"\"},\"zonedEditionList\":[],\"rows\":{\"2\":{\"cells\":{\"0\":{\"text\":\"1\"}}},\"6\":{\"cells\":{\"0\":{\"text\":\"1\"}}},\"8\":{\"cells\":{\"0\":{\"text\":\"1\"}}},\"len\":200},\"dbexps\":[],\"dicts\":[],\"rpbar\":{\"show\":true,\"pageSize\":\"\",\"btnList\":[]},\"fixedPrintHeadRows\":[],\"fixedPrintTailRows\":[],\"freeze\":\"A1\",\"dataRectWidth\":100,\"displayConfig\":{},\"background\":false,\"name\":\"sheet1\",\"autofilter\":{},\"styles\":[],\"validations\":[],\"cols\":{\"len\":100},\"merges\":[]}', NULL, NULL, 'admin', '2023-09-11 21:58:49', 'admin', '2023-09-11 21:59:01', 1, NULL, NULL, 0, 1, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report` VALUES ('864668240323870720', '20201202175858__2053', '乡村振兴普惠金融服务平台副本2053', NULL, NULL, 'chartinfo', '{\"loopBlockList\":[],\"chartList\":[{\"col\":5,\"backgroud\":{\"image\":\"\",\"color\":\"#fff\",\"enabled\":false},\"url\":\"\",\"colspan\":6,\"offsetX\":0,\"layer_id\":\"reOVgCVG6ZPWh5c1\",\"offsetY\":0,\"extData\":{\"dbCode\":\"ditu1\",\"dataType\":\"api\",\"xText\":\"\",\"dataId1\":\"\",\"source\":\"\",\"isTiming\":true,\"target\":\"\",\"dataId\":\"864668240575528960\",\"series\":\"type\",\"yText\":\"\",\"axisY\":\"value\",\"axisX\":\"name\",\"chartType\":\"map.scatter\",\"id\":\"reOVgCVG6ZPWh5c1\",\"apiStatus\":\"1\",\"intervalTime\":\"5\"},\"rowspan\":12,\"width\":\"568\",\"row\":1,\"config\":\"{\\\"geo\\\":{\\\"map\\\":\\\"shandong\\\",\\\"zoom\\\":0.8,\\\"label\\\":{\\\"color\\\":\\\"#19DEF4\\\",\\\"fontSize\\\":12,\\\"show\\\":true},\\\"itemStyle\\\":{\\\"borderWidth\\\":0.5,\\\"areaColor\\\":\\\"#0C514B\\\",\\\"borderColor\\\":\\\"#000\\\"},\\\"emphasis\\\":{\\\"label\\\":{\\\"color\\\":\\\"#19DEF4\\\"},\\\"itemStyle\\\":{\\\"areaColor\\\":\\\"#0A2B34\\\"}},\\\"regions\\\":[],\\\"layoutSize\\\":600,\\\"roam\\\":true,\\\"layoutCenter\\\":[\\\"50%\\\",\\\"50%\\\"]},\\\"series\\\":[{\\\"encode\\\":{\\\"value\\\":[2]},\\\"data\\\":[{\\\"name\\\":\\\"济南市\\\",\\\"value\\\":[117.000923,36.675807,255]},{\\\"name\\\":\\\"青岛市\\\",\\\"value\\\":[120.355173,36.082982,300]},{\\\"name\\\":\\\"淄博市\\\",\\\"value\\\":[118.047648,36.814939,130]},{\\\"name\\\":\\\"枣庄市\\\",\\\"value\\\":[117.557964,34.856424,150]}],\\\"name\\\":\\\"\\\",\\\"emphasis\\\":{\\\"label\\\":{\\\"show\\\":true}},\\\"itemStyle\\\":{\\\"color\\\":\\\"#FFFF01\\\"},\\\"coordinateSystem\\\":\\\"geo\\\",\\\"label\\\":{\\\"formatter\\\":\\\"{b}\\\",\\\"show\\\":false,\\\"position\\\":\\\"right\\\"},\\\"type\\\":\\\"scatter\\\"}],\\\"chartType\\\":\\\"map\\\",\\\"tooltip\\\":{\\\"show\\\":true,\\\"textStyle\\\":{\\\"color\\\":\\\"#fff\\\",\\\"fontSize\\\":18}},\\\"title\\\":{\\\"show\\\":false,\\\"top\\\":5,\\\"text\\\":\\\"主要城市空气质量\\\",\\\"textStyle\\\":{\\\"color\\\":\\\"#c23531\\\",\\\"fontWeight\\\":\\\"bolder\\\",\\\"fontSize\\\":18},\\\"left\\\":\\\"left\\\",\\\"padding\\\":[5,20,5,10]}}\",\"height\":\"435\",\"virtualCellRange\":[[1,5],[1,6],[1,7],[1,8],[1,9],[1,10]]},{\"col\":11,\"backgroud\":{\"image\":\"\",\"color\":\"#fff\",\"enabled\":false},\"url\":\"\",\"colspan\":3,\"offsetX\":0,\"layer_id\":\"Kkx8cQxh41KDHQKJ\",\"offsetY\":0,\"extData\":{\"dbCode\":\"wunian\",\"dataType\":\"api\",\"xText\":\"\",\"isTiming\":true,\"dataId\":\"864668240407756800\",\"chartId\":\"\",\"series\":\"type\",\"yText\":\"\",\"axisY\":\"value\",\"axisX\":\"name\",\"chartType\":\"line.area\",\"apiStatus\":\"1\",\"intervalTime\":\"5\"},\"rowspan\":4,\"width\":\"357\",\"row\":3,\"config\":\"{\\\"yAxis\\\":{\\\"axisLabel\\\":{\\\"textStyle\\\":{\\\"color\\\":\\\"#FFFFFF\\\",\\\"fontSize\\\":\\\"10\\\"}},\\\"axisLine\\\":{\\\"lineStyle\\\":{\\\"color\\\":\\\"#FFFFFF\\\"}},\\\"show\\\":true,\\\"name\\\":\\\"\\\",\\\"splitLine\\\":{\\\"lineStyle\\\":{\\\"color\\\":\\\"red\\\",\\\"width\\\":1,\\\"type\\\":\\\"solid\\\"},\\\"show\\\":false}},\\\"xAxis\\\":{\\\"axisLabel\\\":{\\\"rotate\\\":0,\\\"interval\\\":0,\\\"textStyle\\\":{\\\"color\\\":\\\"#FFFFFF\\\",\\\"fontSize\\\":\\\"10\\\"}},\\\"data\\\":[\\\"玉米\\\",\\\"大豆\\\",\\\"花生\\\",\\\"高粱\\\",\\\"小麦\\\"],\\\"axisLine\\\":{\\\"lineStyle\\\":{\\\"color\\\":\\\"#FFFFFF\\\"}},\\\"show\\\":true,\\\"name\\\":\\\"\\\",\\\"splitLine\\\":{\\\"lineStyle\\\":{\\\"color\\\":\\\"red\\\",\\\"width\\\":1,\\\"type\\\":\\\"solid\\\"},\\\"show\\\":false}},\\\"grid\\\":{\\\"top\\\":55,\\\"left\\\":60,\\\"bottom\\\":40,\\\"right\\\":24},\\\"series\\\":[{\\\"areaStyle\\\":{\\\"color\\\":\\\"#6CE6BC\\\",\\\"opacity\\\":0.4},\\\"data\\\":[1000879,3400879,2300879,2400879,3000],\\\"showSymbol\\\":true,\\\"lineStyle\\\":{\\\"width\\\":2},\\\"symbolSize\\\":5,\\\"isArea\\\":true,\\\"name\\\":\\\"\\\",\\\"itemStyle\\\":{\\\"color\\\":\\\"#9DE4D1\\
|
|
|
|
|
INSERT INTO `jimu_report` VALUES ('865473862653018112', '20230923161058', '分栏示例副本0651', NULL, NULL, 'datainfo', '{\"loopBlockList\":[{\"sci\":1,\"index\":1,\"eci\":5,\"sri\":2,\"eri\":5,\"db\":\"fvkkwmqzmd\",\"loopTime\":3}],\"area\":false,\"excel_config_id\":\"865473862653018112\",\"printConfig\":{\"layout\":\"portrait\",\"paper\":\"A4\",\"isBackend\":false,\"width\":210,\"definition\":1,\"marginX\":10,\"height\":297,\"marginY\":10},\"zonedEditionList\":[],\"rows\":{\"0\":{\"cells\":{},\"height\":44},\"1\":{\"cells\":{\"2\":{\"style\":13,\"text\":\" \"},\"4\":{\"style\":14,\"text\":\" \"},\"5\":{\"merge\":[0,1],\"style\":15,\"text\":\"分栏示例\",\"height\":59},\"8\":{\"merge\":[0,5],\"style\":9,\"text\":\"说明:需要对多行区域进行循环且分栏展示时,则进行循环块设置并指定横向循环次数;参考文档:http://report.jeecg.com/2373085\",\"height\":59}},\"height\":59},\"2\":{\"cells\":{\"1\":{\"loopBlock\":1,\"text\":\"\"},\"2\":{\"loopBlock\":1,\"merge\":[0,1],\"style\":2,\"text\":\"职员信息\",\"height\":34},\"3\":{\"loopBlock\":1},\"4\":{\"loopBlock\":1,\"text\":\"\"},\"5\":{\"loopBlock\":1,\"text\":\"\"}},\"height\":51},\"3\":{\"cells\":{\"1\":{\"loopBlock\":1,\"style\":4,\"text\":\"姓名\"},\"2\":{\"loopBlock\":1,\"style\":4,\"text\":\"性别\"},\"3\":{\"loopBlock\":1,\"style\":4,\"text\":\"职务\"},\"4\":{\"loopBlock\":1,\"style\":4,\"text\":\"联系方式\"},\"5\":{\"loopBlock\":1,\"text\":\"\"}},\"height\":31},\"4\":{\"cells\":{\"1\":{\"loopBlock\":1,\"style\":0,\"text\":\"#{fvkkwmqzmd.name}\"},\"2\":{\"loopBlock\":1,\"style\":0,\"text\":\"#{fvkkwmqzmd.sex}\"},\"3\":{\"loopBlock\":1,\"style\":0,\"text\":\"#{fvkkwmqzmd.update_by}\"},\"4\":{\"loopBlock\":1,\"style\":0,\"text\":\"#{fvkkwmqzmd.jphone}\"},\"5\":{\"loopBlock\":1,\"text\":\"\"}}},\"len\":103,\"5\":{\"cells\":{\"1\":{\"loopBlock\":1,\"text\":\"\"},\"2\":{\"loopBlock\":1},\"3\":{\"loopBlock\":1,\"text\":\"\"},\"4\":{\"loopBlock\":1,\"text\":\"\"},\"5\":{\"loopBlock\":1,\"text\":\"\"}},\"height\":34}},\"dbexps\":[],\"dicts\":[],\"rpbar\":{\"show\":true,\"pageSize\":\"\",\"btnList\":[]},\"fixedPrintHeadRows\":[],\"fixedPrintTailRows\":[],\"freeze\":\"A1\",\"dataRectWidth\":817,\"displayConfig\":{},\"background\":false,\"name\":\"sheet1\",\"autofilter\":{},\"styles\":[{\"border\":{\"top\":[\"thin\",\"#000\"],\"left\":[\"thin\",\"#000\"],\"bottom\":[\"thin\",\"#000\"],\"right\":[\"thin\",\"#000\"]}},{\"font\":{\"size\":14}},{\"align\":\"center\",\"font\":{\"size\":14}},{\"border\":{\"top\":[\"thin\",\"#000\"],\"left\":[\"thin\",\"#000\"],\"bottom\":[\"thin\",\"#000\"],\"right\":[\"thin\",\"#000\"]},\"font\":{\"size\":11}},{\"border\":{\"top\":[\"thin\",\"#000\"],\"left\":[\"thin\",\"#000\"],\"bottom\":[\"thin\",\"#000\"],\"right\":[\"thin\",\"#000\"]},\"bgcolor\":\"#f2f2f2\",\"font\":{\"size\":11}},{\"font\":{\"size\":12}},{\"font\":{\"size\":15}},{\"align\":\"center\",\"font\":{\"size\":15}},{\"textwrap\":true},{\"color\":\"#fe0000\",\"textwrap\":true},{\"color\":\"#fe0000\"},{\"color\":\"#000100\",\"textwrap\":true},{\"color\":\"#000100\"},{\"color\":\"#000100\",\"textwrap\":true,\"font\":{\"size\":15}},{\"color\":\"#000100\",\"font\":{\"size\":15}},{\"color\":\"#000100\",\"font\":{\"size\":18}},{\"font\":{\"size\":18}}],\"validations\":[],\"cols\":{\"0\":{\"width\":72},\"3\":{\"width\":101},\"4\":{\"width\":90},\"len\":100,\"5\":{\"width\":54}},\"merges\":[\"F2:G2\",\"I2:N2\",\"C3:D3\"]}', NULL, 'https://static.jeecg.com/designreport/images/fl_1630235558373.png', 'admin', '2023-09-23 16:10:59', 'admin', '2023-09-23 16:11:16', 1, NULL, NULL, 0, 0, NULL, NULL, NULL, '2');
|
|
|
|
|
INSERT INTO `jimu_report` VALUES ('865474009323634688', '20230923161133', '分栏示例副本0651', NULL, NULL, 'datainfo', '{\"loopBlockList\":[{\"sci\":1,\"index\":1,\"eci\":5,\"sri\":2,\"eri\":5,\"db\":\"jvafirszjv\",\"loopTime\":3}],\"area\":false,\"excel_config_id\":\"865474009323634688\",\"printConfig\":{\"layout\":\"portrait\",\"paper\":\"A4\",\"isBackend\":false,\"width\":210,\"definition\":1,\"marginX\":10,\"height\":297,\"marginY\":10},\"zonedEditionList\":[],\"rows\":{\"0\":{\"cells\":{},\"height\":44},\"1\":{\"cells\":{\"2\":{\"style\":13,\"text\":\" \"},\"4\":{\"style\":14,\"text\":\" \"},\"5\":{\"merge\":[0,1],\"style\":15,\"text\":\"分栏示例\",\"height\":59},\"8\":{\"merge\":[0,5],\"style\":9,\"text\":\"说明:需要对多行区域进行循环且分栏展示时,则进行循环块设置并指定横向循环次数;参考文档:http://report.jeecg.com/2373085\",\"height\":59}},\"height\":59},\"2\":{\"cells\":{\"1\":{\"loopBlock\":1,\"text\":\"\"},\"2\":{\"loopBlock\":1,\"merge\":[0,1],\"style\":2,\"text\":\"职员信息\",\"height\":34},\"3\":{\"loopBlock\":1},\"4\":{\"loopBlock\":1,\"text\":\"\"},\"5\":{\"loopBlock\":1,\"text\":\"\"}},\"height\":51},\"3\":{\"cells\":{\"1\":{\"loopBlock\":1,\"style\":4,\"text\":\"姓名\"},\"2\":{\"loopBlock\":1,\"style\":4,\"text\":\"性别\"},\"3\":{\"loopBlock\":1,\"style\":4,\"text\":\"职务\"},\"4\":{\"loopBlock\":1,\"style\":4,\"text\":\"联系方式\"},\"5\":{\"loopBlock\":1,\"text\":\"\"}},\"height\":31},\"4\":{\"cells\":{\"1\":{\"loopBlock\":1,\"style\":0,\"text\":\"#{jvafirszjv.name}\"},\"2\":{\"loopBlock\":1,\"style\":0,\"text\":\"#{jvafirszjv.sex}\"},\"3\":{\"loopBlock\":1,\"style\":0,\"text\":\"#{jvafirszjv.update_by}\"},\"4\":{\"loopBlock\":1,\"style\":0,\"text\":\"#{jvafirszjv.jphone}\"},\"5\":{\"loopBlock\":1,\"text\":\"\"}}},\"len\":103,\"5\":{\"cells\":{\"1\":{\"loopBlock\":1,\"text\":\"\"},\"2\":{\"loopBlock\":1},\"3\":{\"loopBlock\":1,\"text\":\"\"},\"4\":{\"loopBlock\":1,\"text\":\"\"},\"5\":{\"loopBlock\":1,\"text\":\"\"}},\"height\":34}},\"dbexps\":[],\"dicts\":[],\"rpbar\":{\"show\":true,\"pageSize\":\"\",\"btnList\":[]},\"fixedPrintHeadRows\":[],\"fixedPrintTailRows\":[],\"freeze\":\"A1\",\"dataRectWidth\":817,\"displayConfig\":{},\"background\":false,\"name\":\"sheet1\",\"autofilter\":{},\"styles\":[{\"border\":{\"top\":[\"thin\",\"#000\"],\"left\":[\"thin\",\"#000\"],\"bottom\":[\"thin\",\"#000\"],\"right\":[\"thin\",\"#000\"]}},{\"font\":{\"size\":14}},{\"align\":\"center\",\"font\":{\"size\":14}},{\"border\":{\"top\":[\"thin\",\"#000\"],\"left\":[\"thin\",\"#000\"],\"bottom\":[\"thin\",\"#000\"],\"right\":[\"thin\",\"#000\"]},\"font\":{\"size\":11}},{\"border\":{\"top\":[\"thin\",\"#000\"],\"left\":[\"thin\",\"#000\"],\"bottom\":[\"thin\",\"#000\"],\"right\":[\"thin\",\"#000\"]},\"bgcolor\":\"#f2f2f2\",\"font\":{\"size\":11}},{\"font\":{\"size\":12}},{\"font\":{\"size\":15}},{\"align\":\"center\",\"font\":{\"size\":15}},{\"textwrap\":true},{\"color\":\"#fe0000\",\"textwrap\":true},{\"color\":\"#fe0000\"},{\"color\":\"#000100\",\"textwrap\":true},{\"color\":\"#000100\"},{\"color\":\"#000100\",\"textwrap\":true,\"font\":{\"size\":15}},{\"color\":\"#000100\",\"font\":{\"size\":15}},{\"color\":\"#000100\",\"font\":{\"size\":18}},{\"font\":{\"size\":18}}],\"validations\":[],\"cols\":{\"0\":{\"width\":72},\"3\":{\"width\":101},\"4\":{\"width\":90},\"len\":100,\"5\":{\"width\":54}},\"merges\":[\"F2:G2\",\"I2:N2\",\"C3:D3\"]}', NULL, 'https://static.jeecg.com/designreport/images/fl_1630235558373.png', 'admin', '2023-09-23 16:11:34', 'admin', '2023-09-23 16:12:13', 1, NULL, NULL, 0, 0, NULL, NULL, NULL, '2');
|
|
|
|
|
INSERT INTO `jimu_report` VALUES ('865474119583498240', '20230923161200', '分栏示例副本0651', NULL, NULL, 'datainfo', '{\"loopBlockList\":[{\"sci\":1,\"index\":1,\"eci\":5,\"sri\":2,\"eri\":5,\"db\":\"adezdurdfk\",\"loopTime\":3}],\"area\":false,\"excel_config_id\":\"865474119583498240\",\"printConfig\":{\"layout\":\"portrait\",\"paper\":\"A4\",\"isBackend\":false,\"width\":210,\"definition\":1,\"marginX\":10,\"height\":297,\"marginY\":10},\"zonedEditionList\":[],\"rows\":{\"0\":{\"cells\":{},\"height\":44},\"1\":{\"cells\":{\"2\":{\"style\":13,\"text\":\" \"},\"4\":{\"style\":14,\"text\":\" \"},\"5\":{\"merge\":[0,1],\"style\":15,\"text\":\"分栏示例\",\"height\":59},\"8\":{\"merge\":[0,5],\"style\":9,\"text\":\"说明:需要对多行区域进行循环且分栏展示时,则进行循环块设置并指定横向循环次数;参考文档:http://report.jeecg.com/2373085\",\"height\":59}},\"height\":59},\"2\":{\"cells\":{\"1\":{\"loopBlock\":1,\"text\":\"\"},\"2\":{\"loopBlock\":1,\"merge\":[0,1],\"style\":2,\"text\":\"职员信息\",\"height\":34},\"3\":{\"loopBlock\":1},\"4\":{\"loopBlock\":1,\"text\":\"\"},\"5\":{\"loopBlock\":1,\"text\":\"\"}},\"height\":51},\"3\":{\"cells\":{\"1\":{\"loopBlock\":1,\"style\":4,\"text\":\"姓名\"},\"2\":{\"loopBlock\":1,\"style\":4,\"text\":\"性别\"},\"3\":{\"loopBlock\":1,\"style\":4,\"text\":\"职务\"},\"4\":{\"loopBlock\":1,\"style\":4,\"text\":\"联系方式\"},\"5\":{\"loopBlock\":1,\"text\":\"\"}},\"height\":31},\"4\":{\"cells\":{\"1\":{\"loopBlock\":1,\"style\":0,\"text\":\"#{adezdurdfk.name}\"},\"2\":{\"loopBlock\":1,\"style\":0,\"text\":\"#{adezdurdfk.sex}\"},\"3\":{\"loopBlock\":1,\"style\":0,\"text\":\"#{adezdurdfk.update_by}\"},\"4\":{\"loopBlock\":1,\"style\":0,\"text\":\"#{adezdurdfk.jphone}\"},\"5\":{\"loopBlock\":1,\"text\":\"\"}}},\"len\":103,\"5\":{\"cells\":{\"1\":{\"loopBlock\":1,\"text\":\"\"},\"2\":{\"loopBlock\":1},\"3\":{\"loopBlock\":1,\"text\":\"\"},\"4\":{\"loopBlock\":1,\"text\":\"\"},\"5\":{\"loopBlock\":1,\"text\":\"\"}},\"height\":34}},\"dbexps\":[],\"dicts\":[],\"rpbar\":{\"show\":true,\"pageSize\":\"\",\"btnList\":[]},\"fixedPrintHeadRows\":[],\"fixedPrintTailRows\":[],\"freeze\":\"A1\",\"dataRectWidth\":817,\"displayConfig\":{},\"background\":false,\"name\":\"sheet1\",\"autofilter\":{},\"styles\":[{\"border\":{\"top\":[\"thin\",\"#000\"],\"left\":[\"thin\",\"#000\"],\"bottom\":[\"thin\",\"#000\"],\"right\":[\"thin\",\"#000\"]}},{\"font\":{\"size\":14}},{\"align\":\"center\",\"font\":{\"size\":14}},{\"border\":{\"top\":[\"thin\",\"#000\"],\"left\":[\"thin\",\"#000\"],\"bottom\":[\"thin\",\"#000\"],\"right\":[\"thin\",\"#000\"]},\"font\":{\"size\":11}},{\"border\":{\"top\":[\"thin\",\"#000\"],\"left\":[\"thin\",\"#000\"],\"bottom\":[\"thin\",\"#000\"],\"right\":[\"thin\",\"#000\"]},\"bgcolor\":\"#f2f2f2\",\"font\":{\"size\":11}},{\"font\":{\"size\":12}},{\"font\":{\"size\":15}},{\"align\":\"center\",\"font\":{\"size\":15}},{\"textwrap\":true},{\"color\":\"#fe0000\",\"textwrap\":true},{\"color\":\"#fe0000\"},{\"color\":\"#000100\",\"textwrap\":true},{\"color\":\"#000100\"},{\"color\":\"#000100\",\"textwrap\":true,\"font\":{\"size\":15}},{\"color\":\"#000100\",\"font\":{\"size\":15}},{\"color\":\"#000100\",\"font\":{\"size\":18}},{\"font\":{\"size\":18}}],\"validations\":[],\"cols\":{\"0\":{\"width\":72},\"3\":{\"width\":101},\"4\":{\"width\":90},\"len\":100,\"5\":{\"width\":54}},\"merges\":[\"F2:G2\",\"I2:N2\",\"C3:D3\"]}', NULL, 'https://static.jeecg.com/designreport/images/fl_1630235558373.png', 'admin', '2023-09-23 16:12:00', 'admin', '2023-09-23 16:12:11', 1, NULL, NULL, 0, 0, NULL, NULL, NULL, '2');
|
|
|
|
|
INSERT INTO `jimu_report` VALUES ('865474395669364736', '20230923161305', '分栏示例副本0651', NULL, NULL, 'datainfo', '{\"loopBlockList\":[{\"sci\":1,\"index\":1,\"eci\":5,\"sri\":2,\"eri\":5,\"db\":\"fpndelhuns\",\"loopTime\":3}],\"area\":false,\"excel_config_id\":\"865474395669364736\",\"printConfig\":{\"layout\":\"portrait\",\"paper\":\"A4\",\"isBackend\":false,\"width\":210,\"definition\":1,\"marginX\":10,\"height\":297,\"marginY\":10},\"zonedEditionList\":[],\"rows\":{\"0\":{\"cells\":{},\"height\":44},\"1\":{\"cells\":{\"2\":{\"style\":13,\"text\":\" \"},\"4\":{\"style\":14,\"text\":\" \"},\"5\":{\"merge\":[0,1],\"style\":15,\"text\":\"分栏示例\",\"height\":59},\"8\":{\"merge\":[0,5],\"style\":9,\"text\":\"说明:需要对多行区域进行循环且分栏展示时,则进行循环块设置并指定横向循环次数;参考文档:http://report.jeecg.com/2373085\",\"height\":59}},\"height\":59},\"2\":{\"cells\":{\"1\":{\"loopBlock\":1,\"text\":\"\"},\"2\":{\"loopBlock\":1,\"merge\":[0,1],\"style\":2,\"text\":\"职员信息\",\"height\":34},\"3\":{\"loopBlock\":1},\"4\":{\"loopBlock\":1,\"text\":\"\"},\"5\":{\"loopBlock\":1,\"text\":\"\"}},\"height\":51},\"3\":{\"cells\":{\"1\":{\"loopBlock\":1,\"style\":4,\"text\":\"姓名\"},\"2\":{\"loopBlock\":1,\"style\":4,\"text\":\"性别\"},\"3\":{\"loopBlock\":1,\"style\":4,\"text\":\"职务\"},\"4\":{\"loopBlock\":1,\"style\":4,\"text\":\"联系方式\"},\"5\":{\"loopBlock\":1,\"text\":\"\"}},\"height\":31},\"4\":{\"cells\":{\"1\":{\"loopBlock\":1,\"style\":0,\"text\":\"#{fpndelhuns.name}\"},\"2\":{\"loopBlock\":1,\"style\":0,\"text\":\"#{fpndelhuns.sex}\"},\"3\":{\"loopBlock\":1,\"style\":0,\"text\":\"#{fpndelhuns.update_by}\"},\"4\":{\"loopBlock\":1,\"style\":0,\"text\":\"#{fpndelhuns.jphone}\"},\"5\":{\"loopBlock\":1,\"text\":\"\"}}},\"len\":103,\"5\":{\"cells\":{\"1\":{\"loopBlock\":1,\"text\":\"\"},\"2\":{\"loopBlock\":1},\"3\":{\"loopBlock\":1,\"text\":\"\"},\"4\":{\"loopBlock\":1,\"text\":\"\"},\"5\":{\"loopBlock\":1,\"text\":\"\"}},\"height\":34}},\"dbexps\":[],\"dicts\":[],\"rpbar\":{\"show\":true,\"pageSize\":\"\",\"btnList\":[]},\"fixedPrintHeadRows\":[],\"fixedPrintTailRows\":[],\"freeze\":\"A1\",\"dataRectWidth\":817,\"displayConfig\":{},\"background\":false,\"name\":\"sheet1\",\"autofilter\":{},\"styles\":[{\"border\":{\"top\":[\"thin\",\"#000\"],\"left\":[\"thin\",\"#000\"],\"bottom\":[\"thin\",\"#000\"],\"right\":[\"thin\",\"#000\"]}},{\"font\":{\"size\":14}},{\"align\":\"center\",\"font\":{\"size\":14}},{\"border\":{\"top\":[\"thin\",\"#000\"],\"left\":[\"thin\",\"#000\"],\"bottom\":[\"thin\",\"#000\"],\"right\":[\"thin\",\"#000\"]},\"font\":{\"size\":11}},{\"border\":{\"top\":[\"thin\",\"#000\"],\"left\":[\"thin\",\"#000\"],\"bottom\":[\"thin\",\"#000\"],\"right\":[\"thin\",\"#000\"]},\"bgcolor\":\"#f2f2f2\",\"font\":{\"size\":11}},{\"font\":{\"size\":12}},{\"font\":{\"size\":15}},{\"align\":\"center\",\"font\":{\"size\":15}},{\"textwrap\":true},{\"color\":\"#fe0000\",\"textwrap\":true},{\"color\":\"#fe0000\"},{\"color\":\"#000100\",\"textwrap\":true},{\"color\":\"#000100\"},{\"color\":\"#000100\",\"textwrap\":true,\"font\":{\"size\":15}},{\"color\":\"#000100\",\"font\":{\"size\":15}},{\"color\":\"#000100\",\"font\":{\"size\":18}},{\"font\":{\"size\":18}}],\"validations\":[],\"cols\":{\"0\":{\"width\":72},\"3\":{\"width\":101},\"4\":{\"width\":90},\"len\":100,\"5\":{\"width\":54}},\"merges\":[\"F2:G2\",\"I2:N2\",\"C3:D3\"]}', NULL, 'https://static.jeecg.com/designreport/images/fl_1630235558373.png', 'admin', '2023-09-23 16:13:06', 'admin', '2023-09-23 16:13:42', 1, NULL, NULL, 0, 0, NULL, NULL, NULL, '2');
|
|
|
|
|
INSERT INTO `jimu_report` VALUES ('865474415168684032', '20230923161310', '简单分组报表副本0615', NULL, NULL, 'datainfo', '{\"loopBlockList\":[],\"area\":{\"sci\":2,\"width\":100,\"eci\":2,\"sri\":3,\"eri\":3,\"height\":54},\"excel_config_id\":\"865474415168684032\",\"printConfig\":{\"layout\":\"portrait\",\"paper\":\"A4\",\"isBackend\":false,\"width\":210,\"definition\":4,\"marginX\":10,\"height\":297,\"marginY\":10},\"zonedEditionList\":[],\"rows\":{\"1\":{\"cells\":{\"1\":{\"merge\":[0,5],\"style\":2,\"text\":\"纵向员工信息登记表\",\"height\":0}},\"height\":40},\"2\":{\"cells\":{\"1\":{\"style\":15,\"text\":\"部门\"},\"2\":{\"style\":15,\"text\":\"学历\"},\"3\":{\"style\":15,\"text\":\"姓名\"},\"4\":{\"style\":15,\"text\":\"性别\"},\"5\":{\"style\":15,\"text\":\"年龄\"},\"6\":{\"style\":15,\"text\":\"薪水\"}},\"height\":34},\"3\":{\"cells\":{\"1\":{\"textOrders\":\"人事部|研发部\",\"style\":17,\"text\":\"#{uduqvrotru.group(department)}\",\"sort\":\"desc\",\"aggregate\":\"group\"},\"2\":{\"textOrders\":\"本科|专科\",\"style\":17,\"text\":\"#{uduqvrotru.group(education)}\",\"sort\":\"default\",\"aggregate\":\"group\"},\"3\":{\"textOrders\":\"\",\"style\":17,\"text\":\"#{uduqvrotru.name}\",\"sort\":\"default\"},\"4\":{\"style\":17,\"text\":\"#{uduqvrotru.sex}\"},\"5\":{\"style\":17,\"text\":\"#{uduqvrotru.age}\"},\"6\":{\"style\":17,\"text\":\"#{uduqvrotru.salary}\"}},\"height\":54},\"len\":100},\"dbexps\":[],\"dicts\":[],\"rpbar\":{\"show\":true,\"pageSize\":\"1000\",\"btnList\":[1,2,3,4,5,6,7,8,9]},\"groupField\":\"uduqvrotru.department\",\"fixedPrintHeadRows\":[],\"fixedPrintTailRows\":[],\"freeze\":\"A1\",\"dataRectWidth\":687,\"displayConfig\":{},\"background\":false,\"name\":\"sheet1\",\"autofilter\":{},\"styles\":[{\"font\":{\"bold\":true}},{\"font\":{\"size\":16,\"bold\":true}},{\"align\":\"center\",\"font\":{\"size\":16,\"bold\":true}},{\"align\":\"center\"},{\"bgcolor\":\"#5b9cd6\",\"align\":\"center\"},{\"bgcolor\":\"#5b9cd6\",\"color\":\"#ffffff\",\"align\":\"center\"},{\"border\":{\"top\":[\"thin\",\"#000\"],\"left\":[\"thin\",\"#000\"],\"right\":[\"thin\",\"#000\"],\"bouduqvrotruom\":[\"thin\",\"#000\"]},\"bgcolor\":\"#5b9cd6\",\"color\":\"#ffffff\",\"align\":\"center\"},{\"border\":{\"top\":[\"thin\",\"#000\"],\"left\":[\"thin\",\"#000\"],\"right\":[\"thin\",\"#000\"],\"bouduqvrotruom\":[\"thin\",\"#000\"]}},{\"border\":{\"top\":[\"thin\",\"#bfbfbf\"],\"left\":[\"thin\",\"#bfbfbf\"],\"right\":[\"thin\",\"#bfbfbf\"],\"bouduqvrotruom\":[\"thin\",\"#bfbfbf\"]},\"bgcolor\":\"#5b9cd6\",\"color\":\"#ffffff\",\"align\":\"center\"},{\"border\":{\"top\":[\"thin\",\"#bfbfbf\"],\"left\":[\"thin\",\"#bfbfbf\"],\"right\":[\"thin\",\"#bfbfbf\"],\"bouduqvrotruom\":[\"thin\",\"#bfbfbf\"]}},{\"border\":{\"top\":[\"thin\",\"#9cc2e6\"],\"left\":[\"thin\",\"#9cc2e6\"],\"right\":[\"thin\",\"#9cc2e6\"],\"bouduqvrotruom\":[\"thin\",\"#9cc2e6\"]},\"bgcolor\":\"#5b9cd6\",\"color\":\"#ffffff\",\"align\":\"center\"},{\"border\":{\"top\":[\"thin\",\"#9cc2e6\"],\"left\":[\"thin\",\"#9cc2e6\"],\"right\":[\"thin\",\"#9cc2e6\"],\"bouduqvrotruom\":[\"thin\",\"#9cc2e6\"]}},{\"border\":{\"top\":[\"thin\",\"#9cc2e6\"],\"left\":[\"thin\",\"#9cc2e6\"],\"right\":[\"thin\",\"#9cc2e6\"],\"bouduqvrotruom\":[\"thin\",\"#9cc2e6\"]},\"bgcolor\":\"#bdd7ee\",\"color\":\"#ffffff\",\"align\":\"center\"},{\"border\":{\"top\":[\"thin\",\"#9cc2e6\"],\"left\":[\"thin\",\"#9cc2e6\"],\"right\":[\"thin\",\"#9cc2e6\"],\"bouduqvrotruom\":[\"thin\",\"#9cc2e6\"]},\"bgcolor\":\"#bdd7ee\",\"color\":\"#000100\",\"align\":\"center\"},{\"border\":{\"top\":[\"thin\",\"#9cc2e6\"],\"left\":[\"thin\",\"#9cc2e6\"],\"right\":[\"thin\",\"#9cc2e6\"],\"bouduqvrotruom\":[\"thin\",\"#9cc2e6\"]},\"bgcolor\":\"#9cc2e6\",\"color\":\"#000100\",\"align\":\"center\"},{\"border\":{\"top\":[\"thin\",\"#5b9cd6\"],\"left\":[\"thin\",\"#5b9cd6\"],\"right\":[\"thin\",\"#5b9cd6\"],\"bouduqvrotruom\":[\"thin\",\"#5b9cd6\"]},\"bgcolor\":\"#9cc2e6\",\"color\":\"#000100\",\"align\":\"center\"},{\"border\":{\"top\":[\"thin\",\"#5b9cd6\"],\"left\":[\"thin\",\"
|
|
|
|
|
INSERT INTO `jimu_report` VALUES ('865474427181170688', '20230923161313', 'SSD', NULL, NULL, 'datainfo', '{\"loopBlockList\":[],\"area\":{\"sri\":14,\"sci\":2,\"eri\":14,\"eci\":2,\"width\":100,\"height\":25},\"excel_config_id\":\"865474427181170688\",\"printConfig\":{\"layout\":\"portrait\",\"printCallBackUrl\":\"\",\"paper\":\"A4\",\"isBackend\":false,\"width\":210,\"definition\":1,\"marginX\":10,\"height\":297,\"marginY\":10},\"zonedEditionList\":[],\"rows\":{\"2\":{\"cells\":{\"1\":{\"text\":\"12.34\"},\"2\":{\"text\":\"=cnmoney(B3)\"}}},\"11\":{\"cells\":{\"2\":{\"text\":\"1\"}}},\"14\":{\"cells\":{\"2\":{\"text\":\"1\"}}},\"len\":200},\"dbexps\":[],\"dicts\":[],\"rpbar\":{\"show\":true,\"pageSize\":\"\",\"btnList\":[]},\"fixedPrintHeadRows\":[],\"fixedPrintTailRows\":[],\"freeze\":\"A1\",\"dataRectWidth\":300,\"displayConfig\":{},\"background\":false,\"name\":\"sheet1\",\"autofilter\":{},\"styles\":[],\"validations\":[],\"cols\":{\"len\":100},\"merges\":[]}', NULL, NULL, 'admin', '2023-09-23 16:13:13', 'admin', '2023-09-23 16:13:31', 1, NULL, NULL, 0, 2, NULL, NULL, NULL, '2');
|
|
|
|
|
INSERT INTO `jimu_report` VALUES ('871910333580627968', '20231011102713', 'SSD', NULL, NULL, 'datainfo', '{\"loopBlockList\":[],\"area\":false,\"excel_config_id\":\"871910333580627968\",\"printConfig\":{\"layout\":\"portrait\",\"printCallBackUrl\":\"\",\"paper\":\"A4\",\"isBackend\":false,\"width\":210,\"definition\":1,\"marginX\":10,\"height\":297,\"marginY\":10},\"zonedEditionList\":[],\"rows\":{\"2\":{\"cells\":{\"1\":{\"text\":\"12.34\"},\"2\":{\"text\":\"=cnmoney(B3)\"}}},\"len\":200},\"dbexps\":[],\"dicts\":[],\"rpbar\":{\"show\":true,\"pageSize\":\"\",\"btnList\":[]},\"fixedPrintHeadRows\":[],\"fixedPrintTailRows\":[],\"freeze\":\"A1\",\"dataRectWidth\":300,\"displayConfig\":{},\"background\":false,\"name\":\"sheet1\",\"autofilter\":{},\"styles\":[],\"validations\":[],\"cols\":{\"len\":100},\"merges\":[]}', NULL, NULL, 'admin', '2023-10-11 02:27:13', 'admin', '2023-10-11 02:27:21', 1, NULL, NULL, 0, 0, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report` VALUES ('873354273768964096', '20231015100547', '测试sql', NULL, NULL, 'datainfo', '{\"loopBlockList\":[],\"area\":false,\"excel_config_id\":\"873354273768964096\",\"printConfig\":{\"layout\":\"portrait\",\"printCallBackUrl\":\"\",\"paper\":\"A4\",\"isBackend\":false,\"width\":210,\"definition\":1,\"marginX\":10,\"height\":297,\"marginY\":10},\"zonedEditionList\":[],\"rows\":{\"3\":{\"cells\":{\"1\":{\"text\":\"#{sql01.dict_name}\"},\"2\":{\"text\":\"#{sql01.dict_code}\"}}},\"len\":200},\"dbexps\":[],\"dicts\":[],\"rpbar\":{\"show\":true,\"pageSize\":\"\",\"btnList\":[]},\"fixedPrintHeadRows\":[],\"fixedPrintTailRows\":[],\"freeze\":\"A1\",\"dataRectWidth\":300,\"displayConfig\":{},\"background\":false,\"name\":\"sheet1\",\"autofilter\":{},\"styles\":[],\"validations\":[],\"cols\":{\"len\":100},\"merges\":[]}', NULL, NULL, 'admin', '2023-10-15 10:05:48', 'admin', '2023-10-16 16:51:46', 0, NULL, NULL, 0, 5, NULL, NULL, NULL, '2');
|
|
|
|
|
INSERT INTO `jimu_report` VALUES ('873819673753341952', '20231016165508', '测试sql01', NULL, NULL, 'datainfo', '{\"loopBlockList\":[],\"area\":{\"sri\":2,\"sci\":2,\"eri\":2,\"eci\":2,\"width\":100,\"height\":25},\"excel_config_id\":\"873819673753341952\",\"printConfig\":{\"paper\":\"A4\",\"width\":210,\"height\":297,\"definition\":1,\"isBackend\":false,\"marginX\":10,\"marginY\":10,\"layout\":\"portrait\",\"printCallBackUrl\":\"\"},\"zonedEditionList\":[],\"rows\":{\"2\":{\"cells\":{\"1\":{\"text\":\"name\"},\"2\":{\"text\":\"code\"}}},\"3\":{\"cells\":{\"1\":{\"text\":\"#{sql01.dict_name}\"},\"2\":{\"text\":\"#{sql01.dict_code}\"}}},\"len\":200},\"dbexps\":[],\"dicts\":[],\"rpbar\":{\"show\":true,\"pageSize\":\"\",\"btnList\":[]},\"fixedPrintHeadRows\":[],\"fixedPrintTailRows\":[],\"freeze\":\"A1\",\"dataRectWidth\":300,\"displayConfig\":{},\"background\":false,\"name\":\"sheet1\",\"autofilter\":{},\"styles\":[],\"validations\":[],\"cols\":{\"len\":100},\"merges\":[]}', NULL, NULL, 'admin', '2023-10-16 16:55:08', NULL, '2023-10-16 16:55:08', 0, NULL, NULL, 0, 1, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report` VALUES ('873819956986302464', '20231016165527', 'dd', NULL, NULL, 'datainfo', '{\"loopBlockList\":[],\"area\":{\"sri\":6,\"sci\":2,\"eri\":6,\"eci\":2,\"width\":100,\"height\":25},\"excel_config_id\":\"873819956986302464\",\"printConfig\":{\"paper\":\"A4\",\"width\":210,\"height\":297,\"definition\":1,\"isBackend\":false,\"marginX\":10,\"marginY\":10,\"layout\":\"portrait\",\"printCallBackUrl\":\"\"},\"zonedEditionList\":[],\"rows\":{\"4\":{\"cells\":{\"1\":{\"text\":\"d\"}}},\"6\":{\"cells\":{\"2\":{\"text\":\"d\"}}},\"len\":200},\"dbexps\":[],\"dicts\":[],\"rpbar\":{\"show\":true,\"pageSize\":\"\",\"btnList\":[]},\"fixedPrintHeadRows\":[],\"fixedPrintTailRows\":[],\"freeze\":\"A1\",\"dataRectWidth\":300,\"displayConfig\":{},\"background\":false,\"name\":\"sheet1\",\"autofilter\":{},\"styles\":[],\"validations\":[],\"cols\":{\"len\":100},\"merges\":[]}', NULL, NULL, 'admin', '2023-10-16 16:55:28', 'admin', '2024-02-01 18:00:15', 1, NULL, NULL, 0, 2, NULL, NULL, NULL, '1');
|
|
|
|
|
INSERT INTO `jimu_report` VALUES ('873821609865039872', '20231016170202', '1', NULL, NULL, 'datainfo', '{\"loopBlockList\":[],\"area\":{\"sri\":4,\"sci\":0,\"eri\":4,\"eci\":99,\"width\":10000,\"height\":25},\"excel_config_id\":\"873821609865039872\",\"printConfig\":{\"layout\":\"portrait\",\"printCallBackUrl\":\"\",\"paper\":\"A4\",\"isBackend\":false,\"width\":210,\"definition\":1,\"marginX\":10,\"height\":297,\"marginY\":10},\"zonedEditionList\":[],\"rows\":{\"4\":{\"cells\":{\"1\":{},\"2\":{}}},\"len\":200},\"dbexps\":[],\"dicts\":[],\"rpbar\":{\"show\":true,\"pageSize\":\"\",\"btnList\":[]},\"fixedPrintHeadRows\":[],\"fixedPrintTailRows\":[],\"freeze\":\"A1\",\"dataRectWidth\":0,\"displayConfig\":{},\"background\":false,\"name\":\"sheet1\",\"autofilter\":{},\"styles\":[],\"validations\":[],\"cols\":{\"len\":100},\"merges\":[]}', NULL, NULL, 'admin', '2023-10-16 17:02:03', 'admin', '2023-10-16 17:02:41', 1, NULL, NULL, 0, 0, NULL, NULL, NULL, '2');
|
|
|
|
|
INSERT INTO `jimu_report` VALUES ('873821798596136960', '20231016170245', '1', NULL, NULL, 'datainfo', '{\"loopBlockList\":[],\"area\":false,\"excel_config_id\":\"873821798596136960\",\"printConfig\":{\"layout\":\"portrait\",\"printCallBackUrl\":\"\",\"paper\":\"A4\",\"isBackend\":false,\"width\":210,\"definition\":1,\"marginX\":10,\"height\":297,\"marginY\":10},\"zonedEditionList\":[],\"rows\":{\"4\":{\"cells\":{\"1\":{\"text\":\"1\"}}},\"5\":{\"cells\":{\"2\":{\"text\":\"1\"}}},\"len\":200},\"dbexps\":[],\"dicts\":[],\"rpbar\":{\"show\":true,\"pageSize\":\"\",\"btnList\":[]},\"fixedPrintHeadRows\":[],\"fixedPrintTailRows\":[],\"freeze\":\"A1\",\"dataRectWidth\":300,\"displayConfig\":{},\"background\":false,\"name\":\"sheet1\",\"autofilter\":{},\"styles\":[],\"validations\":[],\"cols\":{\"len\":100},\"merges\":[]}', NULL, NULL, 'admin', '2023-10-16 17:02:46', 'admin', '2023-10-16 17:03:02', 1, NULL, NULL, 0, 1, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report` VALUES ('873821884776501248', '20231016170323', 'sss', NULL, NULL, 'datainfo', '{\"loopBlockList\":[],\"area\":false,\"excel_config_id\":\"873821884776501248\",\"printConfig\":{\"paper\":\"A4\",\"width\":210,\"height\":297,\"definition\":1,\"isBackend\":false,\"marginX\":10,\"marginY\":10,\"layout\":\"portrait\",\"printCallBackUrl\":\"\"},\"zonedEditionList\":[],\"rows\":{\"3\":{\"cells\":{\"1\":{\"text\":\"#{ss.dict_name}\"},\"2\":{\"text\":\"#{ss.dict_code}\"}}},\"len\":200},\"dbexps\":[],\"dicts\":[],\"rpbar\":{\"show\":true,\"pageSize\":\"\",\"btnList\":[]},\"fixedPrintHeadRows\":[],\"fixedPrintTailRows\":[],\"freeze\":\"A1\",\"dataRectWidth\":300,\"displayConfig\":{},\"background\":false,\"name\":\"sheet1\",\"autofilter\":{},\"styles\":[],\"validations\":[],\"cols\":{\"len\":100},\"merges\":[]}', NULL, NULL, 'admin', '2023-10-16 17:03:23', NULL, '2023-10-16 17:03:23', 0, NULL, NULL, 0, 0, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report` VALUES ('873822188360224768', '20231016170419', '1', NULL, NULL, 'datainfo', '{\"loopBlockList\":[],\"area\":{\"sri\":8,\"sci\":1,\"eri\":8,\"eci\":1,\"width\":100,\"height\":25},\"excel_config_id\":\"873822188360224768\",\"printConfig\":{\"paper\":\"A4\",\"width\":210,\"height\":297,\"definition\":1,\"isBackend\":false,\"marginX\":10,\"marginY\":10,\"layout\":\"portrait\",\"printCallBackUrl\":\"\"},\"zonedEditionList\":[],\"rows\":{\"3\":{\"cells\":{\"2\":{\"text\":\"1\"}}},\"8\":{\"cells\":{\"1\":{\"text\":\"1\"}}},\"len\":200},\"dbexps\":[],\"dicts\":[],\"rpbar\":{\"show\":true,\"pageSize\":\"\",\"btnList\":[]},\"fixedPrintHeadRows\":[],\"fixedPrintTailRows\":[],\"freeze\":\"A1\",\"dataRectWidth\":300,\"displayConfig\":{},\"background\":false,\"name\":\"sheet1\",\"autofilter\":{},\"styles\":[],\"validations\":[],\"cols\":{\"len\":100},\"merges\":[]}', NULL, NULL, 'admin', '2023-10-16 17:04:19', 'admin', '2023-10-16 17:04:25', 1, NULL, NULL, 0, 0, NULL, NULL, NULL, '1');
|
|
|
|
|
INSERT INTO `jimu_report` VALUES ('873822238519906304', '20231016170459', 'ss', NULL, NULL, 'datainfo', '{\"loopBlockList\":[],\"area\":false,\"excel_config_id\":\"873822238519906304\",\"printConfig\":{\"layout\":\"portrait\",\"printCallBackUrl\":\"\",\"paper\":\"A4\",\"isBackend\":false,\"width\":210,\"definition\":1,\"marginX\":10,\"height\":297,\"marginY\":10},\"zonedEditionList\":[],\"rows\":{\"3\":{\"cells\":{\"1\":{\"text\":\"#{ss.dict_name}\"},\"2\":{\"text\":\"#{ss.dict_code}\"}}},\"len\":200},\"dbexps\":[],\"dicts\":[],\"rpbar\":{\"show\":true,\"pageSize\":\"\",\"btnList\":[]},\"fixedPrintHeadRows\":[],\"fixedPrintTailRows\":[],\"freeze\":\"A1\",\"dataRectWidth\":300,\"displayConfig\":{},\"background\":false,\"name\":\"sheet1\",\"autofilter\":{},\"styles\":[],\"validations\":[],\"cols\":{\"len\":100},\"merges\":[]}', NULL, NULL, 'admin', '2023-10-16 17:04:59', 'admin', '2023-11-03 22:47:52', 0, NULL, NULL, 0, 8, NULL, NULL, NULL, '1');
|
|
|
|
|
INSERT INTO `jimu_report` VALUES ('876670635937419264', '20231024134257', '测试sql111', NULL, NULL, 'datainfo', '{\"loopBlockList\":[],\"area\":{\"sri\":18,\"sci\":0,\"eri\":18,\"eci\":0,\"width\":100,\"height\":25},\"excel_config_id\":\"876670635937419264\",\"printConfig\":{\"layout\":\"portrait\",\"printCallBackUrl\":\"\",\"paper\":\"A4\",\"isBackend\":false,\"width\":210,\"definition\":1,\"marginX\":10,\"height\":297,\"marginY\":10},\"zonedEditionList\":[],\"rows\":{\"3\":{\"cells\":{\"1\":{\"text\":\"#{waahhtvchq.dict_name}\"},\"2\":{\"text\":\"#{waahhtvchq.dict_code}\"}}},\"14\":{\"cells\":{\"1\":{\"text\":\"#{ss.biz_income}\"},\"2\":{\"text\":\"#{ss.bx_jj_yongjin}\"}}},\"15\":{\"cells\":{\"2\":{}}},\"len\":200},\"dbexps\":[],\"dicts\":[],\"rpbar\":{\"show\":true,\"pageSize\":\"\",\"btnList\":[]},\"fixedPrintHeadRows\":[],\"fixedPrintTailRows\":[],\"freeze\":\"A1\",\"dataRectWidth\":300,\"displayConfig\":{},\"background\":false,\"name\":\"sheet1\",\"autofilter\":{},\"styles\":[],\"validations\":[],\"cols\":{\"len\":100},\"merges\":[]}', NULL, NULL, 'admin', '2023-10-24 13:42:58', 'admin', '2023-10-24 13:45:37', 0, NULL, NULL, 0, 5, NULL, NULL, NULL, '2');
|
|
|
|
|
INSERT INTO `jimu_report` VALUES ('876671520973312000', '20231024134628', '测试sql111', NULL, NULL, 'datainfo', '{\"loopBlockList\":[],\"area\":false,\"excel_config_id\":\"876671520973312000\",\"printConfig\":{\"layout\":\"portrait\",\"printCallBackUrl\":\"\",\"paper\":\"A4\",\"isBackend\":false,\"width\":210,\"definition\":1,\"marginX\":10,\"height\":297,\"marginY\":10},\"zonedEditionList\":[],\"rows\":{\"3\":{\"cells\":{\"1\":{\"text\":\"#{cusehpkouh.dict_name}\"},\"2\":{\"text\":\"#{cusehpkouh.dict_code}\"}}},\"14\":{\"cells\":{\"1\":{\"text\":\"#{zdlortpuzn.biz_income}\"},\"2\":{\"text\":\"#{zdlortpuzn.bx_jj_yongjin}\"}}},\"15\":{\"cells\":{\"2\":{}}},\"len\":200},\"dbexps\":[],\"dicts\":[],\"rpbar\":{\"show\":true,\"pageSize\":\"\",\"btnList\":[]},\"fixedPrintHeadRows\":[],\"fixedPrintTailRows\":[],\"freeze\":\"A1\",\"dataRectWidth\":300,\"displayConfig\":{},\"background\":false,\"name\":\"sheet1\",\"autofilter\":{},\"styles\":[],\"validations\":[],\"cols\":{\"len\":100},\"merges\":[]}', NULL, NULL, 'admin', '2023-10-24 13:46:29', 'admin', '2023-12-04 18:56:41', 0, NULL, NULL, 0, 7, NULL, NULL, NULL, '2');
|
|
|
|
|
INSERT INTO `jimu_report` VALUES ('891572767673122816', '20231204163842', '导出报错', NULL, NULL, 'datainfo', '{\"loopBlockList\":[],\"chartList\":[{\"row\":0,\"col\":0,\"colspan\":6,\"rowspan\":19,\"width\":\"586\",\"height\":\"457\",\"config\":\"{\\\"yAxis\\\":{\\\"axisLabel\\\":{\\\"textStyle\\\":{\\\"color\\\":\\\"#333\\\",\\\"fontSize\\\":12}},\\\"axisLine\\\":{\\\"lineStyle\\\":{\\\"color\\\":\\\"#333\\\"}},\\\"show\\\":true,\\\"name\\\":\\\"销量\\\",\\\"splitLine\\\":{\\\"lineStyle\\\":{\\\"color\\\":\\\"red\\\",\\\"width\\\":1,\\\"type\\\":\\\"solid\\\"},\\\"show\\\":false}},\\\"xAxis\\\":{\\\"axisLabel\\\":{\\\"rotate\\\":0,\\\"interval\\\":\\\"auto\\\",\\\"textStyle\\\":{\\\"color\\\":\\\"#333\\\",\\\"fontSize\\\":12}},\\\"data\\\":[\\\"衬衫\\\",\\\"羊毛衫\\\",\\\"雪纺衫\\\",\\\"裤子\\\",\\\"高跟鞋\\\",\\\"袜子\\\"],\\\"axisLine\\\":{\\\"lineStyle\\\":{\\\"color\\\":\\\"#333\\\"}},\\\"show\\\":true,\\\"name\\\":\\\"服饰\\\",\\\"splitLine\\\":{\\\"lineStyle\\\":{\\\"color\\\":\\\"red\\\",\\\"width\\\":1,\\\"type\\\":\\\"solid\\\"},\\\"show\\\":false}},\\\"grid\\\":{\\\"top\\\":60,\\\"left\\\":60,\\\"bottom\\\":60,\\\"right\\\":60},\\\"series\\\":[{\\\"barWidth\\\":50,\\\"data\\\":[5,20,36,10,10,20],\\\"name\\\":\\\"销量\\\",\\\"itemStyle\\\":{\\\"color\\\":\\\"#c43632\\\",\\\"barBorderRadius\\\":0},\\\"label\\\":{\\\"show\\\":true,\\\"position\\\":\\\"top\\\",\\\"textStyle\\\":{\\\"color\\\":\\\"black\\\",\\\"fontSize\\\":16,\\\"fontWeight\\\":\\\"bolder\\\"}},\\\"type\\\":\\\"bar\\\",\\\"barMinHeight\\\":2}],\\\"tooltip\\\":{\\\"show\\\":true,\\\"textStyle\\\":{\\\"color\\\":\\\"#fff\\\",\\\"fontSize\\\":18}},\\\"title\\\":{\\\"padding\\\":[5,20,5,20],\\\"top\\\":\\\"5\\\",\\\"left\\\":\\\"left\\\",\\\"show\\\":true,\\\"text\\\":\\\"某站点用户访问来源\\\",\\\"textStyle\\\":{\\\"color\\\":\\\"#c23531\\\",\\\"fontSize\\\":18,\\\"fontWeight\\\":\\\"bolder\\\"}}}\",\"url\":\"\",\"extData\":{\"chartId\":\"bar.simple\",\"chartType\":\"bar.simple\"},\"layer_id\":\"ZyBqS2hMYJbibekG\",\"offsetX\":0,\"offsetY\":0,\"backgroud\":{\"image\":\"\",\"color\":\"#fff\",\"enabled\":false},\"virtualCellRange\":[[0,0],[0,1],[0,2],[0,3],[0,4],[0,5]]}],\"area\":{\"sri\":17,\"sci\":3,\"eri\":17,\"eci\":3,\"width\":100,\"height\":25},\"excel_config_id\":\"891572767673122816\",\"printConfig\":{\"layout\":\"portrait\",\"printCallBackUrl\":\"\",\"paper\":\"A4\",\"isBackend\":false,\"width\":210,\"definition\":1,\"marginX\":10,\"height\":297,\"marginY\":10},\"hiddenCells\":[],\"zonedEditionList\":[],\"rows\":{\"0\":{\"cells\":{\"0\":{\"text\":\" \",\"virtual\":\"ZyBqS2hMYJbibekG\"},\"1\":{\"text\":\" \",\"virtual\":\"ZyBqS2hMYJbibekG\"},\"2\":{\"text\":\" \",\"virtual\":\"ZyBqS2hMYJbibekG\"},\"3\":{\"text\":\" \",\"virtual\":\"ZyBqS2hMYJbibekG\"},\"4\":{\"text\":\" \",\"virtual\":\"ZyBqS2hMYJbibekG\"},\"5\":{\"text\":\" \",\"virtual\":\"ZyBqS2hMYJbibekG\"}}},\"len\":100},\"dbexps\":[],\"dicts\":[],\"rpbar\":{\"show\":true,\"pageSize\":\"\",\"btnList\":[]},\"fixedPrintHeadRows\":[],\"fixedPrintTailRows\":[],\"freeze\":\"A1\",\"dataRectWidth\":600,\"displayConfig\":{},\"background\":false,\"name\":\"sheet1\",\"autofilter\":{},\"styles\":[],\"validations\":[],\"cols\":{\"len\":100},\"merges\":[]}', NULL, NULL, 'admin', '2023-12-04 16:38:43', 'admin', '2024-02-01 17:59:52', 0, NULL, NULL, 0, 13, NULL, NULL, NULL, '2');
|
|
|
|
|
INSERT INTO `jimu_report` VALUES ('891607513627197440', '20231204185802', '查询条件数据', NULL, NULL, 'datainfo', '{\"loopBlockList\":[],\"area\":{\"sri\":7,\"sci\":3,\"eri\":7,\"eci\":3,\"width\":100,\"height\":25},\"excel_config_id\":\"891607513627197440\",\"printConfig\":{\"layout\":\"portrait\",\"printCallBackUrl\":\"\",\"paper\":\"A4\",\"isBackend\":false,\"width\":210,\"definition\":1,\"marginX\":10,\"height\":297,\"marginY\":10},\"zonedEditionList\":[],\"rows\":{\"3\":{\"cells\":{\"1\":{\"text\":\"#{test_search.需求名称}\"},\"2\":{\"text\":\"#{test_search.需求优先级}\"},\"3\":{\"text\":\"#{test_search.当前状态}\"},\"4\":{\"text\":\"#{test_search.所处阶段}\"}}},\"len\":200},\"dbexps\":[],\"dicts\":[],\"rpbar\":{\"show\":true,\"pageSize\":\"\",\"btnList\":[]},\"fixedPrintHeadRows\":[],\"fixedPrintTailRows\":[],\"freeze\":\"A1\",\"dataRectWidth\":500,\"displayConfig\":{},\"background\":false,\"name\":\"sheet1\",\"autofilter\":{},\"styles\":[],\"validations\":[],\"cols\":{\"len\":100},\"merges\":[]}', NULL, NULL, 'admin', '2023-12-04 18:58:03', 'admin', '2024-02-01 17:59:16', 1, NULL, NULL, 0, 8, NULL, NULL, NULL, '1');
|
|
|
|
|
INSERT INTO `jimu_report` VALUES ('891612623430320128', '20231204191802', '查询1', NULL, NULL, 'datainfo', '{\"loopBlockList\":[],\"area\":{\"sri\":6,\"sci\":3,\"eri\":6,\"eci\":3,\"width\":185,\"height\":25},\"excel_config_id\":\"891612623430320128\",\"printConfig\":{\"paper\":\"A4\",\"width\":210,\"height\":297,\"definition\":1,\"isBackend\":false,\"marginX\":10,\"marginY\":10,\"layout\":\"portrait\",\"printCallBackUrl\":\"\",\"paginationShow\":false,\"paginationLocation\":\"middle\"},\"hiddenCells\":[],\"zonedEditionList\":[],\"rows\":{\"2\":{\"cells\":{\"1\":{\"text\":\"#{s1.id}\"},\"2\":{\"text\":\"#{s1.name}\"},\"3\":{\"text\":\"#{s1.gtime}\"}}},\"len\":200},\"dbexps\":[],\"dicts\":[],\"rpbar\":{\"show\":true,\"pageSize\":\"\",\"btnList\":[]},\"fixedPrintHeadRows\":[],\"fixedPrintTailRows\":[],\"freeze\":\"A1\",\"dataRectWidth\":549,\"displayConfig\":{},\"background\":false,\"name\":\"sheet1\",\"autofilter\":{},\"styles\":[],\"validations\":[],\"cols\":{\"1\":{\"width\":164},\"3\":{\"width\":185},\"len\":100},\"merges\":[]}', NULL, NULL, 'admin', '2023-12-04 19:18:03', 'admin', '2024-01-31 14:43:53', 0, NULL, NULL, 0, 20, NULL, NULL, NULL, '2');
|
|
|
|
|
INSERT INTO `jimu_report` VALUES ('94b04a1ed7c17f8e96baa6d89fb90758', '3698522', '员工请假单', '', NULL, 'printinfo', '{\"loopBlockList\":[],\"area\":{\"sri\":0,\"sci\":8,\"eri\":100,\"eci\":13,\"width\":600,\"height\":2732},\"excel_config_id\":\"94b04a1ed7c17f8e96baa6d89fb90758\",\"printConfig\":{\"paper\":\"A4\",\"width\":210,\"height\":297,\"definition\":1,\"isBackend\":false,\"marginX\":10,\"marginY\":10,\"layout\":\"portrait\"},\"zonedEditionList\":[],\"rows\":{\"1\":{\"cells\":{\"0\":{\"text\":\"员工请假单\",\"style\":100,\"merge\":[0,7]},\"1\":{\"style\":100,\"text\":\" \"},\"2\":{\"style\":100,\"text\":\" \"},\"3\":{\"style\":100,\"text\":\" \"},\"4\":{\"style\":100,\"text\":\" \"},\"5\":{\"style\":100,\"text\":\" \"},\"6\":{\"style\":100,\"text\":\" \"},\"7\":{\"style\":100,\"text\":\" \"}},\"height\":65},\"2\":{\"cells\":{\"0\":{\"text\":\"单位:北极星\",\"style\":101,\"merge\":[0,2]},\"1\":{\"style\":101,\"text\":\" \"},\"2\":{\"style\":101,\"text\":\" \"},\"3\":{\"style\":102,\"text\":\" \"},\"4\":{\"style\":102,\"text\":\" \"},\"5\":{\"style\":102,\"text\":\" \"},\"6\":{\"style\":102,\"text\":\" \"},\"7\":{\"style\":102,\"text\":\" \"}},\"height\":38},\"3\":{\"cells\":{\"0\":{\"text\":\"姓名\",\"style\":119},\"1\":{\"style\":119,\"text\":\" \"},\"2\":{\"text\":\"工作岗位\",\"style\":120},\"3\":{\"style\":119,\"text\":\" \"},\"4\":{\"text\":\"工作时间\",\"style\":119},\"5\":{\"style\":119,\"text\":\" \"},\"6\":{\"text\":\"出生日期\",\"style\":119},\"7\":{\"style\":119,\"text\":\" \"}}},\"4\":{\"cells\":{\"0\":{\"text\":\"请选择假类型\",\"style\":121,\"merge\":[4,0]},\"1\":{\"text\":\"年休假\",\"style\":120},\"2\":{\"style\":120,\"text\":\"病、事假\"},\"3\":{\"style\":120,\"text\":\"探亲假\"},\"4\":{\"style\":119,\"merge\":[0,1],\"text\":\"婚、丧假\"},\"6\":{\"style\":119,\"merge\":[0,1],\"text\":\"生育假\"}},\"height\":29},\"5\":{\"cells\":{\"0\":{\"style\":0,\"text\":\" \"},\"1\":{\"text\":\"1、公岭满1~9年(5天)\",\"style\":122},\"2\":{\"style\":119,\"text\":\"1、病假\"},\"3\":{\"style\":119,\"text\":\"1、未婚探父母(20天)\"},\"4\":{\"style\":119,\"merge\":[0,1],\"text\":\"1、婚假(3天)\"},\"6\":{\"style\":119,\"merge\":[0,1],\"text\":\"1、流产\"}},\"height\":25},\"6\":{\"cells\":{\"0\":{\"style\":0,\"text\":\" \"},\"1\":{\"style\":123,\"text\":\"2、公岭满10~19年(10天)\"},\"2\":{\"style\":119,\"text\":\"2、事假\"},\"3\":{\"style\":119,\"text\":\"2、已婚探父母(20天)\"},\"4\":{\"style\":119,\"merge\":[0,1],\"text\":\"2、晚婚假(13天)\"},\"6\":{\"style\":119,\"merge\":[0,1],\"text\":\"2、产假\"}}},\"7\":{\"cells\":{\"0\":{\"style\":0,\"text\":\" \"},\"1\":{\"style\":123,\"text\":\"3、公岭满20年(15天)\"},\"2\":{\"style\":119,\"text\":\" \"},\"3\":{\"style\":119,\"text\":\"3、探配偶(30天)\"},\"4\":{\"style\":119,\"merge\":[0,1],\"text\":\"3、丧假(3天)\"},\"6\":{\"style\":119,\"merge\":[0,1],\"text\":\"3、哺乳假\"}}},\"8\":{\"cells\":{\"0\":{\"style\":0,\"text\":\" \"},\"1\":{\"style\":119,\"text\":\" \"},\"2\":{\"style\":119,\"text\":\" \"},\"3\":{\"style\":119,\"text\":\"探亲地点:\",\"merge\":[0,2]},\"6\":{\"style\":119,\"merge\":[0,1],\"text\":\"4、陪护假\"}}},\"9\":{\"cells\":{\"0\":{\"style\":124,\"text\":\"请假时间\"},\"1\":{\"style\":125,\"merge\":[0,6],\"text\":\"2020年02-30 至2020年02-03-30\"}},\"height\":46},\"10\":{\"cells\":{\"0\":{\"style\":126,\"text\":\"审批人员及意见\"},\"1\":{\"merge\":[0,6],\"style\":127,\"text\":\"同意\"}},\"height\":89},\"11\":{\"cells\":{\"0\":{\"text\":\"备注\",\"style\":119},\"1\":{\"style\":119,\"text\":\" \"},\"2\":{\"text\":\"请假人签名\",\"style\":119},\"3\":{\"merge\":[0,4],\"style\":119,\"text\":\" \"}},\"height\":90},\"12\":{\"cells\":{\"0\":{\"merge\":[0,7],\"style\":120,\"text\":\"请假审批表一式两份,考勤员与人力资源部门各存一份\"}},\"height\":25},\"len\":101},\"dbexps\":[],\"toolPrintSizeObj\":{\"printType\":\"A4\",\"widthPx\":794,\"heightPx\":1047},\"dicts\":
|
|
|
|
|
INSERT INTO `jimu_report` VALUES ('a250846887abe01217aab173d3006489', '56663', '不动产打印', '', NULL, 'printinfo', '{\"loopBlockList\":[],\"area\":false,\"excel_config_id\":\"a250846887abe01217aab173d3006489\",\"printConfig\":{\"paper\":\"A4\",\"width\":210,\"height\":297,\"definition\":1,\"isBackend\":false,\"marginX\":10,\"marginY\":10,\"layout\":\"portrait\"},\"rows\":{\"0\":{\"cells\":{\"0\":{\"text\":\"${budong.name}\",\"virtual\":\"TyDjQJrN7mqW5MdT\",\"style\":20},\"1\":{\"text\":\"${budong.time}\",\"virtual\":\"TyDjQJrN7mqW5MdT\",\"style\":20},\"2\":{\"text\":\"${budong.didian}\",\"virtual\":\"TyDjQJrN7mqW5MdT\",\"style\":21},\"3\":{\"text\":\"${budong.bianhao}\",\"virtual\":\"TyDjQJrN7mqW5MdT\",\"style\":46},\"4\":{\"text\":\" \",\"virtual\":\"TyDjQJrN7mqW5MdT\"},\"5\":{\"text\":\" \",\"virtual\":\"TyDjQJrN7mqW5MdT\"},\"6\":{\"text\":\" \",\"virtual\":\"TyDjQJrN7mqW5MdT\"},\"7\":{\"text\":\" \",\"virtual\":\"TyDjQJrN7mqW5MdT\"},\"8\":{\"text\":\" \",\"virtual\":\"TyDjQJrN7mqW5MdT\"},\"9\":{\"text\":\" \",\"virtual\":\"TyDjQJrN7mqW5MdT\"}},\"isDrag\":true,\"height\":47},\"1\":{\"cells\":{},\"height\":23},\"2\":{\"cells\":{\"0\":{\"text\":\"\",\"style\":0},\"1\":{\"text\":\" ${budong.yname}\",\"style\":21,\"merge\":[0,2]}},\"isDrag\":true,\"height\":34},\"3\":{\"cells\":{\"1\":{\"text\":\" ${budong.chanquan}\",\"style\":0,\"merge\":[0,2],\"rendered\":\"\"},\"5\":{\"text\":\"${budong.beizhu}\",\"merge\":[5,3]},\"10\":{}},\"isDrag\":true,\"height\":39},\"4\":{\"cells\":{\"1\":{\"text\":\" ${budong.zhuzhi}\",\"style\":39,\"merge\":[0,2]},\"10\":{}},\"isDrag\":true,\"height\":33},\"5\":{\"cells\":{\"1\":{\"text\":\" ${budong.danyuan}\",\"style\":0,\"merge\":[0,2],\"rendered\":\"\"},\"10\":{}},\"isDrag\":true,\"height\":53},\"6\":{\"cells\":{\"1\":{\"text\":\" ${budong.type}\",\"style\":0,\"merge\":[0,2]},\"10\":{}},\"isDrag\":true,\"height\":47},\"7\":{\"cells\":{\"1\":{\"text\":\" ${budong.xtype}\",\"style\":0,\"merge\":[0,2]}},\"isDrag\":true,\"height\":38},\"8\":{\"cells\":{\"1\":{\"text\":\" ${budong.suoyou}\",\"style\":0,\"merge\":[0,2]}},\"isDrag\":true,\"height\":31},\"9\":{\"cells\":{\"1\":{\"text\":\" ${budong.mianji}\",\"style\":0,\"merge\":[0,2]},\"6\":{\"text\":\"\",\"rendered\":\"\"}},\"isDrag\":true,\"height\":45},\"10\":{\"cells\":{\"1\":{\"text\":\" ${budong.riqi}\",\"style\":0,\"merge\":[0,2]}},\"isDrag\":true,\"height\":26},\"11\":{\"cells\":{\"1\":{\"text\":\"\",\"style\":0,\"merge\":[0,2]}},\"height\":29},\"12\":{\"cells\":{\"1\":{\"text\":\"\",\"style\":0},\"2\":{\"text\":\"${budong.chanquan}\",\"style\":0,\"merge\":[5,1]}},\"isDrag\":true},\"13\":{\"cells\":{}},\"14\":{\"cells\":{}},\"15\":{\"cells\":{}},\"16\":{\"cells\":{},\"height\":32},\"17\":{\"cells\":{},\"isDrag\":true,\"height\":29},\"18\":{\"cells\":{\"2\":{\"style\":0,\"text\":\"\"}}},\"len\":100,\"-1\":{\"cells\":{\"0\":{\"text\":\"#{budong.zhuzhi}\"},\"-1\":{\"text\":\"#{budong.suoyou}\"}},\"isDrag\":true}},\"dbexps\":[],\"dicts\":[],\"freeze\":\"A1\",\"displayConfig\":{},\"background\":false,\"name\":\"sheet1\",\"autofilter\":{},\"styles\":[{\"font\":{\"bold\":true}},{\"font\":{\"italic\":true}},{\"font\":{\"italic\":true,\"bold\":true}},{\"font\":{\"italic\":true,\"bold\":false}},{\"font\":{\"italic\":false,\"bold\":false}},{\"font\":{\"italic\":false,\"bold\":true}},{\"align\":\"left\"},{\"align\":\"center\"},{\"align\":\"right\"},{\"align\":\"left\",\"valign\":\"top\"},{\"align\":\"left\",\"valign\":\"top\",\"font\":{\"bold\":true}},{\"font\":{\"bold\":false}},{\"align\":\"left\",\"valign\":\"bottom\"},{\"valign\":\"bottom\"},{\"align\":\"center\",\"valign\":\"bottom\"},{\"textwrap\":true},{\"font\":{\"bold\":true},\"valign\":\"bottom\"},{\"font\":{\"italic\":false,\"bold\":true},\"valign\":\"top\"},{\"valign\":\"top\"},{\"textwrap\":true,\"font\":{\"bold\":true}},{\"align\":\"center\",\"valign\":\"bottom\",\"font\":{\"bold\":true}},{\"align\":\"left\",\"valign\":\"bottom\",\"font\":{\"bold\":true}},{\"align\":\"left\",\"valign\":\"bo
|
|
|
|
|
INSERT INTO `jimu_report` VALUES ('a9f068972508920cd4aab831814f0c04', '23445', '逮捕证', '', NULL, 'printinfo', '{\"loopBlockList\":[],\"area\":{\"sri\":3,\"sci\":1,\"eri\":3,\"eci\":13,\"width\":631,\"height\":60},\"excel_config_id\":\"a9f068972508920cd4aab831814f0c04\",\"printConfig\":{\"paper\":\"A4\",\"width\":210,\"height\":297,\"definition\":1,\"isBackend\":false,\"marginX\":10,\"marginY\":10,\"layout\":\"portrait\"},\"zonedEditionList\":[],\"rows\":{\"0\":{\"cells\":{\"1\":{\"style\":63,\"text\":\" \"},\"2\":{\"text\":\" \",\"merge\":[0,9],\"style\":63},\"12\":{\"style\":63,\"text\":\" \"},\"13\":{\"style\":63,\"text\":\" \"},\"14\":{\"style\":63,\"text\":\" \"}},\"isDrag\":true,\"height\":55},\"1\":{\"cells\":{\"1\":{\"style\":424,\"text\":\"兰州市经济侦查大队\",\"rendered\":\"\",\"merge\":[0,13],\"height\":128},\"2\":{},\"3\":{},\"4\":{},\"5\":{},\"6\":{},\"7\":{},\"8\":{},\"9\":{},\"10\":{},\"11\":{},\"12\":{},\"13\":{},\"14\":{},\"15\":{\"style\":81,\"text\":\" \"}},\"height\":128},\"2\":{\"cells\":{\"1\":{\"style\":430,\"text\":\"逮捕令\",\"merge\":[0,13],\"height\":41},\"15\":{\"style\":81,\"text\":\" \"}},\"height\":41},\"3\":{\"cells\":{\"1\":{\"style\":431,\"merge\":[0,12],\"text\":\"第123459663号\"},\"14\":{\"style\":323,\"text\":\" \"}},\"height\":60},\"4\":{\"cells\":{\"1\":{\"style\":81,\"text\":\" \"},\"2\":{\"text\":\" 根据《中华人民共和国刑事诉讼法》第七十八条之规定,\",\"style\":346,\"merge\":[0,11]},\"3\":{},\"4\":{},\"5\":{},\"6\":{},\"7\":{},\"8\":{},\"9\":{},\"10\":{},\"11\":{},\"12\":{},\"13\":{},\"14\":{\"style\":323,\"text\":\" \"}},\"height\":43},\"5\":{\"cells\":{\"1\":{\"style\":81,\"text\":\" \"},\"2\":{\"style\":341,\"text\":\"经\",\"merge\":[0,1]},\"4\":{\"text\":\"${pdaibu.pname}\",\"style\":342,\"merge\":[0,9]},\"14\":{\"style\":323,\"text\":\" \"}},\"isDrag\":true,\"height\":47},\"6\":{\"cells\":{\"1\":{\"style\":81,\"text\":\" \"},\"2\":{\"style\":344,\"text\":\" \",\"merge\":[0,2]},\"5\":{\"merge\":[0,3],\"text\":\"批准,兹由我局对涉嫌\",\"style\":338},\"9\":{\"text\":\"${pdaibu.shiqing}\",\"style\":347,\"merge\":[0,4],\"rendered\":\"\"},\"14\":{\"style\":323,\"text\":\" \"}},\"isDrag\":true,\"height\":49},\"7\":{\"cells\":{\"1\":{\"style\":81,\"text\":\" \"},\"2\":{\"style\":341,\"text\":\"的\"},\"3\":{\"text\":\"${pdaibu.fname}\",\"style\":345,\"merge\":[0,1]},\"5\":{\"text\":\"(性别\",\"style\":343},\"6\":{\"text\":\"${pdaibu.fsex}\",\"style\":347,\"merge\":[0,1],\"rendered\":\"\"},\"8\":{\"style\":346,\"text\":\"出生日期\"},\"9\":{\"text\":\"${pdaibu.cdata}\",\"style\":345,\"merge\":[0,4]},\"14\":{\"style\":323,\"text\":\" \"}},\"isDrag\":true,\"height\":51},\"8\":{\"cells\":{\"1\":{\"style\":81,\"text\":\" \"},\"2\":{\"text\":\"${pdaibu.zhuzhi}\",\"style\":345,\"merge\":[0,7]},\"10\":{\"style\":341,\"text\":\"执行逮捕,送兰州\",\"merge\":[0,3]},\"14\":{\"style\":323,\"text\":\" \"}},\"isDrag\":true,\"height\":51},\"9\":{\"cells\":{\"1\":{\"style\":81,\"text\":\" \"},\"2\":{\"style\":341,\"merge\":[0,6],\"text\":\"市经济侦查大队羁押。\"},\"9\":{\"style\":341,\"text\":\" \"},\"10\":{\"style\":341,\"text\":\" \"},\"11\":{\"merge\":[4,0],\"height\":304},\"14\":{\"style\":323,\"text\":\" \"}},\"height\":57},\"10\":{\"cells\":{\"1\":{\"style\":81,\"text\":\" \"},\"4\":{\"style\":338,\"virtual\":\"DId4FGTLnP3vfp4y\",\"text\":\" \"},\"5\":{\"style\":338,\"virtual\":\"DId4FGTLnP3vfp4y\",\"text\":\" \"},\"6\":{\"style\":338,\"virtual\":\"DId4FGTLnP3vfp4y\",\"text\":\" \"},\"14\":{\"style\":323,\"text\":\" \"}},\"height\":61},\"11\":{\"cells\":{\"1\":{\"style\":81,\"text\":\" \"},\"6\":{\"style\":376,\"merge\":[0,2],\"text\":\" \"},\"14\":{\"style\":323,\"text\":\" \"}},\"height\":83},\"12\":{\"cells\":{\"1\":{\"style\":81,\"text\":\" \"},\"2\":{\"merge\":[0,6],\"style\":338,\"text\":\" \"},\"14\":{\"style\":323,\"text\":\" \"}},\"height\":14},\"13\":{\"cells\":{\"1\":{\"style\":81,\"text\":\" \"},\"2\":{\"style\":351,\"text\":\" \"},\"8\":{\"style\":380,\"text\":\"公安局印\"},\"9\":{\"text\":
|
|
|
|
|
INSERT INTO `jimu_report` VALUES ('b35e8d615b4e408e49dbf36805d3641c', '2020121515142661246673', '数据钻取报表', NULL, NULL, 'datainfo', '{\"loopBlockList\":[],\"area\":{\"sri\":2,\"sci\":1,\"eri\":2,\"eci\":1,\"width\":107,\"height\":50},\"excel_config_id\":\"b35e8d615b4e408e49dbf36805d3641c\",\"printConfig\":{\"paper\":\"A4\",\"width\":210,\"height\":297,\"definition\":1,\"isBackend\":false},\"zonedEditionList\":[],\"rows\":{\"1\":{\"cells\":{\"1\":{\"text\":\"部门\",\"style\":51},\"2\":{\"text\":\"雇员ID\",\"style\":51},\"3\":{\"text\":\"姓名\",\"style\":51},\"4\":{\"style\":51,\"text\":\"性别\"},\"5\":{\"text\":\"雇佣日期\",\"style\":51},\"6\":{\"text\":\"家庭电话\",\"style\":51},\"7\":{\"text\":\"出生日期\",\"style\":51},\"8\":{\"text\":\"户口所在地\",\"style\":51},\"9\":{\"text\":\"联系地址\",\"style\":51},\"10\":{\"text\":\"紧急联系人\",\"style\":51}},\"height\":37},\"2\":{\"cells\":{\"1\":{\"text\":\"#{pop.group(update_by)}\",\"style\":61,\"aggregate\":\"group\",\"linkIds\":\"845814975569416192\",\"rendered\":\"\",\"config\":\"\",\"display\":\"link\"},\"2\":{\"text\":\"#{pop.id}\",\"style\":54,\"aggregate\":\"select\"},\"3\":{\"text\":\"#{pop.name}\",\"style\":54,\"aggregate\":\"select\"},\"4\":{\"text\":\"#{pop.sex}\",\"style\":55},\"5\":{\"text\":\"#{pop.gtime}\",\"style\":56},\"6\":{\"text\":\"#{pop.jphone}\",\"style\":57},\"7\":{\"text\":\"#{pop.birth}\",\"style\":56},\"8\":{\"text\":\"#{pop.hukou}\",\"style\":58},\"9\":{\"text\":\"#{pop.laddress}\",\"style\":57},\"10\":{\"text\":\"#{pop.jperson}\",\"style\":57},\"22\":{},\"23\":{}},\"isDrag\":true,\"height\":50},\"len\":68},\"dbexps\":[],\"dicts\":[],\"rpbar\":{\"show\":true,\"btnList\":[]},\"groupField\":\"pop.update_by\",\"fixedPrintHeadRows\":[],\"fixedPrintTailRows\":[],\"freeze\":\"A1\",\"dataRectWidth\":1569,\"displayConfig\":{\"1\":{\"barcodeContent\":\"#{pop.id}\",\"format\":\"CODE128\",\"width\":\"50\",\"height\":\"100\",\"displayValue\":false,\"text\":\"jmreport\",\"fontOptions\":\"\",\"font\":\"monospace\",\"textAlign\":\"center\",\"textPosition\":\"bottom\",\"textMargin\":2,\"fontSize\":20,\"background\":\"#fff\",\"lineColor\":\"#000\",\"margin\":10,\"containerWidth\":105,\"containerHeight\":25},\"11\":{\"text\":\"\\n\",\"width\":227,\"height\":227,\"colorDark\":\"#000000\",\"colorLight\":\"#ffffff\"}},\"background\":false,\"name\":\"sheet1\",\"autofilter\":{},\"styles\":[{\"bgcolor\":\"#5b9cd6\"},{\"bgcolor\":\"#5b9cd6\",\"color\":\"#ffffff\"},{\"color\":\"#ffffff\"},{\"align\":\"center\"},{\"bgcolor\":\"#5b9cd6\",\"color\":\"#ffffff\",\"align\":\"center\"},{\"bgcolor\":\"#02a274\",\"color\":\"#ffffff\",\"align\":\"center\"},{\"bgcolor\":\"#02a274\",\"color\":\"#ffffff\",\"align\":\"center\",\"border\":{\"bottom\":[\"thin\",\"#bfbfbf\"],\"top\":[\"thin\",\"#bfbfbf\"],\"left\":[\"thin\",\"#bfbfbf\"],\"right\":[\"thin\",\"#bfbfbf\"]}},{\"border\":{\"bottom\":[\"thin\",\"#bfbfbf\"],\"top\":[\"thin\",\"#bfbfbf\"],\"left\":[\"thin\",\"#bfbfbf\"],\"right\":[\"thin\",\"#bfbfbf\"]}},{\"border\":{\"bottom\":[\"thin\",\"#bfbfbf\"],\"top\":[\"thin\",\"#bfbfbf\"],\"left\":[\"thin\",\"#bfbfbf\"],\"right\":[\"thin\",\"#bfbfbf\"]},\"bgcolor\":\"#f1f9f6\"},{\"border\":{\"bottom\":[\"thin\",\"#bfbfbf\"],\"top\":[\"thin\",\"#bfbfbf\"],\"left\":[\"thin\",\"#bfbfbf\"],\"right\":[\"thin\",\"#bfbfbf\"]},\"bgcolor\":\"#ddefe8\"},{\"font\":{\"size\":8}},{\"border\":{\"bottom\":[\"thin\",\"#bfbfbf\"],\"top\":[\"thin\",\"#bfbfbf\"],\"left\":[\"thin\",\"#bfbfbf\"],\"right\":[\"thin\",\"#bfbfbf\"]},\"bgcolor\":\"#f1f9f6\",\"font\":{\"size\":8}},{\"border\":{\"bottom\":[\"thin\",\"#bfbfbf\"],\"top\":[\"thin\",\"#bfbfbf\"],\"left\":[\"thin\",\"#bfbfbf\"],\"right\":[\"thin\",\"#bfbfbf\"]},\"bgcolor\":\"#ddefe8\",\"font\":{\"size\":8}},{\"border\":{\"bottom\":[\"thin\",\"#bfbfbf\"],\"top\":[\"thin\",\"#bfbfbf\"],\"left\":[\"thin\",\"#bfbfbf\"],\"right\":[\"thin\",\"#bfbfbf\"]},\"font\":{\"size\":8}},{\"font\":{\"size\":9}},{\"border\":{\"bottom\":[\"thin\",\"#bfbfbf\"],\"top\":[\"thin\",\"#bfbfbf\"],\"left\":[\"thin\",\"#bfbfbf\"],\"righ
|
|
|
|
|
INSERT INTO `jimu_report` VALUES ('f6ee801e8bdc28ba9d63f95dc65ccd79', '4556633', '采购单', '', NULL, 'printinfo', '{\"loopBlockList\":[],\"area\":{\"sri\":13,\"sci\":6,\"eri\":13,\"eci\":6,\"width\":82,\"height\":25},\"excel_config_id\":\"f6ee801e8bdc28ba9d63f95dc65ccd79\",\"printConfig\":{\"paper\":\"A4\",\"width\":210,\"height\":297,\"definition\":1,\"isBackend\":false,\"marginX\":10,\"marginY\":10},\"rows\":{\"0\":{\"cells\":{\"1\":{\"text\":\"采购单\",\"style\":21,\"merge\":[0,6]}},\"height\":75},\"1\":{\"cells\":{\"1\":{\"text\":\"产品名称\",\"style\":23},\"2\":{\"text\":\"产品数量\",\"style\":23},\"3\":{\"text\":\"单价\",\"style\":23},\"4\":{\"text\":\"库存量\",\"style\":23},\"5\":{\"text\":\"库存总值\",\"style\":23},\"6\":{\"text\":\"订购量\",\"style\":23},\"7\":{\"text\":\"二次订购量\",\"style\":23}},\"height\":34},\"2\":{\"cells\":{\"1\":{\"style\":24,\"text\":\"#{caigou.cname}\"},\"2\":{\"style\":24,\"text\":\"#{caigou.cnum}\"},\"3\":{\"style\":24,\"text\":\"#{caigou.cprice}\"},\"4\":{\"style\":24,\"text\":\"#{caigou.ctotal}\"},\"5\":{\"style\":24,\"text\":\"#{caigou.tp}\"},\"6\":{\"style\":24,\"text\":\"#{caigou.dtotal}\"},\"7\":{\"style\":24,\"text\":\"#{caigou.ztotal}\"}},\"height\":34},\"5\":{\"cells\":{\"1\":{\"text\":\"\"}},\"isDrag\":true},\"6\":{\"cells\":{\"1\":{\"text\":\"\"}},\"isDrag\":true},\"7\":{\"cells\":{\"1\":{\"text\":\"\"},\"2\":{\"text\":\"\"}},\"isDrag\":true},\"len\":100},\"dbexps\":[],\"toolPrintSizeObj\":{\"printType\":\"A4\",\"widthPx\":718,\"heightPx\":1047},\"dicts\":[],\"freeze\":\"A1\",\"dataRectWidth\":682,\"displayConfig\":{},\"background\":false,\"name\":\"sheet1\",\"autofilter\":{},\"styles\":[{\"align\":\"center\"},{\"align\":\"center\",\"color\":\"#000100\"},{\"align\":\"center\",\"color\":\"#000100\",\"border\":{\"bottom\":[\"thin\",\"#000\"],\"top\":[\"thin\",\"#000\"],\"left\":[\"thin\",\"#000\"],\"right\":[\"thin\",\"#000\"]}},{\"align\":\"center\",\"color\":\"#000100\",\"border\":{\"bottom\":[\"thin\",\"#01b0f1\"],\"top\":[\"thin\",\"#01b0f1\"],\"left\":[\"thin\",\"#01b0f1\"],\"right\":[\"thin\",\"#01b0f1\"]}},{\"border\":{\"bottom\":[\"thin\",\"#01b0f1\"],\"top\":[\"thin\",\"#01b0f1\"],\"left\":[\"thin\",\"#01b0f1\"],\"right\":[\"thin\",\"#01b0f1\"]}},{\"align\":\"center\",\"color\":\"#000100\",\"border\":{\"bottom\":[\"thin\",\"#01b0f1\"],\"top\":[\"thin\",\"#01b0f1\"],\"left\":[\"thin\",\"#01b0f1\"],\"right\":[\"thin\",\"#01b0f1\"]},\"bgcolor\":\"#01b0f1\"},{\"align\":\"center\",\"color\":\"#000100\",\"border\":{\"bottom\":[\"thin\",\"#5b9cd6\"],\"top\":[\"thin\",\"#5b9cd6\"],\"left\":[\"thin\",\"#5b9cd6\"],\"right\":[\"thin\",\"#5b9cd6\"]},\"bgcolor\":\"#01b0f1\"},{\"border\":{\"bottom\":[\"thin\",\"#5b9cd6\"],\"top\":[\"thin\",\"#5b9cd6\"],\"left\":[\"thin\",\"#5b9cd6\"],\"right\":[\"thin\",\"#5b9cd6\"]}},{\"align\":\"center\",\"font\":{\"size\":18}},{\"align\":\"center\",\"font\":{\"size\":18,\"bold\":true}},{\"align\":\"center\",\"font\":{\"size\":16,\"bold\":true}},{\"border\":{\"bottom\":[\"thin\",\"#5b9cd6\"],\"top\":[\"thin\",\"#5b9cd6\"],\"left\":[\"thin\",\"#5b9cd6\"],\"right\":[\"thin\",\"#5b9cd6\"]},\"align\":\"center\"},{\"align\":\"center\",\"color\":\"#000100\",\"border\":{\"bottom\":[\"thin\",\"#5b9cd6\"],\"top\":[\"thin\",\"#5b9cd6\"],\"left\":[\"thin\",\"#5b9cd6\"],\"right\":[\"thin\",\"#5b9cd6\"]},\"bgcolor\":\"#9cc2e6\"},{\"font\":{\"name\":\"宋体\"}},{\"align\":\"center\",\"font\":{\"size\":16,\"bold\":true,\"name\":\"宋体\"}},{\"align\":\"center\",\"color\":\"#000100\",\"border\":{\"bottom\":[\"thin\",\"#5b9cd6\"],\"top\":[\"thin\",\"#5b9cd6\"],\"left\":[\"thin\",\"#5b9cd6\"],\"right\":[\"thin\",\"#5b9cd6\"]},\"bgcolor\":\"#9cc2e6\",\"font\":{\"name\":\"宋体\"}},{\"border\":{\"bottom\":[\"thin\",\"#5b9cd6\"],\"top\":[\"thin\",\"#5b9cd6\"],\"left\":[\"thin\",\"#5b9cd6\"],\"right\":[\"thin\",\"#5b9cd6\"]},\"align\":\"center\",\"font\":{\"name\":\"宋体\"}},{\"align\":\"center\",\"color\":\"#000100\",\"border\":{\"bottom\":[\"thin\",\"#bfbfbf\"],\"top\":[\"thin\",\"#bfbfbf\"],\"left\":[\"thin\",\"#bfbfbf\"],\"r
|
2021-06-23 03:13:11 +00:00
|
|
|
|
|
|
|
|
|
-- ----------------------------
|
|
|
|
|
-- Table structure for jimu_report_data_source
|
|
|
|
|
-- ----------------------------
|
|
|
|
|
DROP TABLE IF EXISTS `jimu_report_data_source`;
|
|
|
|
|
CREATE TABLE `jimu_report_data_source` (
|
|
|
|
|
`id` varchar(36) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NOT NULL,
|
|
|
|
|
`name` varchar(100) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL COMMENT '数据源名称',
|
|
|
|
|
`report_id` varchar(100) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL COMMENT '报表_id',
|
|
|
|
|
`code` varchar(100) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL COMMENT '编码',
|
|
|
|
|
`remark` varchar(200) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL COMMENT '备注',
|
|
|
|
|
`db_type` varchar(10) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL COMMENT '数据库类型',
|
|
|
|
|
`db_driver` varchar(100) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL COMMENT '驱动类',
|
|
|
|
|
`db_url` varchar(500) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL COMMENT '数据源地址',
|
|
|
|
|
`db_username` varchar(100) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL COMMENT '用户名',
|
|
|
|
|
`db_password` varchar(100) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL COMMENT '密码',
|
|
|
|
|
`create_by` varchar(50) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL COMMENT '创建人',
|
|
|
|
|
`create_time` datetime NULL DEFAULT NULL COMMENT '创建日期',
|
|
|
|
|
`update_by` varchar(50) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL COMMENT '更新人',
|
|
|
|
|
`update_time` datetime NULL DEFAULT NULL COMMENT '更新日期',
|
2021-07-03 10:51:11 +00:00
|
|
|
|
`connect_times` int(1) UNSIGNED NULL DEFAULT 0 COMMENT '连接失败次数',
|
2022-12-07 13:22:18 +00:00
|
|
|
|
`tenant_id` varchar(10) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '多租户标识',
|
|
|
|
|
`type` varchar(10) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL COMMENT '类型(report:报表;drag:仪表盘)',
|
2021-06-23 03:13:11 +00:00
|
|
|
|
PRIMARY KEY (`id`) USING BTREE,
|
|
|
|
|
INDEX `idx_jmdatasource_report_id`(`report_id`) USING BTREE,
|
|
|
|
|
INDEX `idx_jmdatasource_code`(`code`) USING BTREE
|
2022-12-07 13:22:18 +00:00
|
|
|
|
) ENGINE = InnoDB CHARACTER SET = utf8mb4 COLLATE = utf8mb4_general_ci ROW_FORMAT = DYNAMIC;
|
2021-06-23 03:13:11 +00:00
|
|
|
|
|
|
|
|
|
-- ----------------------------
|
|
|
|
|
-- Records of jimu_report_data_source
|
|
|
|
|
-- ----------------------------
|
2023-09-08 16:18:56 +00:00
|
|
|
|
INSERT INTO `jimu_report_data_source` VALUES ('59297214208654131@2', 'localcloud', '592957394477469696', '', NULL, 'MYSQL5.7', 'com.mysql.cj.jdbc.Driver', 'jdbc:mysql://127.0.0.1:3306/jimureport?useUnicode=true&characterEncoding=UTF-8&serverTimezone=GMT%2B8', 'root', '@JimuReportSMy3f94QGFM=', 'admin', '2023-08-12 16:48:06', 'admin', '2023-08-12 16:48:06', 0, NULL, 'report');
|
2024-02-18 11:29:58 +00:00
|
|
|
|
INSERT INTO `jimu_report_data_source` VALUES ('891608839425720320', 'ceshidd', '891607513627197440', '', NULL, 'MYSQL5.5', 'com.mysql.jdbc.Driver', 'jdbc:mysql://120.78.210.7:23306/ceshi?useUnicode=true&characterEncoding=UTF-8&serverTimezone=GMT%2B8&tinyInt1isBit=false', 'ceshi', '@JmAESa4228j07JMFqAXp9/AA8jIvpDtsR4C1ae92/gaIR/SU=', 'admin', '2023-12-04 19:02:03', NULL, NULL, 0, '2', 'report');
|
|
|
|
|
INSERT INTO `jimu_report_data_source` VALUES ('891608958816583680', 'd', '891607513627197440', NULL, NULL, 'MYSQL5.5', 'com.mysql.jdbc.Driver', 'jdbc:mysql://120.78.210.7:23306/ceshi?useUnicode=true&characterEncoding=UTF-8&serverTimezone=GMT%2B8&tinyInt1isBit=false', 'ceshi', '@JmAES3+1+Qp/vYnKOmoOvn7iJsQ==', 'admin', '2023-12-04 19:02:51', 'admin', '2023-12-04 19:02:51', 6, '2', 'report');
|
|
|
|
|
INSERT INTO `jimu_report_data_source` VALUES ('c2d3898bde3b92fca22a4ad44dbcf6fa', 'Local积木平台库', '850710545531240448', '', NULL, 'MYSQL5.5', 'com.mysql.jdbc.Driver', 'jdbc:mysql://127.0.0.1:3306/jimureport?characterEncoding=UTF-8&useUnicode=true&useSSL=false&serverTimezone=GMT%2B8&tinyInt1isBit=false', 'root', '@JmAES1lg7jczy9sNwe5mGiymOxA==', 'admin', '2023-10-11 10:21:14', 'admin', '2023-10-11 10:21:14', 0, NULL, 'report');
|
2021-06-23 03:13:11 +00:00
|
|
|
|
|
|
|
|
|
-- ----------------------------
|
|
|
|
|
-- Table structure for jimu_report_db
|
|
|
|
|
-- ----------------------------
|
|
|
|
|
DROP TABLE IF EXISTS `jimu_report_db`;
|
|
|
|
|
CREATE TABLE `jimu_report_db` (
|
|
|
|
|
`id` varchar(36) CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL COMMENT 'id',
|
|
|
|
|
`jimu_report_id` varchar(32) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '主键字段',
|
|
|
|
|
`create_by` varchar(50) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '创建人登录名称',
|
|
|
|
|
`update_by` varchar(50) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '更新人登录名称',
|
|
|
|
|
`create_time` datetime NULL DEFAULT NULL COMMENT '创建日期',
|
|
|
|
|
`update_time` datetime NULL DEFAULT NULL COMMENT '更新日期',
|
|
|
|
|
`db_code` varchar(32) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '数据集编码',
|
|
|
|
|
`db_ch_name` varchar(50) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '数据集名字',
|
|
|
|
|
`db_type` varchar(32) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '数据源类型',
|
|
|
|
|
`db_table_name` varchar(32) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '数据库表名',
|
|
|
|
|
`db_dyn_sql` longtext CHARACTER SET utf8 COLLATE utf8_general_ci NULL COMMENT '动态查询SQL',
|
|
|
|
|
`db_key` varchar(32) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '数据源KEY',
|
|
|
|
|
`tb_db_key` varchar(32) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '填报数据源',
|
|
|
|
|
`tb_db_table_name` varchar(32) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '填报数据表',
|
|
|
|
|
`java_type` varchar(32) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT 'java类数据集 类型(spring:springkey,class:java类名)',
|
|
|
|
|
`java_value` varchar(255) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT 'java类数据源 数值(bean key/java类名)',
|
|
|
|
|
`api_url` varchar(255) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '请求地址',
|
|
|
|
|
`api_method` varchar(255) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '请求方法0-get,1-post',
|
2021-10-11 09:50:19 +00:00
|
|
|
|
`is_list` varchar(10) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT '0' COMMENT '是否是列表0否1是 默认0',
|
2021-06-23 03:13:11 +00:00
|
|
|
|
`is_page` varchar(10) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '是否作为分页,0:不分页,1:分页',
|
|
|
|
|
`db_source` varchar(255) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '数据源',
|
|
|
|
|
`db_source_type` varchar(50) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '数据库类型 MYSQL ORACLE SQLSERVER',
|
|
|
|
|
`json_data` text CHARACTER SET utf8 COLLATE utf8_general_ci NULL COMMENT 'json数据,直接解析json内容',
|
|
|
|
|
`api_convert` varchar(255) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT 'api转换器',
|
|
|
|
|
PRIMARY KEY (`id`) USING BTREE,
|
2021-10-11 09:50:19 +00:00
|
|
|
|
INDEX `idx_jmreportdb_db_key`(`db_key`) USING BTREE,
|
|
|
|
|
INDEX `idx_jimu_report_id`(`jimu_report_id`) USING BTREE,
|
|
|
|
|
INDEX `idx_db_source_id`(`db_source`) USING BTREE
|
2022-12-07 13:22:18 +00:00
|
|
|
|
) ENGINE = InnoDB CHARACTER SET = utf8 COLLATE = utf8_general_ci ROW_FORMAT = DYNAMIC;
|
2021-06-23 03:13:11 +00:00
|
|
|
|
|
|
|
|
|
-- ----------------------------
|
|
|
|
|
-- Records of jimu_report_db
|
|
|
|
|
-- ----------------------------
|
2023-09-08 16:18:56 +00:00
|
|
|
|
INSERT INTO `jimu_report_db` VALUES ('1272834687525482497', '53c82a76f837d5661dceec7d93afafec', 'admin', 'admin', '2022-12-08 15:49:50', '2022-12-08 15:49:50', 'jianpiao', 'jianpiao', '0', NULL, 'select * from rep_demo_jianpiao where s_id=\'${id}\'', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '1', '1', 'c2d3898bde3b92fca22a4ad44dbcf6fa', 'mysql', NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db` VALUES ('1283730831482937345', '6059e405dd9c66a6d38e00841d2e40cc', 'admin', NULL, '2021-02-04 09:44:09', '2021-02-04 09:44:09', 'yaopin', 'yaopin', '1', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'http://api.jeecg.com/mock/26/baobiao/chufangjian ', '0', '1', '0', '', 'MYSQL', NULL, NULL);
|
2021-10-11 09:50:19 +00:00
|
|
|
|
INSERT INTO `jimu_report_db` VALUES ('1283957016150249473', '6059e405dd9c66a6d38e00841d2e40cc', NULL, NULL, '2020-07-17 10:49:42', NULL, 'yonghu', 'yonghu', '1', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'http://api.jeecg.com/mock/26/baobiao/yonghu', '0', '0', NULL, NULL, 'MYSQL', NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db` VALUES ('1284070508744257537', 'a250846887abe01217aab173d3006489', NULL, NULL, '2020-07-17 15:33:53', '2020-07-20 17:50:49', 'budong', 'budong', '1', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'http://api.jeecg.com/mock/26/baobiao/budongchan', '0', '0', NULL, NULL, 'MYSQL', NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db` VALUES ('1285164420728692737', '7905022412733a0c68dc7b4ef8947489', NULL, NULL, '2020-07-20 18:47:30', NULL, 'jieshaoxin', 'jieshaoxin', '1', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'http://api.jeecg.com/mock/26/baobiao/jieshaoxin', '0', '0', NULL, NULL, 'MYSQL', NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db` VALUES ('1285178919099637762', '6d6bdcb5e820c301ea32789e3ae43c44', NULL, NULL, '2020-07-20 19:45:06', NULL, 'qiangxiu', 'qiangxiu', '1', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'http://api.jeecg.com/mock/26/baobiao/qiangxiu', '0', '0', NULL, NULL, 'MYSQL', NULL, NULL);
|
2023-09-08 16:18:56 +00:00
|
|
|
|
INSERT INTO `jimu_report_db` VALUES ('1288038655293661186', 'f6ee801e8bdc28ba9d63f95dc65ccd79', 'admin', NULL, '2021-02-01 14:52:38', '2021-02-01 14:52:38', 'caigou', 'caigou', '1', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'http://api.jeecg.com/mock/26/baobiao/caigou?pageNo=\'${pageNo}\'&pageSize=\'${pageSize}\'', '0', '1', '1', '', NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db` VALUES ('1289140698221678593', '519c1c6f4d1f584ae8fa5b43b45acdc7', 'admin', NULL, '2021-03-03 17:48:38', '2021-03-03 17:48:38', 'xiaoshou', 'xiaoshou', '1', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'http://api.jeecg.com/mock/26/baobiao/xiaoshou?pageNo=\'${pageNo}\'&pageSize=\'${pageSize}\'', '0', '1', '1', '', NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db` VALUES ('1290104038414721025', '53c82a76f837d5661dceec7d93afafec', 'admin', 'admin', '2021-07-31 13:21:46', '2022-12-08 15:49:50', 'gongsi', 'gongsi', '0', NULL, 'select * from rep_demo_gongsi where id=\'${id}\'', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0', '0', 'c2d3898bde3b92fca22a4ad44dbcf6fa', 'mysql', NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db` VALUES ('1298923644105265153', '1298922907493339136', 'admin', NULL, '2020-08-31 13:57:53', '2020-08-31 13:57:53', 'hex', 'hex', '1', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'http://api.jeecg.com/mock/26/baobiao/ygtj1?pageNo=\'${pageNo}\'&pageSize=\'${pageSize}\'', '0', '1', '1', '', NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db` VALUES ('1316987047604514817', '1314846205892759552', 'admin', NULL, '2021-01-15 15:51:13', '2021-01-15 15:51:13', 'yuangongjiben', 'yuangongjiben', '1', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'http://api.jeecg.com/mock/26/yuangongjiben', '0', '1', '0', '', NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db` VALUES ('1316997232402231298', '1316944968992034816', 'admin', 'admin', '2023-08-12 17:16:00', '2023-08-12 17:16:00', 'employee', 'employee', '0', NULL, 'select * from rep_demo_employee where id=\'${id}\'', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0', '0', 'c2d3898bde3b92fca22a4ad44dbcf6fa', 'mysql', NULL, NULL);
|
2021-10-11 09:50:19 +00:00
|
|
|
|
INSERT INTO `jimu_report_db` VALUES ('1317006713165049858', '1314846205892759552', 'admin', NULL, '2021-01-11 14:38:14', '2021-01-11 14:38:14', 'xueli', 'xueli', '1', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'http://api.jeecg.com/mock/26/xueli', '0', '1', '0', '', NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db` VALUES ('1317007979484147714', '1314846205892759552', 'admin', NULL, '2021-01-08 10:40:31', '2021-01-08 10:40:31', 'uu', 'uu', '1', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'http://api.jeecg.com/mock/26/gongzuojingli', '0', '1', '0', '', NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db` VALUES ('1317009166140829698', '1314846205892759552', 'admin', NULL, '2020-10-16 15:47:09', '2021-01-05 15:33:58', 'zhengshu', 'zhengshu', '1', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'http://api.jeecg.com/mock/26/zhengshu', '0', '0', '0', '', NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db` VALUES ('1317013474634756097', '1314846205892759552', 'admin', NULL, '2020-10-16 16:04:16', '2021-01-05 15:33:58', 'jtcy', 'jtcy', '1', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'http://api.jeecg.com/mock/26/jtcy', '0', '0', '0', '', NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db` VALUES ('1317015169494282241', '1314846205892759552', 'admin', NULL, '2020-10-16 16:11:00', '2021-01-05 15:33:58', 'jiangli', 'jiangli', '1', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'http://api.jeecg.com/mock/26/jiangli', '0', '0', '0', '', NULL, NULL, NULL);
|
2023-09-08 16:18:56 +00:00
|
|
|
|
INSERT INTO `jimu_report_db` VALUES ('1331447376279285762', '1331429368098066432', 'admin', NULL, '2020-11-25 11:59:26', '2020-11-25 11:59:26', 'jihua', 'jihua', '1', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'http://api.jeecg.com/mock/26/jihua', '0', '0', '0', '', NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db` VALUES ('1331474698436915202', '1331429368098066432', 'admin', NULL, '2020-11-25 14:07:27', '2020-11-25 14:07:27', 'rishengchan', 'rishengchan', '1', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'http://api.jeecg.com/mock/26/rishengchan1', '0', '0', '0', '', NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db` VALUES ('1331483873661464578', '1331429368098066432', 'admin', NULL, '2020-11-25 14:24:28', '2020-11-25 14:24:28', 'wanchenglv', 'wanchenglv', '1', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'http://api.jeecg.com/mock/26/wanchenglv', '0', '0', '0', '', NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db` VALUES ('1331486475245629441', '1331429368098066432', 'admin', NULL, '2020-11-25 14:34:48', '2020-11-25 14:34:48', 'kaigong', 'kaigong', '1', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'http://api.jeecg.com/mock/26/kaigong', '0', '0', '0', '', NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db` VALUES ('1331491194517106690', '1331429368098066432', 'admin', NULL, '2020-11-25 14:56:36', '2020-11-25 14:56:36', 'bing1', 'bing1', '1', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'http://api.jeecg.com/mock/26/bing1', '0', '0', '0', '', NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db` VALUES ('1331493951013695490', '1331429368098066432', 'admin', NULL, '2020-11-25 15:04:31', '2020-11-25 15:04:31', 'bing2', 'bing2', '1', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'http://api.jeecg.com/mock/26/bing2', '0', '0', '0', '', NULL, NULL, NULL);
|
2021-10-11 09:50:19 +00:00
|
|
|
|
INSERT INTO `jimu_report_db` VALUES ('1331511745851731969', '1331503965770223616', 'admin', NULL, '2020-11-25 16:15:13', '2020-11-25 16:15:13', 'chengjiao', 'chengjiao', '1', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'http://api.jeecg.com/mock/26/chengjiao', '0', '0', '0', '', NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db` VALUES ('1331514838211407873', '1331503965770223616', 'admin', NULL, '2020-11-25 16:27:30', '2020-11-25 16:27:30', 'cjpaihang', 'cjpaihang', '1', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'http://api.jeecg.com/mock/26/cjpaihang', '0', '0', '0', '', NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db` VALUES ('1331514935028527106', '1331503965770223616', 'admin', NULL, '2020-11-25 16:27:54', '2020-11-25 16:27:54', 'cjjine', 'cjjine', '1', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'http://api.jeecg.com/mock/26/cjjine', '0', '0', '0', '', NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db` VALUES ('1331872643531526146', '1331503965770223616', 'admin', NULL, '2020-11-26 16:09:18', '2020-11-26 16:09:18', 'chengjiao1', 'chengjiao1', '1', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'http://api.jeecg.com/mock/26/chengjiao1', '0', '0', '0', '', NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db` VALUES ('1331878107552010242', '1331503965770223616', 'admin', NULL, '2020-11-26 16:31:01', '2020-11-26 16:31:01', 'zhuangxiu', 'zhuangxiu', '1', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'http://api.jeecg.com/mock/26/zhuangxiu', '0', '0', '0', '', NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db` VALUES ('1331916030221602818', '1331503965770223616', 'admin', NULL, '2020-11-26 19:01:42', '2020-11-26 19:01:42', 'btchanquan', 'btchanquan', '1', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'http://api.jeecg.com/mock/26/btchanquan', '0', '0', '0', '', NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db` VALUES ('1331919172472524801', '1331503965770223616', 'admin', NULL, '2020-11-26 19:14:11', '2020-11-26 19:14:11', 'huxingxiaoshou', 'huxingxiaoshou', '1', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'http://api.jeecg.com/mock/26/huxingxiaoshou', '0', '0', '0', '', NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db` VALUES ('1331922734933987329', '1331503965770223616', 'admin', NULL, '2020-11-26 19:28:21', '2020-11-26 19:28:21', 'fangyuan', 'fangyuan', '1', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'http://api.jeecg.com/mock/26/fangyuan', '0', '0', '0', '', NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db` VALUES ('1331926127597441025', '1331503965770223616', 'admin', NULL, '2020-11-26 19:41:49', '2020-11-26 19:41:49', 'qingkuang', 'qingkuang', '1', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'http://api.jeecg.com/mock/26/qingkuang', '0', '0', '0', '', NULL, NULL, NULL);
|
2023-09-08 16:18:56 +00:00
|
|
|
|
INSERT INTO `jimu_report_db` VALUES ('1333968597264900097', '1333962561053396992', 'admin', NULL, '2020-12-02 11:07:04', '2020-12-02 13:56:00', 'mianji', 'mianji', '1', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'http://api.jeecg.com/mock/26/mianji', '0', '0', '0', '', NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db` VALUES ('1333974073679552514', '1333962561053396992', 'admin', NULL, '2020-12-02 11:19:38', '2020-12-02 13:56:00', 'danjia', 'danjia', '1', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'http://api.jeecg.com/mock/26/danjia', '0', '0', '0', '', NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db` VALUES ('1333977108195581953', '1333962561053396992', 'admin', NULL, '2020-12-02 11:31:41', '2020-12-02 13:56:00', 'junjia', 'junjia', '1', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'http://api.jeecg.com/mock/26/junjia', '0', '0', '0', '', NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db` VALUES ('1333980382663548929', '1333962561053396992', 'admin', NULL, '2020-12-02 11:47:12', '2020-12-02 13:56:00', 'churang', 'churang', '1', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'http://api.jeecg.com/mock/26/churang', '0', '0', '0', '', NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db` VALUES ('1333983587241828354', '1333962561053396992', 'admin', NULL, '2020-12-02 11:57:26', '2020-12-02 13:56:00', 'xinzhuzhai', 'xinzhuzhai', '1', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'http://api.jeecg.com/mock/26/xinzhuzhai', '0', '0', '0', '', NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db` VALUES ('1334008609356390402', '1333962561053396992', 'admin', NULL, '2020-12-02 13:36:52', '2020-12-02 13:56:00', 'churang1', 'churang1', '1', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'http://api.jeecg.com/mock/26/churang1', '0', '0', '0', '', NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db` VALUES ('1334013423209422849', '1333962561053396992', 'admin', NULL, '2020-12-02 13:56:00', '2020-12-02 13:56:00', 'zhuzhaichengjiao', 'zhuzhaichengjiao', '1', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'http://api.jeecg.com/mock/26/zhuzhaichengjiao', '0', '1', '1', '', NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db` VALUES ('1334037720053325825', '1334028738995818496', 'admin', NULL, '2020-12-02 15:32:32', '2020-12-02 17:37:33', 'bingtu1', 'bingtu1', '1', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'http://api.jeecg.com/mock/26/bingtu1', '0', '0', '0', '', NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db` VALUES ('1334039611344691202', '1334028738995818496', 'admin', NULL, '2020-12-02 15:40:03', '2020-12-02 17:37:33', 'bingtu2', 'bingtu2', '1', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'http://api.jeecg.com/mock/26/bingtu2', '0', '0', '0', '', NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db` VALUES ('1334043138246844418', '1334028738995818496', 'admin', NULL, '2020-12-02 15:54:04', '2020-12-02 17:37:33', 'zhexian1', 'zhexian1', '1', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'http://api.jeecg.com/mock/26/zhexian1', '0', '0', '0', '', NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db` VALUES ('1334049545562103810', '1334028738995818496', 'admin', NULL, '2020-12-02 16:19:32', '2020-12-02 17:37:33', 'zhexian2', 'zhexian2', '1', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'http://api.jeecg.com/mock/26/zhexian2', '0', '0', '0', '', NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db` VALUES ('1334052375119273986', '1334028738995818496', 'admin', NULL, '2021-01-25 16:38:54', '2021-01-25 16:38:54', 'zhuxingtu1', 'zhuxingtu1', '1', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'http://api.jeecg.com/mock/26/zhuxingtu1', '0', '1', '0', '', NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db` VALUES ('1334058269181747202', '1334028738995818496', 'admin', NULL, '2020-12-02 16:54:12', '2020-12-02 17:37:33', 'bingtu3', 'bingtu3', '1', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'http://api.jeecg.com/mock/26/bingtu3', '0', '0', '0', '', NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db` VALUES ('1334060474135748610', '1334028738995818496', 'admin', NULL, '2020-12-02 17:02:57', '2020-12-02 17:37:33', 'bingtu4', 'bingtu4', '1', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'http://api.jeecg.com/mock/26/bingtu4', '0', '0', '0', '', NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db` VALUES ('1334063192933933058', '1334028738995818496', 'admin', NULL, '2020-12-02 17:13:46', '2020-12-02 17:37:33', 'bingtu5', 'bingtu5', '1', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'http://api.jeecg.com/mock/26/bingtu5', '0', '0', '0', '', NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db` VALUES ('1334063880162254850', '1334028738995818496', 'admin', NULL, '2020-12-02 17:16:29', '2020-12-02 17:37:33', 'bingtu6', 'bingtu6', '1', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'http://api.jeecg.com/mock/26/bingtu6', '0', '0', '0', '', NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db` VALUES ('1334068361943851009', '1334028738995818496', 'admin', NULL, '2020-12-02 17:37:33', '2020-12-02 17:37:33', 'biaoge', 'biaoge', '1', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'http://api.jeecg.com/mock/26/biaoge', '0', '1', '1', '', NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db` VALUES ('1334083843610648578', '1334074491629867008', 'admin', NULL, '2020-12-02 18:35:49', '2020-12-02 18:35:49', 'wunian', 'wunian', '1', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'http://api.jeecg.com/mock/26/wunian', '0', '0', '0', '', NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db` VALUES ('1334107015605133314', '1334074491629867008', 'admin', NULL, '2020-12-02 20:07:54', '2020-12-02 20:07:54', 'table2', 'table2', '1', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'http://api.jeecg.com/mock/26/table2', '0', '0', '0', '', NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db` VALUES ('1334440263732436994', '1334420681185566722', 'admin', NULL, '2021-01-20 11:39:52', '2021-01-20 11:39:52', 'laiyuan', 'laiyuan', '1', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'http://api.jeecg.com/mock/26/laiyuan', '0', '1', '1', '', NULL, NULL, NULL);
|
2021-10-11 09:50:19 +00:00
|
|
|
|
INSERT INTO `jimu_report_db` VALUES ('1334465135435063298', '1334457419857793024', 'admin', NULL, '2021-01-04 21:29:28', '2021-01-04 21:29:28', 'xiaoshou', 'xiaoshou', '1', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'http://api.jeecg.com/mock/26/xiaoshou', '0', '1', '1', '', NULL, NULL, NULL);
|
2023-09-08 16:18:56 +00:00
|
|
|
|
INSERT INTO `jimu_report_db` VALUES ('1334708015269490689', '1334696790477377536', 'ajun007_cn', 'ajun007_cn', '2021-07-15 16:25:25', '2021-07-15 16:25:25', 'shouru', 'shouru', '1', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'http://api.jeecg.com/mock/26/shouru', '0', '1', '0', '', NULL, NULL, NULL);
|
2021-10-11 09:50:19 +00:00
|
|
|
|
INSERT INTO `jimu_report_db` VALUES ('1334763434197200897', '1334757703079301120', 'admin', NULL, '2020-12-04 15:40:31', '2020-12-04 15:40:31', 'chejian', 'chejian', '1', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'http://api.jeecg.com/mock/26/chejian', '0', '0', '0', '', NULL, NULL, NULL);
|
2023-09-08 16:18:56 +00:00
|
|
|
|
INSERT INTO `jimu_report_db` VALUES ('1335886666363158530', '1334028738995818496', 'admin', NULL, '2020-12-07 17:59:35', '2020-12-07 17:59:35', 'sandian', 'sandian', '1', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'http://api.jeecg.com/mock/26/sandian', '0', '0', '0', '', NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db` VALUES ('1335889985047478274', '1334028738995818496', 'admin', NULL, '2020-12-07 18:12:47', '2020-12-07 18:12:47', 'loudou', 'loudou', '1', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'http://api.jeecg.com/mock/26/loudou', '0', '0', '0', '', NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db` VALUES ('1335901385547431937', '1333962561053396992', 'admin', NULL, '2020-12-14 17:16:28', '2020-12-14 17:16:28', 'ditu', 'ditu', '1', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'http://api.jeecg.com/mock/26/ditu', '0', '0', '0', '', NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db` VALUES ('1335909918854725633', '1334074491629867008', 'admin', NULL, '2020-12-07 19:31:59', '2020-12-07 19:31:59', 'ditu1', 'ditu1', '1', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'http://api.jeecg.com/mock/26/ditu1', '0', '0', '0', '', NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db` VALUES ('1337360015912087554', '1337271712059887616', 'admin', 'admin', '2022-04-21 20:09:44', '2022-04-21 20:09:44', 'pp', 'pp', '0', NULL, 'select * from yanshi_wxtl', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0', '0', 'c2d3898bde3b92fca22a4ad44dbcf6fa', 'mysql', NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db` VALUES ('1338457100451328002', '1337271712059887616', 'admin', 'admin', '2021-07-31 13:23:38', '2021-07-31 13:24:11', 'laiyuan', '游客来源', '0', NULL, 'select * from laiyuan_wxtl order by value desc', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0', '0', 'c2d3898bde3b92fca22a4ad44dbcf6fa', 'mysql', NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db` VALUES ('1338667866760679426', '1337271712059887616', 'admin', 'admin', '2021-07-31 13:23:42', '2021-07-31 13:24:11', 'fenbu1', '游客分布', '0', NULL, 'select * from fenbu_wxtl', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0', '0', 'c2d3898bde3b92fca22a4ad44dbcf6fa', 'mysql', NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db` VALUES ('1338669749617299458', '1337271712059887616', 'admin', 'admin', '2021-07-31 13:23:46', '2021-07-31 13:24:11', 'yanshi', '停留时长', '0', NULL, 'select * from yanshi_wxtl', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0', '0', 'c2d3898bde3b92fca22a4ad44dbcf6fa', 'mysql', NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db` VALUES ('1338675446962720769', '1337271712059887616', 'admin', 'admin', '2021-07-31 13:23:50', '2021-07-31 13:24:11', 'fangshi1', '出行方式1', '0', NULL, 'select * from fangshi1_wxtl', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0', '0', 'c2d3898bde3b92fca22a4ad44dbcf6fa', 'mysql', NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db` VALUES ('1338678877395881985', '1337271712059887616', 'admin', 'admin', '2021-07-31 13:23:54', '2021-07-31 13:24:11', 'laiyuan1', '游客来源1', '0', NULL, 'select * from laiyuan1_wxtl', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0', '0', 'c2d3898bde3b92fca22a4ad44dbcf6fa', 'mysql', NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db` VALUES ('1338687259901169665', '1337271712059887616', 'admin', 'admin', '2021-07-31 13:23:58', '2021-07-31 13:24:11', 'xianlu', 'xianlu', '0', NULL, 'select * from xianlu_wxtl', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0', '0', 'c2d3898bde3b92fca22a4ad44dbcf6fa', 'mysql', NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db` VALUES ('1338687435562815489', '1337271712059887616', 'admin', 'admin', '2021-07-31 13:24:02', '2021-07-31 13:24:11', 'xianlu1', 'xianlu1', '0', NULL, 'select * from xianlu1_wxtl', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0', '0', 'c2d3898bde3b92fca22a4ad44dbcf6fa', 'mysql', NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db` VALUES ('1338720793164517378', '1337271712059887616', 'admin', 'admin', '2021-07-31 13:24:06', '2021-07-31 13:24:11', 'ditu', 'ditu', '0', NULL, 'select * from ditu_wxtl', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0', '0', 'c2d3898bde3b92fca22a4ad44dbcf6fa', 'mysql', NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db` VALUES ('1338724105821622274', '1337271712059887616', 'admin', 'admin', '2021-07-31 13:24:11', '2021-07-31 13:24:11', 'qushi', 'qushi', '0', NULL, 'select * from qushi_wxtl', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '1', '1', 'c2d3898bde3b92fca22a4ad44dbcf6fa', 'mysql', NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db` VALUES ('1339491107951640577', '1339478701846433792', 'admin', NULL, '2020-12-17 16:42:21', '2020-12-17 19:50:14', 'xiaoshoue', '销售额', '1', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'http://api.jeecg.com/mock/26/xiaoshoue', '0', '0', '0', '', NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db` VALUES ('1339495346077728770', '1339478701846433792', 'admin', NULL, '2020-12-17 16:59:12', '2020-12-17 19:50:14', 'chengshi', '城市', '1', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'http://api.jeecg.com/mock/26/chengshi', '0', '0', '0', '', NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db` VALUES ('1339498906765000705', '1339478701846433792', 'admin', NULL, '2020-12-17 17:13:21', '2020-12-17 19:50:14', 'xsjd', '销售进度', '1', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'http://api.jeecg.com/mock/26/xsjd', '0', '0', '0', '', NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db` VALUES ('1339538388453195777', '1339478701846433792', 'admin', NULL, '2020-12-17 19:50:14', '2020-12-17 19:50:14', 'zhexian', 'zhexian', '1', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'http://api.jeecg.com/mock/26/zhexian', '0', '1', '1', '', NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db` VALUES ('1339870475496497153', '1339859143477039104', 'admin', 'admin', '2021-07-31 13:22:34', '2021-07-31 13:22:34', 'pp', '会员数量', '0', NULL, 'select * from huiyuan_wxtlshuliang', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '1', '1', 'c2d3898bde3b92fca22a4ad44dbcf6fa', 'mysql', NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db` VALUES ('1339873097620168705', '1339859143477039104', 'admin', 'admin', '2021-07-31 13:22:39', '2021-07-31 13:22:39', 'se', '会员性别', '0', NULL, 'select * from huiyuan_sex', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0', '0', 'c2d3898bde3b92fca22a4ad44dbcf6fa', 'mysql', NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db` VALUES ('1339876173672390658', '1339859143477039104', 'admin', 'admin', '2021-07-31 13:22:44', '2021-07-31 13:22:44', 'aa', '会员年龄', '0', NULL, 'select * from huiyuan_age', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0', '0', 'c2d3898bde3b92fca22a4ad44dbcf6fa', 'mysql', NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db` VALUES ('1339878700639887362', '1339859143477039104', 'admin', 'admin', '2021-07-31 13:22:48', '2021-07-31 13:22:48', 'ww', '工作性质', '0', NULL, 'select * from huiyuan_work', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0', '0', 'c2d3898bde3b92fca22a4ad44dbcf6fa', 'mysql', NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db` VALUES ('1339884367194923010', '1339859143477039104', 'admin', 'admin', '2021-07-31 13:22:52', '2021-07-31 13:22:52', 'hh', '活跃度', '0', NULL, 'select * from huiyuan_huoyuedu', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0', '0', 'c2d3898bde3b92fca22a4ad44dbcf6fa', 'mysql', NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db` VALUES ('1339886300563546113', '1339859143477039104', 'admin', 'admin', '2021-07-31 13:22:56', '2021-07-31 13:22:56', 'xx', '会员学历', '0', NULL, 'select * from huiyuan_xueli', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0', '0', 'c2d3898bde3b92fca22a4ad44dbcf6fa', 'mysql', NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db` VALUES ('1339888452912586753', '1339859143477039104', 'admin', 'admin', '2021-07-31 13:23:00', '2021-07-31 13:23:00', 'gg', '分公司', '0', NULL, 'select * from huiyuan_fengongsi', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0', '0', 'c2d3898bde3b92fca22a4ad44dbcf6fa', 'mysql', NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db` VALUES ('361b59d77f2332c66f013160d71cebfe', '1338744112815411200', 'admin', 'admin', '2021-07-31 13:25:30', '2021-07-31 13:25:30', 'pop', 'pop', '0', NULL, 'select * from rep_demo_dxtj', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '1', '0', 'c2d3898bde3b92fca22a4ad44dbcf6fa', 'mysql', NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db` VALUES ('44a261c2dcaaaaea51c18378e46ba5b9', 'a9f068972508920cd4aab831814f0c04', 'admin', NULL, '2021-02-01 15:15:10', '2021-02-01 15:15:10', 'pdaibu', 'pdaibu', '1', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'http://api.jeecg.com/mock/26/baobiao/daibu', '0', '1', '0', '', NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db` VALUES ('523d56e4aec77509385b8b2da61ceeb2', '1354358750907076608', 'admin', 'admin', '2022-12-08 21:31:48', '2022-12-08 21:31:48', 'xs', 'xs', '1', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'http://api.jeecg.com/mock/26/xiaoshou1', '0', '1', '0', '', NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db` VALUES ('537516331080437760', '537516331017523200', 'admin', 'admin', '2021-04-01 16:36:46', '2021-04-01 16:36:46', 'xb', 'xb', '1', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'https://bootapi.jeecg.com/jmreport/test/getUserMsg?did=\'${did}\'', '0', '1', '0', '', NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db` VALUES ('537518066347888640', '537516331017523200', 'admin', 'admin', '2021-04-01 16:33:02', '2021-04-01 16:33:02', 'gg', 'gg', '1', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'https://bootapi.jeecg.com/jmreport/test/getOrder?did=\'${did}\'', '0', '0', '0', '', NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db` VALUES ('537521675609395200', '537521675550674944', 'admin', 'admin', '2021-07-31 13:26:47', '2021-07-31 13:26:47', 'pop', 'pop', '0', NULL, 'select * from rep_demo_dxtj', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '1', '0', 'c2d3898bde3b92fca22a4ad44dbcf6fa', 'mysql', NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db` VALUES ('537522718405644288', '537521675550674944', 'admin', 'admin', '2021-07-31 13:26:51', '2021-07-31 13:26:51', 'hh', 'hh', '0', NULL, 'select * from rep_demo_dxtj where update_by=\'${update_by}\'', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '1', '0', 'c2d3898bde3b92fca22a4ad44dbcf6fa', 'mysql', NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db` VALUES ('542158608528658432', '542152544408129536', 'admin', NULL, '2021-04-14 11:51:35', '2021-04-14 11:51:35', 'xs', 'xs', '1', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'http://api.jeecg.com/mock/26/salemessage', '0', '1', '0', '', NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db` VALUES ('542187081431339008', '542152544408129536', 'admin', 'admin', '2021-11-24 11:40:49', '2021-11-24 11:40:49', 'yu', 'yu', '1', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'http://api.jeecg.com/mock/26/yuesale?type=${type}', '0', '1', '0', '', NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db` VALUES ('542212079118274560', '542152544408129536', 'admin', 'admin', '2021-04-16 16:53:48', '2021-04-16 16:53:48', 'hk', 'hk', '1', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'http://api.jeecg.com/mock/26/returnmoney?type=\'${type}\'', '0', '0', '0', '', NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db` VALUES ('542961954638352384', '542152544408129536', 'admin', 'admin', '2021-04-16 17:04:17', '2021-04-16 17:04:17', 'zhanbi', 'zhanbi', '1', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'http://api.jeecg.com/mock/26/zhanbi?type=\'${type}\'', '0', '1', '0', '', NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db` VALUES ('580753827960279040', '580749470334275584', 'admin', 'admin', '2021-08-04 14:12:46', '2021-08-04 14:12:46', 'jm_expression', '积木表达式', '1', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'https://api.jeecg.com/mock/26/jmExpression', '0', '0', '0', '', NULL, '', '');
|
|
|
|
|
INSERT INTO `jimu_report_db` VALUES ('590432931110277120', '590432931076722688', 'admin', 'admin', '2021-10-22 11:43:32', '2021-10-22 11:43:32', 'pop', 'pop', '0', NULL, 'select * from rep_demo_dxtj', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '1', '0', 'c2d3898bde3b92fca22a4ad44dbcf6fa', 'mysql', NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db` VALUES ('590442764031053824', '590442764001693696', 'admin', 'admin', '2021-08-25 17:35:59', '2021-08-25 17:35:59', 'xs', 'xs', '1', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'http://api.jeecg.com/mock/26/groupsub', '0', '1', '0', '', NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db` VALUES ('590808841680408576', '590808622016319488', 'admin', NULL, '2021-08-26 17:50:15', '2021-08-26 17:50:15', 'jm', '纵向分组小计', '1', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'http://api.jeecg.com/mock/26/subtotal', '0', '1', '0', '', NULL, '', '');
|
|
|
|
|
INSERT INTO `jimu_report_db` VALUES ('590812531833262080', '590812531803901952', 'admin', NULL, '2021-08-26 18:04:55', '2021-08-26 17:50:15', 'jm', '纵向分组小计', '1', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'http://api.jeecg.com/mock/26/subtotal', '0', '1', '0', '', NULL, '', '');
|
|
|
|
|
INSERT INTO `jimu_report_db` VALUES ('590832773221404672', '590831722099462144', 'admin', 'admin', '2021-08-26 19:29:54', '2021-08-26 19:29:54', 'jm', '积木报表', '0', NULL, 'select * from rep_demo_dxtj', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '1', '0', 'c2d3898bde3b92fca22a4ad44dbcf6fa', 'mysql', '', '');
|
|
|
|
|
INSERT INTO `jimu_report_db` VALUES ('590836397553045504', '590835562513256448', 'admin', 'admin', '2021-08-29 15:22:54', '2021-08-29 15:22:54', 'jm', '积木报表', '0', NULL, 'select * from rep_demo_dxtj', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '1', '0', 'c2d3898bde3b92fca22a4ad44dbcf6fa', 'mysql', '', '');
|
|
|
|
|
INSERT INTO `jimu_report_db` VALUES ('591071513072193536', '590835562513256448', 'admin', 'admin', '2021-08-27 11:56:45', '2021-08-27 11:56:45', 'flapi', '分版api', '1', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'http://api.jeecg.com/mock/26/subtotal', '0', '1', '0', '', NULL, '', '');
|
|
|
|
|
INSERT INTO `jimu_report_db` VALUES ('592972587332882432', '592957394477469696', 'admin', 'admin', '2023-08-12 16:48:12', '2023-08-12 16:48:12', 'pop', 'pop', '0', NULL, 'CALL proc_jmdemo( ${pageNo}, ${pageSize} )', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '1', '1', '59297214208654131@2', 'mysql', '', '');
|
|
|
|
|
INSERT INTO `jimu_report_db` VALUES ('753507922642030592', '753506001105539072', '15629196826', NULL, '2022-11-18 16:58:18', '2022-11-18 16:58:18', 'test01', '未分版数据', '3', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', '0', '1', '1', '', NULL, '{\n \"data\": [\n {\n \"s_lot_no\": \"M-025S23A\",\n \"s_cust_po_no\": \"679610847376\",\n \"s_item_code\": \" 84736\",\n \"s_full_name\": \"卡米拉\",\n \"modelcolor\": \"驼色\",\n \"s_size_name\": \"QUEEN\",\n \"d_delivery_date\": \"2022-12-05\",\n \"string_agg\": \"卡米拉方垫2 16X16+1cm*1;卡米拉枕套 20X36cm*2;卡米拉床裙 60X80+15cm*1;卡米拉被子 92X92cm*1;卡米拉方垫1 18X18cm*1;卡米拉欧枕 26X26cm*2;卡米拉长方垫 12X18cm*1\",\n \"b_kit\": true,\n \"i_qty\": \"2366套\",\n \"s_cover_img_url\": \"http://124.71.147.132:25024/staticFile/d58e69c8-d575-4ba7-a3ce-da35923bbe38/pic/hs_a3bb8d07-2962-4bf1-94bd-0e639338698a1668750879457.jpg\"\n },\n {\n \"s_lot_no\": \"M-025S23A\",\n \"s_cust_po_no\": \"679610847369\",\n \"s_item_code\": \" 84737\",\n \"s_full_name\": \"卡米拉\",\n \"modelcolor\": \"驼色\",\n \"s_size_name\": \"FULL\",\n \"d_delivery_date\": \"2022-12-05\",\n \"string_agg\": \"卡米拉床裙 54X75+15cm*1;卡米拉枕套 20X26cm*2;卡米拉方垫1 18X18cm*1;卡米拉方垫2 16X16+1cm*1;卡米拉长方垫 12X18cm*1;卡米拉欧枕 26X26cm*2;卡米拉被子 80X86cm*1\",\n \"b_kit\": true,\n \"i_qty\": \"98套\",\n \"s_cover_img_url\": null\n },\n {\n \"s_lot_no\": \"M-025S23A\",\n \"s_cust_po_no\": \"679610847383\",\n \"s_item_code\": \" 84738\",\n \"s_full_name\": \"卡米拉\",\n \"modelcolor\": \"驼色\",\n \"s_size_name\": \"KING\",\n \"d_delivery_date\": \"2022-12-05\",\n \"string_agg\": \"卡米拉被子 106X92cm*1;卡米拉床裙 78X80+15cm*1;卡米拉枕套 20X36cm*2;卡米拉方垫1 18X18cm*1;卡米拉方垫2 16X16+1cm*1;卡米拉长方垫 12X18cm*1;卡米拉欧枕 26X26cm*2\",\n \"b_kit\": true,\n \"i_qty\": \"1376套\",\n \"s_cover_img_url\": null\n },\n {\n \"s_lot_no\": \"M-025S23A\",\n \"s_cust_po_no\": \"679610847390\",\n \"s_item_code\": \" 84739\",\n \"s_full_name\": \"卡米拉\",\n \"modelcolor\": \"驼色\",\n \"s_size_name\": \"CAL-KING\",\n \"d_delivery_date\": \"2022-12-05\",\n \"string_agg\": \"卡米拉被子 106X92cm*1;卡米拉床裙 72X84+15cm*1;卡米拉枕套 20X36cm*2;卡米拉方垫1 18X18cm*1;卡米拉方垫2 16X16+1cm*1;卡米拉长方垫 12X18cm*1;卡米拉欧枕 26X26cm*2\",\n \"b_kit\": true,\n \"i_qty\": \"224套\",\n \"s_cover_img_url\": null\n },\n {\n \"s_lot_no\": \"M-025S23B\",\n \"s_cust_po_no\": \"679610847376\",\n \"s_item_code\": \" 84736\",\n \"s_full_name\": \"卡米拉\",\n \"modelcolor\": \"驼色\",\n \"s_size_name\": \"QUEEN\",\n \"d_delivery_date\": \"2023-01-05\",\n \"string_agg\": \"卡米拉方垫2 16X16+1cm*1;卡米拉枕套 20X36cm*2;卡米拉床裙 60X80+15cm*1;卡米拉被子 92X92cm*1;卡米拉方垫1 18X18cm*1;卡米拉欧枕 26X26cm*2;卡米拉长方垫 12X18cm*1\",\n \"b_kit\": true,\n \"i_qty\": \"150套\",\n \"s_cover_img_url\": \"http://124.71.147.132:25024/staticFile/d58e69c8-d575-4ba7-a3ce-da35923bbe38/pic/hs_a3bb8d07-2962-4bf1-94bd-0e639338698a1668750879457.jpg\"\n },\n {\n \"s_lot_no\": \"M-025S23B\",\n \"s_cust_po_no\": \"679610847369\",\n \"s_item_code\": \" 84737\",\n \"s_full_name\": \"卡米拉\",\n \"modelcolor\": \"驼色
|
|
|
|
|
INSERT INTO `jimu_report_db` VALUES ('753508139764371456', '753506001105539072', '15629196826', NULL, '2022-11-18 16:59:10', '2022-11-18 16:59:10', 'test02', '分版表格数据数据', '3', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', '0', '1', '0', '', NULL, '{\n \"data\": [\n {\n \"suit_item_code\": \" 84739\",\n \"suit_full_name\": \"卡米拉CAL-KING\",\n \"s_item_code\": \"C000120001\",\n \"s_full_name\": \"床裙1件\",\n \"s_size_name\": \"72X84+15cm\",\n \"n_match_qty\": 1.0\n },\n {\n \"suit_item_code\": \" 84739\",\n \"suit_full_name\": \"卡米拉CAL-KING\",\n \"s_item_code\": \"C000122001\",\n \"s_full_name\": \"方垫11件\",\n \"s_size_name\": \"18X18cm\",\n \"n_match_qty\": 1.0\n },\n {\n \"suit_item_code\": \" 84739\",\n \"suit_full_name\": \"卡米拉CAL-KING\",\n \"s_item_code\": \"C000123001\",\n \"s_full_name\": \"方垫21件\",\n \"s_size_name\": \"16X16+1cm\",\n \"n_match_qty\": 1.0\n },\n {\n \"suit_item_code\": \" 84739\",\n \"suit_full_name\": \"卡米拉CAL-KING\",\n \"s_item_code\": \"C000121001\",\n \"s_full_name\": \"枕套2件\",\n \"s_size_name\": \"20X36cm\",\n \"n_match_qty\": 2.0\n },\n {\n \"suit_item_code\": \" 84739\",\n \"suit_full_name\": \"卡米拉CAL-KING\",\n \"s_item_code\": \"C000125001\",\n \"s_full_name\": \"欧枕2件\",\n \"s_size_name\": \"26X26cm\",\n \"n_match_qty\": 2.0\n },\n {\n \"suit_item_code\": \" 84739\",\n \"suit_full_name\": \"卡米拉CAL-KING\",\n \"s_item_code\": \"C000119001\",\n \"s_full_name\": \"被子1件\",\n \"s_size_name\": \"106X92cm\",\n \"n_match_qty\": 1.0\n },\n {\n \"suit_item_code\": \" 84739\",\n \"suit_full_name\": \"卡米拉CAL-KING\",\n \"s_item_code\": \"C000124001\",\n \"s_full_name\": \"长方垫1件\",\n \"s_size_name\": \"12X18cm\",\n \"n_match_qty\": 1.0\n },\n {\n \"suit_item_code\": \" 84737\",\n \"suit_full_name\": \"卡米拉FULL\",\n \"s_item_code\": \"C000106001\",\n \"s_full_name\": \"床裙1件\",\n \"s_size_name\": \"54X75+15cm\",\n \"n_match_qty\": 1.0\n },\n {\n \"suit_item_code\": \" 84737\",\n \"suit_full_name\": \"卡米拉FULL\",\n \"s_item_code\": \"C000108001\",\n \"s_full_name\": \"方垫11件\",\n \"s_size_name\": \"18X18cm\",\n \"n_match_qty\": 1.0\n },\n {\n \"suit_item_code\": \" 84737\",\n \"suit_full_name\": \"卡米拉FULL\",\n \"s_item_code\": \"C000109001\",\n \"s_full_name\": \"方垫21件\",\n \"s_size_name\": \"16X16+1cm\",\n \"n_match_qty\": 1.0\n },\n {\n \"suit_item_code\": \" 84737\",\n \"suit_full_name\": \"卡米拉FULL\",\n \"s_item_code\": \"C000107001\",\n \"s_full_name\": \"枕套2件\",\n \"s_size_name\": \"20X26cm\",\n \"n_match_qty\": 2.0\n },\n {\n \"suit_item_code\": \" 84737\",\n \"suit_full_name\": \"卡米拉FULL\",\n \"s_item_code\": \"C000111001\",\n \"s_full_name\": \"欧枕2件\",\n \"s_size_name\": \"26X26cm\",\n \"n_match_qty\": 2.0\n },\n {\n \"suit_item_code\": \" 84737\",\n \"suit_full_name\": \"卡米拉FULL\",\n \"s_item_code\": \"C000105001\",\n \"s_full_name\": \"被子1件\",\n \"s_size_name\": \"80X86cm\",\n \"n_match_qty\": 1.0\n },\n {
|
|
|
|
|
INSERT INTO `jimu_report_db` VALUES ('850276980138016768', '850276523718049792', 'admin', NULL, '2023-08-12 17:44:00', '2023-08-12 17:44:00', 'aaa', 'aaa', '0', NULL, 'select * from jimu_report where create_by=\'#{sysUserCode}\'', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '1', '1', 'c2d3898bde3b92fca22a4ad44dbcf6fa', 'mysql', '', '');
|
|
|
|
|
INSERT INTO `jimu_report_db` VALUES ('850286729285959680', '850286412532121600', 'jeecg', NULL, '2023-08-12 18:22:44', '2023-08-12 18:22:44', 'aaa', 'aaa', '1', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '#{domainURL}/jimureport/test/getList ', '0', '1', '1', '', NULL, '', '');
|
|
|
|
|
INSERT INTO `jimu_report_db` VALUES ('850315907695738880', '850315907339223040', 'admin', 'admin', '2023-08-12 22:51:28', '2023-08-12 22:51:28', 'tt', 'tt', '1', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'http://api.jeecg.com/mock/26/baobiao/ygtj?pageNo=1&pageSize=1000', '0', '1', '1', '', NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db` VALUES ('850318855133822976', '850318855100268544', 'admin', 'admin', '2023-08-21 09:31:20', '2023-08-21 09:31:20', 'xs', '数据', '1', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'http://api.jeecg.com/mock/26/xiaoshou1', '0', '1', '0', '', NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db` VALUES ('850709188669702144', '850709188564844544', 'admin', 'admin', '2023-08-13 22:21:26', '2021-08-04 14:12:46', 'jm_expression', '积木表达式', '1', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'https://api.jeecg.com/mock/26/jmExpression', '0', '0', '0', '', NULL, '', '');
|
|
|
|
|
INSERT INTO `jimu_report_db` VALUES ('850943991000145920', '850943990899482624', 'admin', 'admin', '2023-08-14 13:54:27', '2021-08-29 15:22:54', 'jm', '积木报表', '0', NULL, 'select * from rep_demo_dxtj', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '1', '0', 'c2d3898bde3b92fca22a4ad44dbcf6fa', 'mysql', '', '');
|
|
|
|
|
INSERT INTO `jimu_report_db` VALUES ('850943991264387072', '850943990899482624', 'admin', 'admin', '2023-08-14 13:54:28', '2021-08-27 11:56:45', 'flapi', '分版api', '1', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'http://api.jeecg.com/mock/26/subtotal', '0', '1', '0', '', NULL, '', '');
|
|
|
|
|
INSERT INTO `jimu_report_db` VALUES ('850944008486199296', '850944008423284736', 'admin', 'admin', '2023-08-14 13:54:32', '2021-08-26 19:29:54', 'jm', '积木报表', '0', NULL, 'select * from rep_demo_dxtj', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '1', '0', 'c2d3898bde3b92fca22a4ad44dbcf6fa', 'mysql', '', '');
|
|
|
|
|
INSERT INTO `jimu_report_db` VALUES ('853414333878706176', '850318855100268544', 'admin', 'admin', '2023-08-21 09:30:55', '2023-08-21 09:30:55', 'sss', '合计值', '3', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', '0', '0', '0', '', NULL, '{\n \"data\": [\n {\n \"ctotal\": \"125箱\",\n \"cname\": \"牛奶0\",\n \"cprice\": \"56\",\n \"riqi\": \"2022年10月21日\",\n \"id\": \"1\",\n \"dtotal\": \"1256箱\",\n \"tp\": \"7000\",\n \"ztotal\": \"589箱\",\n \"cnum\": \"每箱12瓶\"\n },\n {\n \"ctotal\": \"126箱\",\n \"cname\": \"牛奶1\",\n \"cprice\": \"56\",\n \"riqi\": \"2022年10月21日\",\n \"id\": \"1\",\n \"dtotal\": \"1256箱\",\n \"tp\": \"7000\",\n \"ztotal\": \"589箱\",\n \"cnum\": \"每箱12瓶\"\n }\n ]\n}', '');
|
|
|
|
|
INSERT INTO `jimu_report_db` VALUES ('859286972912443392', '859286752275275776', 'admin', NULL, '2023-09-06 14:26:29', '2023-09-06 14:26:29', 'sss', 'ss', '0', NULL, 'select * from jimu_dict', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '1', '1', '', 'mysql', '', '');
|
2024-02-18 11:29:58 +00:00
|
|
|
|
INSERT INTO `jimu_report_db` VALUES ('864668240407756800', '864668240323870720', 'admin', NULL, '2020-12-02 18:35:49', '2020-12-02 18:35:49', 'wunian', 'wunian', '1', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'http://api.jeecg.com/mock/26/wunian', '0', '0', '0', '', NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db` VALUES ('864668240495837184', '864668240323870720', 'admin', NULL, '2020-12-02 20:07:54', '2020-12-02 20:07:54', 'table2', 'table2', '1', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'http://api.jeecg.com/mock/26/table2', '0', '0', '0', '', NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db` VALUES ('864668240575528960', '864668240323870720', 'admin', NULL, '2020-12-07 19:31:59', '2020-12-07 19:31:59', 'ditu1', 'ditu1', '1', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'http://api.jeecg.com/mock/26/ditu1', '0', '0', '0', '', NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db` VALUES ('865473862745292800', '865473862653018112', 'admin', 'admin', '2023-09-23 16:10:59', '2021-08-26 19:29:54', 'fvkkwmqzmd', '积木报表', '0', NULL, 'select * from rep_demo_dxtj', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '1', '0', 'c2d3898bde3b92fca22a4ad44dbcf6fa', 'mysql', '', '');
|
|
|
|
|
INSERT INTO `jimu_report_db` VALUES ('865474009378160640', '865474009323634688', 'admin', 'admin', '2023-09-23 16:11:34', '2021-08-26 19:29:54', 'jvafirszjv', '积木报表', '0', NULL, 'select * from rep_demo_dxtj', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '1', '0', 'c2d3898bde3b92fca22a4ad44dbcf6fa', 'mysql', '', '');
|
|
|
|
|
INSERT INTO `jimu_report_db` VALUES ('865474119587692544', '865474119583498240', 'admin', 'admin', '2023-09-23 16:12:00', '2021-08-26 19:29:54', 'adezdurdfk', '积木报表', '0', NULL, 'select * from rep_demo_dxtj', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '1', '0', 'c2d3898bde3b92fca22a4ad44dbcf6fa', 'mysql', '', '');
|
|
|
|
|
INSERT INTO `jimu_report_db` VALUES ('865474395707113472', '865474395669364736', 'admin', 'admin', '2023-09-23 16:13:06', '2021-08-26 19:29:54', 'fpndelhuns', '积木报表', '0', NULL, 'select * from rep_demo_dxtj', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '1', '0', 'c2d3898bde3b92fca22a4ad44dbcf6fa', 'mysql', '', '');
|
|
|
|
|
INSERT INTO `jimu_report_db` VALUES ('865474415198044160', '865474415168684032', 'admin', 'admin', '2023-09-23 16:13:11', '2023-08-12 22:51:28', 'uduqvrotru', 'tt', '1', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'http://api.jeecg.com/mock/26/baobiao/ygtj?pageNo=1&pageSize=1000', '0', '1', '1', '', NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db` VALUES ('873354437585895424', '873354273768964096', 'admin', 'admin', '2023-10-16 16:51:45', '2023-10-16 16:51:45', 'sql01', 'sql01', '0', NULL, 'select * from jimu_dict', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '1', '1', '', 'mysql', '', '');
|
|
|
|
|
INSERT INTO `jimu_report_db` VALUES ('873819810382794752', '873819673753341952', 'admin', NULL, '2023-10-16 16:54:48', '2023-10-16 16:54:48', 'sql01', 'sql01', '0', NULL, 'select * from jimu_dict', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '1', '1', '', 'mysql', '', '');
|
|
|
|
|
INSERT INTO `jimu_report_db` VALUES ('873821948353761280', '873821884776501248', 'admin', NULL, '2023-10-16 17:03:18', '2023-10-16 17:03:18', 'ss', 'ss', '0', NULL, 'select * from jimu_dict', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '1', '1', '', 'mysql', '', '');
|
|
|
|
|
INSERT INTO `jimu_report_db` VALUES ('873822325962756096', '873822238519906304', 'admin', 'admin', '2023-10-16 17:16:42', '2023-10-16 17:16:42', 'ss', 'ss', '0', NULL, 'select * from jimu_dict', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '1', '1', '', 'mysql', '', '');
|
|
|
|
|
INSERT INTO `jimu_report_db` VALUES ('876670636042276864', '876670635937419264', 'admin', 'admin', '2023-10-24 13:42:58', '2023-10-16 16:51:45', 'waahhtvchq', 'sql01', '0', NULL, 'select * from jimu_dict', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '1', '1', '', 'mysql', '', '');
|
|
|
|
|
INSERT INTO `jimu_report_db` VALUES ('876671164482637824', '876670635937419264', 'admin', NULL, '2023-10-24 13:45:04', '2023-10-24 13:45:04', 'ss', 'ss', '0', NULL, 'select * from tmp_report_data_income', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '1', '0', '', 'mysql', '', '');
|
|
|
|
|
INSERT INTO `jimu_report_db` VALUES ('876671521099141120', '876671520973312000', 'admin', 'admin', '2023-10-24 13:46:29', '2023-10-16 16:51:45', 'cusehpkouh', 'sql01', '0', NULL, 'select * from jimu_dict', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '1', '1', '', 'mysql', '', '');
|
|
|
|
|
INSERT INTO `jimu_report_db` VALUES ('876671521283690496', '876671520973312000', 'admin', 'admin', '2023-12-04 18:56:40', '2023-12-04 18:56:40', 'zdlortpuzn', 'ss', '0', NULL, 'select * from tmp_report_data_income', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '1', '0', '', 'mysql', '', '');
|
2023-09-08 16:18:56 +00:00
|
|
|
|
INSERT INTO `jimu_report_db` VALUES ('87a440b35fd656844484774c66a7370c', '7c02c224a2db56d0350069650033f702', 'admin', NULL, '2021-02-02 18:13:04', '2021-02-02 18:13:04', 'hecha', 'hecha', '1', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'http://api.jeecg.com/mock/26/hecha', '0', '1', '0', '', NULL, NULL, NULL);
|
2024-02-18 11:29:58 +00:00
|
|
|
|
INSERT INTO `jimu_report_db` VALUES ('891607755638538240', '891607513627197440', 'admin', 'admin', '2023-12-04 19:04:06', '2023-12-04 19:04:06', 'test_search', '测试查询条件', '0', NULL, 'SELECT\n zs.title 需求名称,\n zs.pri 需求优先级,\n (\n CASE zs. STATUS\n WHEN \'draft\' THEN\n \'草稿\'\n WHEN \'active\' THEN\n \'激活\'\n WHEN \'closed\' THEN\n \'已关闭\'\n WHEN \'changed\' THEN\n \'已变更\'\n END\n ) 当前状态,\n (\n CASE zs.stage\n WHEN \'wait\' THEN\n \'未开始\'\n WHEN \'planned\' THEN\n \'已计划\'\n WHEN \'projected\' THEN\n \'已立项\'\n WHEN \'developing\' THEN\n \'研发中\'\n WHEN \'developed\' THEN\n \'研发完毕\'\n WHEN \'testing\' THEN\n \'测试中\'\n WHEN \'tested\' THEN\n \'测试完毕\'\n WHEN \'verified\' THEN\n \'已验收\'\n WHEN \'released\' THEN\n \'已发布\'\n WHEN \'closed\' THEN\n \'已关闭\'\n END\n ) 所处阶段\nFROM\n zt_story zs', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '1', '1', '891608958816583680', 'mysql', '', '');
|
|
|
|
|
INSERT INTO `jimu_report_db` VALUES ('891612821867036672', '891612623430320128', 'admin', NULL, '2023-12-04 19:17:52', '2023-12-04 19:17:52', 's1', '查询测试例子', '0', NULL, 'select * from rep_demo_dxtj', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '1', '1', '', 'mysql', '', '');
|
2023-09-08 16:18:56 +00:00
|
|
|
|
INSERT INTO `jimu_report_db` VALUES ('9a8f0f16cf42380df58cda0171a56c0c', '1369170965166166016', 'admin', NULL, '2021-03-11 19:45:39', '2021-03-11 19:45:39', 'tt', 'tt', '1', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'http://api.jeecg.com/mock/26/baobiao/ygtj?pageNo=\'${pageNo}\'&pageSize=\'${pageSize}\'', '0', '1', '1', '', NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db` VALUES ('9b7d28336b01f9a6b1a613957c3d7cda', '1338769064067076098', 'admin', 'admin', '2021-07-31 13:25:44', '2021-07-31 13:25:44', 'pop', 'pop', '0', NULL, 'select * from rep_demo_dxtj', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '1', '0', 'c2d3898bde3b92fca22a4ad44dbcf6fa', 'mysql', NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db` VALUES ('a900c843827dd08339a643aa0cf4305f', '1351736257377603584', 'admin', NULL, '2021-03-10 09:54:22', '2021-03-10 09:54:22', 'xb', 'xb', '1', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'https://bootapi.jeecg.com/jmreport/test/getUserMsg?cname=\'${cname}\'&riqi=\'${riqi}\'', '0', '1', '0', '', NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db` VALUES ('a98ee8179bef12f8fa2e0f9f3237fb83', '1356492523694067712', 'admin', NULL, '2021-02-02 16:19:03', '2021-02-02 16:19:03', 'leida', 'leida', '1', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'http://api.jeecg.com/mock/26/btchanquan', '0', '0', '0', '', NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db` VALUES ('b0f04c0f50a659f99c8aebe6efb93682', '1350035590569136128', 'admin', NULL, '2021-03-09 14:13:26', '2021-03-09 14:13:26', 'uiu', 'uiu', '1', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'http://api.jeecg.com/mock/26/baobiao/ygtj?pageSize=\'${pageSize}\'&pageNo=\'${pageNo}\'', '0', '1', '1', '', NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db` VALUES ('c73e1f3325b926081641d918921d2bcd', '1339859143477039104', 'admin', 'admin', '2023-08-12 17:17:13', '2023-08-12 17:17:13', 'ditu', 'ditu', '0', NULL, 'select * from huiyuan_wxtl', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0', '0', 'c2d3898bde3b92fca22a4ad44dbcf6fa', 'mysql', NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db` VALUES ('cf2211ad6777007564fba0c47b417eb5', '1351426064915763200', '18204219775', NULL, '2021-02-22 17:01:25', '2021-02-22 17:01:25', 'tt', 'tt', '1', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'http://api.jeecg.com/mock/26/quyuxiaoshou1', '0', '1', '0', '', NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db` VALUES ('d7d5ac3cc4e6ee4e42752176774e6ef0', '1338370016550195200', 'admin', NULL, '2021-03-09 14:10:39', '2021-03-09 14:10:39', 'tm', 'tiaoma1', '1', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'http://api.jeecg.com/mock/26/tiaoma1', '0', '0', '0', '', NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db` VALUES ('f2e0f5cbc64aa1e676ac1291203ff7c8', 'b35e8d615b4e408e49dbf36805d3641c', 'admin', 'admin', '2021-07-31 13:27:27', '2021-07-31 13:27:27', 'pop', 'pop', '0', NULL, 'select * from rep_demo_dxtj', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '1', '0', 'c2d3898bde3b92fca22a4ad44dbcf6fa', 'mysql', NULL, NULL);
|
2021-10-11 09:50:19 +00:00
|
|
|
|
INSERT INTO `jimu_report_db` VALUES ('f7649b77cfc9e0a9dacdac370cd4036b', '1347373863746539520', 'admin', NULL, '2021-01-08 10:47:52', '2021-01-08 10:47:52', 'tt', 'tt', '1', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'http://api.jeecg.com/mock/26/baobiao/shixi', '0', '0', '0', '', NULL, NULL, NULL);
|
2023-09-08 16:18:56 +00:00
|
|
|
|
|
2021-06-23 03:13:11 +00:00
|
|
|
|
-- ----------------------------
|
|
|
|
|
-- Table structure for jimu_report_db_field
|
|
|
|
|
-- ----------------------------
|
|
|
|
|
DROP TABLE IF EXISTS `jimu_report_db_field`;
|
|
|
|
|
CREATE TABLE `jimu_report_db_field` (
|
|
|
|
|
`id` varchar(36) CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL COMMENT 'id',
|
|
|
|
|
`create_by` varchar(50) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '创建人登录名称',
|
|
|
|
|
`create_time` datetime NULL DEFAULT NULL COMMENT '创建日期',
|
|
|
|
|
`update_by` varchar(50) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '更新人登录名称',
|
|
|
|
|
`update_time` datetime NULL DEFAULT NULL COMMENT '更新日期',
|
|
|
|
|
`jimu_report_db_id` varchar(32) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '数据源ID',
|
|
|
|
|
`field_name` varchar(80) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '字段名',
|
|
|
|
|
`field_text` varchar(50) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '字段文本',
|
|
|
|
|
`widget_type` varchar(50) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '控件类型',
|
|
|
|
|
`widget_width` int(10) NULL DEFAULT NULL COMMENT '控件宽度',
|
|
|
|
|
`order_num` int(3) NULL DEFAULT NULL COMMENT '排序',
|
|
|
|
|
`search_flag` int(3) NULL DEFAULT 0 COMMENT '查询标识0否1是 默认0',
|
|
|
|
|
`search_mode` int(3) NULL DEFAULT NULL COMMENT '查询模式1简单2范围',
|
|
|
|
|
`dict_code` varchar(255) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '字典编码支持从表中取数据',
|
|
|
|
|
`search_value` varchar(100) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '查询默认值',
|
2021-10-11 09:50:19 +00:00
|
|
|
|
`search_format` varchar(50) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '查询时间格式化表达式',
|
|
|
|
|
`ext_json` text CHARACTER SET utf8 COLLATE utf8_general_ci NULL COMMENT '参数配置',
|
2021-06-23 03:13:11 +00:00
|
|
|
|
PRIMARY KEY (`id`) USING BTREE,
|
2021-10-11 09:50:19 +00:00
|
|
|
|
INDEX `idx_jrdf_jimu_report_db_id`(`jimu_report_db_id`) USING BTREE,
|
|
|
|
|
INDEX `idx_dbfield_order_num`(`order_num`) USING BTREE
|
2022-12-07 13:22:18 +00:00
|
|
|
|
) ENGINE = InnoDB CHARACTER SET = utf8 COLLATE = utf8_general_ci ROW_FORMAT = DYNAMIC;
|
2021-06-23 03:13:11 +00:00
|
|
|
|
|
|
|
|
|
-- ----------------------------
|
|
|
|
|
-- Records of jimu_report_db_field
|
|
|
|
|
-- ----------------------------
|
2023-09-08 16:18:56 +00:00
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('00a5a516fd9ab1ec5ea5cb4c46645345', NULL, '2021-01-15 15:42:03', NULL, NULL, '1316987047604514817', 'gdata', 'gdata', 'String', NULL, 14, 0, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('0117b382e2b837b8ea73ca9998fb2b52', 'admin', '2023-08-12 17:16:00', NULL, NULL, '1316997232402231298', 'sex', 'sex', NULL, NULL, 4, 0, NULL, 'sex1', NULL, NULL, NULL);
|
2021-10-11 09:50:19 +00:00
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('01cb1f61f836aae43bca333dbaf293be', NULL, '2021-01-11 14:38:14', NULL, NULL, '1317006713165049858', 'zhuanye', 'zhuanye', 'String', NULL, 4, 0, NULL, NULL, NULL, NULL, NULL);
|
2023-09-08 16:18:56 +00:00
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('03f7a833df1da1b3cb4e4b6310c322ea', 'admin', '2023-08-12 17:16:00', NULL, NULL, '1316997232402231298', 'phone', 'phone', NULL, NULL, 19, 0, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('04c56aa9c4331e28344edb1dbea32611', 'admin', '2023-08-12 17:16:00', NULL, NULL, '1316997232402231298', 'zip_code', 'zip_code', NULL, NULL, 17, 0, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('04de3a3ed51b93a78f83eb00d1c15d7e', NULL, '2021-03-09 14:20:07', NULL, NULL, '9a8f0f16cf42380df58cda0171a56c0c', 'salary', 'salary', 'String', NULL, 6, 0, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('0512e6b67dcd14a003139e586625cf4c', 'admin', '2021-07-31 13:27:27', NULL, NULL, 'f2e0f5cbc64aa1e676ac1291203ff7c8', 'jphone', '手机号', 'string', NULL, 5, 0, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('05935b26017e51a1d7cdd8f6ef22239b', 'admin', '2021-07-31 13:27:27', NULL, NULL, 'f2e0f5cbc64aa1e676ac1291203ff7c8', 'hukou', 'hukou', 'String', NULL, 7, 0, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('06c95d6691bd89f8270c9419d60be40f', 'admin', '2021-07-31 13:27:27', NULL, NULL, 'f2e0f5cbc64aa1e676ac1291203ff7c8', 'sex', '性别', 'String', NULL, 10, 0, 1, 'https://bootapi.jeecg.com/jmreport/test/getDictSex', NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('071f7ae5fdc2d1f0d5abb4df160ef941', 'admin', '2023-08-12 17:16:00', NULL, NULL, '1316997232402231298', 'native_place', 'native_place', NULL, NULL, 8, 0, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('0767fe614b80b0f16a91118f7a5fe6ff', 'admin', '2023-08-12 17:16:00', NULL, NULL, '1316997232402231298', 'education', 'education', NULL, NULL, 13, 0, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('07bfb86f430e4352a40d613f17d8180e', NULL, '2021-01-26 14:51:12', NULL, NULL, 'a900c843827dd08339a643aa0cf4305f', 'riqi', '日期', 'date', NULL, 4, 1, NULL, NULL, NULL, NULL, NULL);
|
2021-10-11 09:50:19 +00:00
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('0c82931edb766ad89ead9e98a998d43f', NULL, '2021-01-11 14:38:14', NULL, NULL, '1317006713165049858', 'kdate', 'kdate', 'String', NULL, 1, 0, NULL, NULL, NULL, NULL, NULL);
|
2023-09-08 16:18:56 +00:00
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('0e45b3f9bbab3e42aa8d07ef858bcb6d', 'admin', '2023-08-12 17:17:13', NULL, NULL, 'c73e1f3325b926081641d918921d2bcd', 'name', 'name', 'String', NULL, 2, 0, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('0e83f895e00d1ab8e1f24064693be295', 'admin', '2023-08-12 17:16:00', NULL, NULL, '1316997232402231298', 'foreign_language_level', 'foreign_language_level', NULL, NULL, 21, 0, NULL, NULL, NULL, NULL, NULL);
|
2021-10-11 09:50:19 +00:00
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('0fb03c8e2330e051564f3dd1de54512f', NULL, '2021-01-11 14:38:14', NULL, NULL, '1317006713165049858', 'jstudent', 'jstudent', 'String', NULL, 3, 0, NULL, NULL, NULL, NULL, NULL);
|
2023-09-08 16:18:56 +00:00
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('112e9074d229f8f90b79da89197fbd91', NULL, '2021-02-02 17:15:44', NULL, NULL, 'd7d5ac3cc4e6ee4e42752176774e6ef0', 'sdate', 'sdate', 'String', NULL, 12, 0, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('11b32385558d4e6a92d69a72264c1ade', NULL, '2021-02-04 09:44:09', NULL, NULL, '1283730831482937345', 'key3', 'key3', 'String', NULL, 5, 0, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('1272834907562864641', 'admin', '2022-12-08 15:49:50', NULL, NULL, '1272834687525482497', 'id', 'id', 'string', NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('1272834907567058946', 'admin', '2022-12-08 15:49:50', NULL, NULL, '1272834687525482497', 'bnum', 'bnum', 'string', NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('1272834907571253250', 'admin', '2022-12-08 15:49:50', NULL, NULL, '1272834687525482497', 'ftime', 'ftime', 'string', NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('1272834907571253251', 'admin', '2022-12-08 15:49:50', NULL, NULL, '1272834687525482497', 'sfkong', 'sfkong', 'string', NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('1272834907571253252', 'admin', '2022-12-08 15:49:50', NULL, NULL, '1272834687525482497', 'kaishi', 'kaishi', 'string', NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('1272834907571253253', 'admin', '2022-12-08 15:49:50', NULL, NULL, '1272834687525482497', 'jieshu', 'jieshu', 'string', NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('1272834907571253254', 'admin', '2022-12-08 15:49:50', NULL, NULL, '1272834687525482497', 'hezairen', 'hezairen', 'string', NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('1272834907571253255', 'admin', '2022-12-08 15:49:50', NULL, NULL, '1272834687525482497', 'jpnum', 'jpnum', 'string', NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('1272834907575447554', 'admin', '2022-12-08 15:49:50', NULL, NULL, '1272834687525482497', 'shihelv', 'shihelv', 'string', NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL);
|
2021-10-11 09:50:19 +00:00
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('1283957016175415297', NULL, '2020-07-17 10:49:42', NULL, NULL, '1283957016150249473', 'yphone', 'yphone', NULL, NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('1283957016183803906', NULL, '2020-07-17 10:49:42', NULL, NULL, '1283957016150249473', 'yzhenliao', 'yzhenliao', NULL, NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('1283957016187998209', NULL, '2020-07-17 10:49:42', NULL, NULL, '1283957016150249473', 'ysex', 'ysex', NULL, NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('1283957016192192513', NULL, '2020-07-17 10:49:42', NULL, NULL, '1283957016150249473', 'danwei', 'danwei', NULL, NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('1283957016196386818', NULL, '2020-07-17 10:49:42', NULL, NULL, '1283957016150249473', 'kdata', 'kdata', NULL, NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('1283957016204775425', NULL, '2020-07-17 10:49:42', NULL, NULL, '1283957016150249473', 'yname', 'yname', NULL, NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('1283957016208969729', NULL, '2020-07-17 10:49:42', NULL, NULL, '1283957016150249473', 'yprice', 'yprice', NULL, NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('1283957016213164033', NULL, '2020-07-17 10:49:42', NULL, NULL, '1283957016150249473', 'ytotal', 'ytotal', NULL, NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('1283957016217358337', NULL, '2020-07-17 10:49:42', NULL, NULL, '1283957016150249473', 'yishe', 'yishe', NULL, NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('1283957016221552641', NULL, '2020-07-17 10:49:42', NULL, NULL, '1283957016150249473', 'yizhu', 'yizhu', NULL, NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('1283957016225746946', NULL, '2020-07-17 10:49:42', NULL, NULL, '1283957016150249473', 'yage', 'yage', NULL, NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('1283957016229941249', NULL, '2020-07-17 10:49:42', NULL, NULL, '1283957016150249473', 'yjieguo', 'yjieguo', NULL, NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('1285150155649130497', NULL, '2020-07-20 17:50:49', NULL, NULL, '1284070508744257537', 'xtype', 'xtype', 'string', NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('1285150155686879234', NULL, '2020-07-20 17:50:49', NULL, NULL, '1284070508744257537', 'danyuan', 'danyuan', 'string', NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('1285150155691073538', NULL, '2020-07-20 17:50:49', NULL, NULL, '1284070508744257537', 'chanquan', 'chanquan', 'string', NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('1285150155695267841', NULL, '2020-07-20 17:50:49', NULL, NULL, '1284070508744257537', 'zhuzhi', 'zhuzhi', 'string', NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('1285150155699462145', NULL, '2020-07-20 17:50:49', NULL, NULL, '1284070508744257537', 'fujian', 'fujian', 'string', NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('1285150155707850754', NULL, '2020-07-20 17:50:49', NULL, NULL, '1284070508744257537', 'didian', 'didian', 'string', NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('1285150155707850755', NULL, '2020-07-20 17:50:49', NULL, NULL, '1284070508744257537', 'type', 'type', 'string', NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('1285150155712045058', NULL, '2020-07-20 17:50:49', NULL, NULL, '1284070508744257537', 'suoyou', 'suoyou', 'string', NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('1285150155716239361', NULL, '2020-07-20 17:50:49', NULL, NULL, '1284070508744257537', 'name', 'name', 'string', NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('1285150155716239362', NULL, '2020-07-20 17:50:49', NULL, NULL, '1284070508744257537', 'bianhao', 'bianhao', 'string', NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('1285150155720433666', NULL, '2020-07-20 17:50:49', NULL, NULL, '1284070508744257537', 'yname', 'yname', 'string', NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('1285150155720433667', NULL, '2020-07-20 17:50:49', NULL, NULL, '1284070508744257537', 'riqi', 'riqi', 'string', NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('1285150155724627969', NULL, '2020-07-20 17:50:49', NULL, NULL, '1284070508744257537', 'beizhu', 'beizhu', 'string', NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('1285150155728822274', NULL, '2020-07-20 17:50:49', NULL, NULL, '1284070508744257537', 'time', 'time', 'string', NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('1285150155728822275', NULL, '2020-07-20 17:50:49', NULL, NULL, '1284070508744257537', 'mianji', 'mianji', 'string', NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('1285164420749664258', NULL, '2020-07-20 18:47:30', NULL, NULL, '1285164420728692737', 'shiqing', 'shiqing', 'string', NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('1285164420753858561', NULL, '2020-07-20 18:47:30', NULL, NULL, '1285164420728692737', 'name', 'name', 'string', NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('1285164420758052866', NULL, '2020-07-20 18:47:30', NULL, NULL, '1285164420728692737', 'gdata', 'gdata', 'string', NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('1285164420758052867', NULL, '2020-07-20 18:47:30', NULL, NULL, '1285164420728692737', 'value', 'value', 'string', NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('1285164420758052868', NULL, '2020-07-20 18:47:30', NULL, NULL, '1285164420728692737', 'percent', 'percent', 'string', NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('1285164420762247169', NULL, '2020-07-20 18:47:30', NULL, NULL, '1285164420728692737', 'tdata', 'tdata', 'string', NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('1285178919124803585', NULL, '2020-07-20 19:45:06', NULL, NULL, '1285178919099637762', 'ktime', 'ktime', 'string', NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('1285178919133192193', NULL, '2020-07-20 19:45:06', NULL, NULL, '1285178919099637762', 'danwei', 'danwei', 'string', NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('1285178919133192194', NULL, '2020-07-20 19:45:06', NULL, NULL, '1285178919099637762', 'wtime', 'wtime', 'string', NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('1285178919133192195', NULL, '2020-07-20 19:45:06', NULL, NULL, '1285178919099637762', 'yusuan', 'yusuan', 'string', NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('1285178919133192196', NULL, '2020-07-20 19:45:06', NULL, NULL, '1285178919099637762', 'dshenhe', 'dshenhe', 'string', NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('1285178919133192197', NULL, '2020-07-20 19:45:06', NULL, NULL, '1285178919099637762', 'zhuren', 'zhuren', 'string', NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('1285178919137386498', NULL, '2020-07-20 19:45:06', NULL, NULL, '1285178919099637762', 'neirong', 'neirong', 'string', NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('1285178919137386499', NULL, '2020-07-20 19:45:06', NULL, NULL, '1285178919099637762', 'yijian', 'yijian', 'string', NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('1285178919137386500', NULL, '2020-07-20 19:45:06', NULL, NULL, '1285178919099637762', 'time1', 'time1', 'string', NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('1285178919137386501', NULL, '2020-07-20 19:45:06', NULL, NULL, '1285178919099637762', 'time2', 'time2', 'string', NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('1285178919137386502', NULL, '2020-07-20 19:45:06', NULL, NULL, '1285178919099637762', 'time3', 'time3', 'string', NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('1285178919141580801', NULL, '2020-07-20 19:45:06', NULL, NULL, '1285178919099637762', 'time4', 'time4', 'string', NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('1285178919141580802', NULL, '2020-07-20 19:45:06', NULL, NULL, '1285178919099637762', 'pingjia', 'pingjia', 'string', NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('1285178919141580803', NULL, '2020-07-20 19:45:06', NULL, NULL, '1285178919099637762', 'name', 'name', 'string', NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('1285178919141580804', NULL, '2020-07-20 19:45:06', NULL, NULL, '1285178919099637762', 'bianhao', 'bianhao', 'string', NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('1285178919141580805', NULL, '2020-07-20 19:45:06', NULL, NULL, '1285178919099637762', 'zongjie', 'zongjie', 'string', NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('1285178919145775105', NULL, '2020-07-20 19:45:06', NULL, NULL, '1285178919099637762', 'nengli', 'nengli', 'string', NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('1285178919145775106', NULL, '2020-07-20 19:45:06', NULL, NULL, '1285178919099637762', 'time', 'time', 'string', NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL);
|
2023-09-08 16:18:56 +00:00
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('1288038655394324482', NULL, '2020-07-28 17:08:41', NULL, NULL, '1288038655293661186', 'ctotal', '库存量', 'string', NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('1288038655402713090', NULL, '2020-07-28 17:08:41', NULL, NULL, '1288038655293661186', 'cname', '产品名称', 'string', NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('1288038655406907393', NULL, '2020-07-28 17:08:41', NULL, NULL, '1288038655293661186', 'cprice', '单价', 'string', NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('1288038655411101697', NULL, '2020-07-28 17:08:41', NULL, NULL, '1288038655293661186', 'dtotal', '订购量', 'string', NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('1288038655411101698', NULL, '2020-07-28 17:08:41', NULL, NULL, '1288038655293661186', 'tp', '库存总值', 'string', NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('1288038655415296002', NULL, '2020-07-28 17:08:41', NULL, NULL, '1288038655293661186', 'ztotal', '二次订购量', 'string', NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('1288038655415296003', NULL, '2020-07-28 17:08:41', NULL, NULL, '1288038655293661186', 'cnum', '产品数量', 'string', NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('1290104038439886849', 'admin', '2021-07-31 13:21:46', NULL, NULL, '1290104038414721025', 'id', 'id', 'string', NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('1290104038448275458', 'admin', '2021-07-31 13:21:46', NULL, NULL, '1290104038414721025', 'gname', 'gname', 'string', NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('1290104038448275459', 'admin', '2021-07-31 13:21:46', NULL, NULL, '1290104038414721025', 'gdata', 'gdata', 'string', NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('1290104038448275460', 'admin', '2021-07-31 13:21:46', NULL, NULL, '1290104038414721025', 'tdata', 'tdata', 'string', NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('1290104038452469761', 'admin', '2021-07-31 13:21:46', NULL, NULL, '1290104038414721025', 'didian', 'didian', 'string', NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('1290104038452469762', 'admin', '2021-07-31 13:21:46', NULL, NULL, '1290104038414721025', 'zhaiyao', 'zhaiyao', 'string', NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('1290104038452469763', 'admin', '2021-07-31 13:21:46', NULL, NULL, '1290104038414721025', 'num', 'num', 'string', NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('1298923644113653761', NULL, '2020-08-27 18:01:44', NULL, NULL, '1298923644105265153', 'education', 'education', 'string', NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('1298923644117848065', NULL, '2020-08-27 18:01:44', NULL, NULL, '1298923644105265153', 'sex', 'sex', 'string', NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('1298923644117848066', NULL, '2020-08-27 18:01:44', NULL, NULL, '1298923644105265153', 'name', 'name', 'string', NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('1298923644117848067', NULL, '2020-08-27 18:01:44', NULL, NULL, '1298923644105265153', 'department', 'department', 'string', NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('1298923644117848068', NULL, '2020-08-27 18:01:44', NULL, NULL, '1298923644105265153', 'salary', 'salary', 'string', NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('1298923644117848069', NULL, '2020-08-27 18:01:44', NULL, NULL, '1298923644105265153', 'age', 'age', 'string', NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL);
|
2021-10-11 09:50:19 +00:00
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('1317007979534479361', NULL, '2020-10-16 15:42:26', NULL, NULL, '1317007979484147714', 'zmphone', 'zmphone', 'string', NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('1317007979534479362', NULL, '2020-10-16 15:42:26', NULL, NULL, '1317007979484147714', 'jstudent', 'jstudent', 'string', NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('1317007979534479363', NULL, '2020-10-16 15:42:26', NULL, NULL, '1317007979484147714', 'kdate', 'kdate', 'string', NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('1317007979534479364', NULL, '2020-10-16 15:42:26', NULL, NULL, '1317007979484147714', 'jdate', 'jdate', 'string', NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('1317007979534479365', NULL, '2020-10-16 15:42:26', NULL, NULL, '1317007979484147714', 'zmname', 'zmname', 'string', NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('1317009166149218305', NULL, '2020-10-16 15:47:09', NULL, NULL, '1317009166140829698', 'zcname', 'zcname', 'string', NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('1317009166149218306', NULL, '2020-10-16 15:47:09', NULL, NULL, '1317009166140829698', 'danwei', 'danwei', 'string', NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('1317009166149218307', NULL, '2020-10-16 15:47:09', NULL, NULL, '1317009166140829698', 'fdate', 'fdate', 'string', NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('1317009166149218308', NULL, '2020-10-16 15:47:09', NULL, NULL, '1317009166140829698', 'jibie', 'jibie', 'string', NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('1317009166149218309', NULL, '2020-10-16 15:47:09', NULL, NULL, '1317009166140829698', 'beizhu', 'beizhu', 'string', NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('1317013474643144706', NULL, '2020-10-16 16:04:16', NULL, NULL, '1317013474634756097', 'danwei', 'danwei', 'string', NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('1317013474643144707', NULL, '2020-10-16 16:04:16', NULL, NULL, '1317013474634756097', 'phone', 'phone', 'string', NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('1317013474643144708', NULL, '2020-10-16 16:04:16', NULL, NULL, '1317013474634756097', 'name', 'name', 'string', NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('1317013474643144709', NULL, '2020-10-16 16:04:16', NULL, NULL, '1317013474634756097', 'zzmm', 'zzmm', 'string', NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('1317013474643144710', NULL, '2020-10-16 16:04:16', NULL, NULL, '1317013474634756097', 'guanxi', 'guanxi', 'string', NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('1317013474643144711', NULL, '2020-10-16 16:04:16', NULL, NULL, '1317013474634756097', 'age', 'age', 'string', NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('1317015169502670849', NULL, '2020-10-16 16:11:00', NULL, NULL, '1317015169494282241', 'date', 'date', 'string', NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('1317015169502670850', NULL, '2020-10-16 16:11:00', NULL, NULL, '1317015169494282241', 'mingcheng', 'mingcheng', 'string', NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('1317015169502670851', NULL, '2020-10-16 16:11:00', NULL, NULL, '1317015169494282241', 'didian', 'didian', 'string', NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL);
|
2023-09-08 16:18:56 +00:00
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('1331447376279285763', NULL, '2020-11-25 11:59:26', NULL, NULL, '1331447376279285762', 'name', 'name', 'String', NULL, 1, 0, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('1331447376287674369', NULL, '2020-11-25 11:59:26', NULL, NULL, '1331447376279285762', 'value', 'value', 'String', NULL, 2, 0, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('1331447376287674370', NULL, '2020-11-25 11:59:26', NULL, NULL, '1331447376279285762', 'type', 'type', 'String', NULL, 3, 0, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('1331479590526300162', NULL, '2020-11-25 14:07:27', NULL, NULL, '1331474698436915202', 'name', 'name', 'String', NULL, 1, 0, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('1331479590526300163', NULL, '2020-11-25 14:07:27', NULL, NULL, '1331474698436915202', 'value', 'value', 'String', NULL, 2, 0, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('1331479590526300164', NULL, '2020-11-25 14:07:27', NULL, NULL, '1331474698436915202', 'type', 'type', 'String', NULL, 3, 0, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('1331483873669853186', NULL, '2020-11-25 14:24:28', NULL, NULL, '1331483873661464578', 'name', 'name', 'String', NULL, 1, 0, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('1331483873669853187', NULL, '2020-11-25 14:24:28', NULL, NULL, '1331483873661464578', 'value', 'value', 'String', NULL, 2, 0, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('1331486475249823745', NULL, '2020-11-25 14:34:48', NULL, NULL, '1331486475245629441', 'name', 'name', 'String', NULL, 1, 0, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('1331486475249823746', NULL, '2020-11-25 14:34:48', NULL, NULL, '1331486475245629441', 'value', 'value', 'String', NULL, 2, 0, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('1331491961407844353', NULL, '2020-11-25 14:56:36', NULL, NULL, '1331491194517106690', 'name', 'name', 'String', NULL, 1, 0, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('1331491961412038658', NULL, '2020-11-25 14:56:36', NULL, NULL, '1331491194517106690', 'value', 'value', 'String', NULL, 2, 0, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('1331493951017889794', NULL, '2020-11-25 15:04:31', NULL, NULL, '1331493951013695490', 'name', 'name', 'String', NULL, 1, 0, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('1331493951017889795', NULL, '2020-11-25 15:04:31', NULL, NULL, '1331493951013695490', 'value', 'value', 'String', NULL, 2, 0, NULL, NULL, NULL, NULL, NULL);
|
2021-10-11 09:50:19 +00:00
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('1331511745855926274', NULL, '2020-11-25 16:15:13', NULL, NULL, '1331511745851731969', 'name', 'name', 'String', NULL, 1, 0, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('1331511745855926275', NULL, '2020-11-25 16:15:13', NULL, NULL, '1331511745851731969', 'value', 'value', 'String', NULL, 2, 0, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('1331511745855926276', NULL, '2020-11-25 16:15:13', NULL, NULL, '1331511745851731969', 'type', 'type', 'String', NULL, 3, 0, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('1331514838215602178', NULL, '2020-11-25 16:27:30', NULL, NULL, '1331514838211407873', 'name', 'name', 'String', NULL, 1, 0, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('1331514838215602179', NULL, '2020-11-25 16:27:30', NULL, NULL, '1331514838211407873', 'value', 'value', 'String', NULL, 2, 0, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('1331514838215602180', NULL, '2020-11-25 16:27:30', NULL, NULL, '1331514838211407873', 'type', 'type', 'String', NULL, 3, 0, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('1331514935032721409', NULL, '2020-11-25 16:27:54', NULL, NULL, '1331514935028527106', 'name', 'name', 'String', NULL, 1, 0, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('1331514935032721410', NULL, '2020-11-25 16:27:54', NULL, NULL, '1331514935028527106', 'value', 'value', 'String', NULL, 2, 0, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('1331514935032721411', NULL, '2020-11-25 16:27:54', NULL, NULL, '1331514935028527106', 'type', 'type', 'String', NULL, 3, 0, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('1331872643539914754', NULL, '2020-11-26 16:09:18', NULL, NULL, '1331872643531526146', 'name', 'name', 'String', NULL, 1, 0, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('1331872643539914755', NULL, '2020-11-26 16:09:18', NULL, NULL, '1331872643531526146', 'value', 'value', 'String', NULL, 2, 0, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('1331872643539914756', NULL, '2020-11-26 16:09:18', NULL, NULL, '1331872643531526146', 'type', 'type', 'String', NULL, 3, 0, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('1331878107560398849', NULL, '2020-11-26 16:31:01', NULL, NULL, '1331878107552010242', 'name', 'name', 'String', NULL, 1, 0, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('1331878107560398850', NULL, '2020-11-26 16:31:01', NULL, NULL, '1331878107552010242', 'value', 'value', 'String', NULL, 2, 0, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('1331916030229991425', NULL, '2020-11-26 19:01:42', NULL, NULL, '1331916030221602818', 'name', 'name', 'String', NULL, 1, 0, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('1331916030229991426', NULL, '2020-11-26 19:01:42', NULL, NULL, '1331916030221602818', 'value', 'value', 'String', NULL, 2, 0, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('1331916030229991427', NULL, '2020-11-26 19:01:42', NULL, NULL, '1331916030221602818', 'type', 'type', 'String', NULL, 3, 0, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('1331919172480913409', NULL, '2020-11-26 19:14:11', NULL, NULL, '1331919172472524801', 'name', 'name', 'String', NULL, 1, 0, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('1331919172480913410', NULL, '2020-11-26 19:14:11', NULL, NULL, '1331919172472524801', 'value', 'value', 'String', NULL, 2, 0, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('1331922734942375938', NULL, '2020-11-26 19:28:21', NULL, NULL, '1331922734933987329', 'name', 'name', 'String', NULL, 1, 0, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('1331922734942375939', NULL, '2020-11-26 19:28:21', NULL, NULL, '1331922734933987329', 'value', 'value', 'String', NULL, 2, 0, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('1331926127605829634', NULL, '2020-11-26 19:41:49', NULL, NULL, '1331926127597441025', 'cjl', 'cjl', 'String', NULL, 1, 0, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('1331926127605829635', NULL, '2020-11-26 19:41:49', NULL, NULL, '1331926127597441025', 'cjje', 'cjje', 'String', NULL, 2, 0, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('1331926127605829636', NULL, '2020-11-26 19:41:49', NULL, NULL, '1331926127597441025', 'xsmj', 'xsmj', 'String', NULL, 3, 0, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('1331926127605829637', NULL, '2020-11-26 19:41:49', NULL, NULL, '1331926127597441025', 'cjjj', 'cjjj', 'String', NULL, 4, 0, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('1331926127605829638', NULL, '2020-11-26 19:41:49', NULL, NULL, '1331926127597441025', 'sfyj', 'sfyj', 'String', NULL, 5, 0, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('1331926127605829639', NULL, '2020-11-26 19:41:49', NULL, NULL, '1331926127597441025', 'ydkh', 'ydkh', 'String', NULL, 6, 0, NULL, NULL, NULL, NULL, NULL);
|
2023-09-08 16:18:56 +00:00
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('1333970913154048002', NULL, '2020-12-02 11:07:04', NULL, NULL, '1333968597264900097', 'name', 'name', 'String', NULL, 1, 0, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('1333970913158242305', NULL, '2020-12-02 11:07:04', NULL, NULL, '1333968597264900097', 'value', 'value', 'String', NULL, 2, 0, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('1333970913158242306', NULL, '2020-12-02 11:07:04', NULL, NULL, '1333968597264900097', 'type', 'type', 'String', NULL, 3, 0, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('1333974073687941121', NULL, '2020-12-02 11:19:38', NULL, NULL, '1333974073679552514', 'name', 'name', 'String', NULL, 1, 0, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('1333974073687941122', NULL, '2020-12-02 11:19:38', NULL, NULL, '1333974073679552514', 'value', 'value', 'String', NULL, 2, 0, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('1333977108203970561', NULL, '2020-12-02 11:31:41', NULL, NULL, '1333977108195581953', 'name', 'name', 'String', NULL, 1, 0, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('1333977108203970562', NULL, '2020-12-02 11:31:41', NULL, NULL, '1333977108195581953', 'value', 'value', 'String', NULL, 2, 0, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('1333981011083534337', NULL, '2020-12-02 11:47:12', NULL, NULL, '1333980382663548929', 'name', 'name', 'String', NULL, 1, 0, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('1333981011087728641', NULL, '2020-12-02 11:47:12', NULL, NULL, '1333980382663548929', 'value', 'value', 'String', NULL, 2, 0, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('1333981011087728642', NULL, '2020-12-02 11:47:12', NULL, NULL, '1333980382663548929', 'type', 'type', 'String', NULL, 3, 0, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('1333983587250216961', NULL, '2020-12-02 11:57:26', NULL, NULL, '1333983587241828354', 'name', 'name', 'String', NULL, 1, 0, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('1333983587254411265', NULL, '2020-12-02 11:57:26', NULL, NULL, '1333983587241828354', 'value', 'value', 'String', NULL, 2, 0, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('1333983587254411266', NULL, '2020-12-02 11:57:26', NULL, NULL, '1333983587241828354', 'type', 'type', 'String', NULL, 3, 0, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('1334008609364779010', NULL, '2020-12-02 13:36:52', NULL, NULL, '1334008609356390402', 'name', 'name', 'String', NULL, 1, 0, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('1334008609364779011', NULL, '2020-12-02 13:36:52', NULL, NULL, '1334008609356390402', 'value', 'value', 'String', NULL, 2, 0, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('1334008609364779012', NULL, '2020-12-02 13:36:52', NULL, NULL, '1334008609356390402', 'type', 'type', 'String', NULL, 3, 0, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('1334013423217811457', NULL, '2020-12-02 13:56:00', NULL, NULL, '1334013423209422849', 'name', 'name', 'String', NULL, 1, 0, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('1334013423217811458', NULL, '2020-12-02 13:56:00', NULL, NULL, '1334013423209422849', 'value', 'value', 'String', NULL, 2, 0, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('1334037720057520130', NULL, '2020-12-02 15:32:32', NULL, NULL, '1334037720053325825', 'name', 'name', 'String', NULL, 1, 0, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('1334037720061714433', NULL, '2020-12-02 15:32:32', NULL, NULL, '1334037720053325825', 'value', 'value', 'String', NULL, 2, 0, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('1334039611348885506', NULL, '2020-12-02 15:40:03', NULL, NULL, '1334039611344691202', 'name', 'name', 'String', NULL, 1, 0, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('1334039611353079810', NULL, '2020-12-02 15:40:03', NULL, NULL, '1334039611344691202', 'value', 'value', 'String', NULL, 2, 0, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('1334043138255233026', NULL, '2020-12-02 15:54:04', NULL, NULL, '1334043138246844418', 'name', 'name', 'String', NULL, 1, 0, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('1334043138255233027', NULL, '2020-12-02 15:54:04', NULL, NULL, '1334043138246844418', 'value', 'value', 'String', NULL, 2, 0, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('1334043138255233028', NULL, '2020-12-02 15:54:04', NULL, NULL, '1334043138246844418', 'type', 'type', 'String', NULL, 3, 0, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('1334049545566298114', NULL, '2020-12-02 16:19:32', NULL, NULL, '1334049545562103810', 'name', 'name', 'String', NULL, 1, 0, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('1334049545570492418', NULL, '2020-12-02 16:19:32', NULL, NULL, '1334049545562103810', 'value', 'value', 'String', NULL, 2, 0, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('1334052375127662594', NULL, '2020-12-02 16:30:46', NULL, NULL, '1334052375119273986', 'name', 'name', 'String', NULL, 1, 0, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('1334052375127662595', NULL, '2020-12-02 16:30:46', NULL, NULL, '1334052375119273986', 'value', 'value', 'String', NULL, 2, 0, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('1334052375127662596', NULL, '2020-12-02 16:30:46', NULL, NULL, '1334052375119273986', 'type', 'type', 'String', NULL, 3, 0, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('1334058269185941505', NULL, '2020-12-02 16:54:12', NULL, NULL, '1334058269181747202', 'name', 'name', 'String', NULL, 1, 0, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('1334058269190135810', NULL, '2020-12-02 16:54:12', NULL, NULL, '1334058269181747202', 'value', 'value', 'String', NULL, 2, 0, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('1334060474139942914', NULL, '2020-12-02 17:02:57', NULL, NULL, '1334060474135748610', 'name', 'name', 'String', NULL, 1, 0, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('1334060474144137218', NULL, '2020-12-02 17:02:57', NULL, NULL, '1334060474135748610', 'value', 'value', 'String', NULL, 2, 0, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('1334063192938127362', NULL, '2020-12-02 17:13:46', NULL, NULL, '1334063192933933058', 'name', 'name', 'String', NULL, 1, 0, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('1334063192942321665', NULL, '2020-12-02 17:13:46', NULL, NULL, '1334063192933933058', 'value', 'value', 'String', NULL, 2, 0, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('1334063880170643458', NULL, '2020-12-02 17:16:29', NULL, NULL, '1334063880162254850', 'name', 'name', 'String', NULL, 1, 0, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('1334063880170643459', NULL, '2020-12-02 17:16:29', NULL, NULL, '1334063880162254850', 'value', 'value', 'String', NULL, 2, 0, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('1334068361952239617', NULL, '2020-12-02 17:34:18', NULL, NULL, '1334068361943851009', 'yname', 'yname', 'String', NULL, 1, 0, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('1334068361952239618', NULL, '2020-12-02 17:34:18', NULL, NULL, '1334068361943851009', 'ysex', 'ysex', 'String', NULL, 2, 0, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('1334068361952239619', NULL, '2020-12-02 17:34:18', NULL, NULL, '1334068361943851009', 'yage', 'yage', 'String', NULL, 3, 0, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('1334068361952239620', NULL, '2020-12-02 17:34:18', NULL, NULL, '1334068361943851009', 'danwei', 'danwei', 'String', NULL, 4, 0, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('1334083843619037185', NULL, '2020-12-02 18:35:49', NULL, NULL, '1334083843610648578', 'name', 'name', 'String', NULL, 1, 0, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('1334083843619037186', NULL, '2020-12-02 18:35:49', NULL, NULL, '1334083843610648578', 'value', 'value', 'String', NULL, 2, 0, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('1334107015609327618', NULL, '2020-12-02 20:07:54', NULL, NULL, '1334107015605133314', 'name', 'name', 'String', NULL, 1, 0, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('1334107015613521921', NULL, '2020-12-02 20:07:54', NULL, NULL, '1334107015605133314', 'sj', 'sj', 'String', NULL, 2, 0, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('1334107015613521922', NULL, '2020-12-02 20:07:54', NULL, NULL, '1334107015605133314', 'type', 'type', 'String', NULL, 3, 0, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('1334107015613521923', NULL, '2020-12-02 20:07:54', NULL, NULL, '1334107015605133314', 'je', 'je', 'String', NULL, 4, 0, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('1334107015613521924', NULL, '2020-12-02 20:07:54', NULL, NULL, '1334107015605133314', 'jg', 'jg', 'String', NULL, 5, 0, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('1334107015613521925', NULL, '2020-12-02 20:07:54', NULL, NULL, '1334107015605133314', 'jl', 'jl', 'String', NULL, 6, 0, NULL, NULL, NULL, NULL, NULL);
|
2021-10-11 09:50:19 +00:00
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('1334440263740825602', NULL, '2020-12-03 18:12:06', NULL, NULL, '1334440263732436994', 'class', 'class', 'String', NULL, 1, 0, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('1334440263740825603', NULL, '2020-12-03 18:12:06', NULL, NULL, '1334440263732436994', 'school', 'school', 'String', NULL, 2, 0, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('1334440263740825604', NULL, '2020-12-03 18:12:06', NULL, NULL, '1334440263732436994', 'lv', 'lv', 'String', NULL, 3, 0, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('1334440263740825605', NULL, '2020-12-03 18:12:06', NULL, NULL, '1334440263732436994', 'renyuan_jy', 'renyuan_jy', 'String', NULL, 4, 0, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('1334440263740825606', NULL, '2020-12-03 18:12:06', NULL, NULL, '1334440263732436994', 'richang_jy', 'richang_jy', 'String', NULL, 5, 0, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('1334440263740825607', NULL, '2020-12-03 18:12:06', NULL, NULL, '1334440263732436994', 'biaozhun_jy', 'biaozhun_jy', 'String', NULL, 6, 0, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('1334440263740825608', NULL, '2020-12-03 18:12:06', NULL, NULL, '1334440263732436994', 'xinxi_jy', 'xinxi_jy', 'String', NULL, 7, 0, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('1334440263740825609', NULL, '2020-12-03 18:12:06', NULL, NULL, '1334440263732436994', 'jichubokuan_jy', 'jichubokuan_jy', 'String', NULL, 8, 0, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('1334440263740825610', NULL, '2020-12-03 18:12:06', NULL, NULL, '1334440263732436994', 'renyuan_ct', 'renyuan_ct', 'String', NULL, 9, 0, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('1334440263740825611', NULL, '2020-12-03 18:12:06', NULL, NULL, '1334440263732436994', 'richang_ct', 'richang_ct', 'String', NULL, 10, 0, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('1334440263740825612', NULL, '2020-12-03 18:12:06', NULL, NULL, '1334440263732436994', 'xiangmu_ct', 'xiangmu_ct', 'String', NULL, 11, 0, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('1334440263740825613', NULL, '2020-12-03 18:12:06', NULL, NULL, '1334440263732436994', 'jichubokuan_ct', 'jichubokuan_ct', 'String', NULL, 12, 0, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('1334440263740825614', NULL, '2020-12-03 18:12:06', NULL, NULL, '1334440263732436994', 'xiangmu_sh', 'xiangmu_sh', 'String', NULL, 13, 0, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('1334440263740825615', NULL, '2020-12-03 18:12:06', NULL, NULL, '1334440263732436994', 'jichubokuan_sh', 'jichubokuan_sh', 'String', NULL, 14, 0, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('1334440263740825616', NULL, '2020-12-03 18:12:06', NULL, NULL, '1334440263732436994', 'diannao', 'diannao', 'String', NULL, 15, 0, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('1334440263740825617', NULL, '2020-12-03 18:12:06', NULL, NULL, '1334440263732436994', 'xiaoyuanwang', 'xiaoyuanwang', 'String', NULL, 16, 0, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('1334465135443451905', NULL, '2020-12-03 19:50:56', NULL, NULL, '1334465135435063298', 'diqu', 'diqu', 'String', NULL, 1, 0, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('1334465135443451906', NULL, '2020-12-03 19:50:56', NULL, NULL, '1334465135435063298', 'class', 'class', 'String', NULL, 2, 0, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('1334465135443451907', NULL, '2020-12-03 19:50:56', NULL, NULL, '1334465135435063298', 'sales_11', 'sales_11', 'String', NULL, 3, 0, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('1334465135443451908', NULL, '2020-12-03 19:50:56', NULL, NULL, '1334465135435063298', 'sales_12', 'sales_12', 'String', NULL, 4, 0, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('1334465135443451909', NULL, '2020-12-03 19:50:56', NULL, NULL, '1334465135435063298', 'sales_13', 'sales_13', 'String', NULL, 5, 0, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('1334465135443451910', NULL, '2020-12-03 19:50:56', NULL, NULL, '1334465135435063298', 'sales_14', 'sales_14', 'String', NULL, 6, 0, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('1334465135443451911', NULL, '2020-12-03 19:50:56', NULL, NULL, '1334465135435063298', 'sales_15', 'sales_15', 'String', NULL, 7, 0, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('1334465135443451912', NULL, '2020-12-03 19:50:56', NULL, NULL, '1334465135435063298', 'sales_16', 'sales_16', 'String', NULL, 8, 0, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('1334465135443451913', NULL, '2020-12-03 19:50:56', NULL, NULL, '1334465135435063298', 'sales_17', 'sales_17', 'String', NULL, 9, 0, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('1334465135447646210', NULL, '2020-12-03 19:50:56', NULL, NULL, '1334465135435063298', 'sales_18', 'sales_18', 'String', NULL, 10, 0, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('1334465135447646211', NULL, '2020-12-03 19:50:56', NULL, NULL, '1334465135435063298', 'sales_19', 'sales_19', 'String', NULL, 11, 0, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('1334465135447646212', NULL, '2020-12-03 19:50:56', NULL, NULL, '1334465135435063298', 'sales_20', 'sales_20', 'String', NULL, 12, 0, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('1334465135447646213', NULL, '2020-12-03 19:50:56', NULL, NULL, '1334465135435063298', 'sales_21', 'sales_21', 'String', NULL, 13, 0, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('1334465135447646214', NULL, '2020-12-03 19:50:56', NULL, NULL, '1334465135435063298', 'sales_22', 'sales_22', 'String', NULL, 14, 0, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('1334465135447646215', NULL, '2020-12-03 19:50:56', NULL, NULL, '1334465135435063298', 'sales_31', 'sales_31', 'String', NULL, 15, 0, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('1334465135447646216', NULL, '2020-12-03 19:50:56', NULL, NULL, '1334465135435063298', 'sales_32', 'sales_32', 'String', NULL, 16, 0, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('1334465135447646217', NULL, '2020-12-03 19:50:56', NULL, NULL, '1334465135435063298', 'sales_33', 'sales_33', 'String', NULL, 17, 0, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('1334465135447646218', NULL, '2020-12-03 19:50:56', NULL, NULL, '1334465135435063298', 'sales_34', 'sales_34', 'String', NULL, 18, 0, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('1334465135447646219', NULL, '2020-12-03 19:50:56', NULL, NULL, '1334465135435063298', 'sales_35', 'sales_35', 'String', NULL, 19, 0, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('1334465135447646220', NULL, '2020-12-03 19:50:56', NULL, NULL, '1334465135435063298', 'sales_36', 'sales_36', 'String', NULL, 20, 0, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('1334465135447646221', NULL, '2020-12-03 19:50:56', NULL, NULL, '1334465135435063298', 'sales_37', 'sales_37', 'String', NULL, 21, 0, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('1334465135447646222', NULL, '2020-12-03 19:50:56', NULL, NULL, '1334465135435063298', 'sales_38', 'sales_38', 'String', NULL, 22, 0, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('1334465135447646223', NULL, '2020-12-03 19:50:56', NULL, NULL, '1334465135435063298', 'sales_39', 'sales_39', 'String', NULL, 23, 0, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('1334465135447646224', NULL, '2020-12-03 19:50:56', NULL, NULL, '1334465135435063298', 'sales_40', 'sales_40', 'String', NULL, 24, 0, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('1334465135447646225', NULL, '2020-12-03 19:50:56', NULL, NULL, '1334465135435063298', 'sales_41', 'sales_41', 'String', NULL, 25, 0, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('1334465135447646226', NULL, '2020-12-03 19:50:56', NULL, NULL, '1334465135435063298', 'sales_42', 'sales_42', 'String', NULL, 26, 0, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('1334764504126402561', NULL, '2020-12-04 15:40:31', NULL, NULL, '1334763434197200897', 'city', 'city', 'String', NULL, 1, 0, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('1334764504130596866', NULL, '2020-12-04 15:40:31', NULL, NULL, '1334763434197200897', 'finish', 'finish', 'String', NULL, 2, 0, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('1334764504130596867', NULL, '2020-12-04 15:40:31', NULL, NULL, '1334763434197200897', 'semifinish', 'semifinish', 'String', NULL, 3, 0, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('1334764504130596868', NULL, '2020-12-04 15:40:31', NULL, NULL, '1334763434197200897', 'time', 'time', 'String', NULL, 4, 0, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('1334764504130596869', NULL, '2020-12-04 15:40:31', NULL, NULL, '1334763434197200897', 'state', 'state', 'String', NULL, 5, 0, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('1334764504130596870', NULL, '2020-12-04 15:40:31', NULL, NULL, '1334763434197200897', 'attribute', 'attribute', 'String', NULL, 6, 0, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('1334764504130596871', NULL, '2020-12-04 15:40:31', NULL, NULL, '1334763434197200897', 'num', 'num', 'String', NULL, 7, 0, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('1334764504130596872', NULL, '2020-12-04 15:40:31', NULL, NULL, '1334763434197200897', 'gnum', 'gnum', 'String', NULL, 8, 0, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('1334764504130596873', NULL, '2020-12-04 15:40:31', NULL, NULL, '1334763434197200897', 'jnum', 'jnum', 'String', NULL, 9, 0, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('1334764504130596874', NULL, '2020-12-04 15:40:31', NULL, NULL, '1334763434197200897', 'wnum', 'wnum', 'String', NULL, 10, 0, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('1334764504130596875', NULL, '2020-12-04 15:40:31', NULL, NULL, '1334763434197200897', 'uph', 'uph', 'String', NULL, 11, 0, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('1334764504130596876', NULL, '2020-12-04 15:40:31', NULL, NULL, '1334763434197200897', 'hc', 'hc', 'String', NULL, 12, 0, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('1334764504130596877', NULL, '2020-12-04 15:40:31', NULL, NULL, '1334763434197200897', 'jtime', 'jtime', 'String', NULL, 13, 0, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('1334764504130596878', NULL, '2020-12-04 15:40:31', NULL, NULL, '1334763434197200897', 'yield', 'yield', 'String', NULL, 14, 0, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('1334764504130596879', NULL, '2020-12-04 15:40:31', NULL, NULL, '1334763434197200897', 'beizhu', 'beizhu', 'String', NULL, 15, 0, NULL, NULL, NULL, NULL, NULL);
|
2023-09-08 16:18:56 +00:00
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('1335886666392518658', NULL, '2020-12-07 17:59:35', NULL, NULL, '1335886666363158530', 'name', 'name', 'String', NULL, 1, 0, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('1335886666413490177', NULL, '2020-12-07 17:59:36', NULL, NULL, '1335886666363158530', 'value', 'value', 'String', NULL, 2, 0, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('1335889985055866881', NULL, '2020-12-07 18:12:47', NULL, NULL, '1335889985047478274', 'value', 'value', 'String', NULL, 1, 0, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('1335889985060061186', NULL, '2020-12-07 18:12:47', NULL, NULL, '1335889985047478274', 'name', 'name', 'String', NULL, 2, 0, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('1335909918863114242', NULL, '2020-12-07 19:31:59', NULL, NULL, '1335909918854725633', 'name', 'name', 'String', NULL, 1, 0, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('1335909918863114243', NULL, '2020-12-07 19:31:59', NULL, NULL, '1335909918854725633', 'value', 'value', 'String', NULL, 2, 0, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('1337360966253293570', 'admin', '2022-04-21 20:09:44', NULL, NULL, '1337360015912087554', 'id', 'id', 'String', NULL, 1, 0, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('1337360966253293571', 'admin', '2022-04-21 20:09:44', NULL, NULL, '1337360015912087554', 'name', 'name', 'String', NULL, 2, 0, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('1337360966253293572', 'admin', '2022-04-21 20:09:44', NULL, NULL, '1337360015912087554', 'value', 'value', 'String', NULL, 3, 0, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('1338412526932602882', NULL, '2020-12-14 17:16:28', NULL, NULL, '1335901385547431937', 'name', 'name', 'String', NULL, 1, 0, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('1338412526936797186', NULL, '2020-12-14 17:16:28', NULL, NULL, '1335901385547431937', 'value', 'value', 'String', NULL, 2, 0, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('1338459533034401794', 'admin', '2021-07-31 13:23:38', NULL, NULL, '1338457100451328002', 'id', 'id', 'String', NULL, 1, 0, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('1338459533038596098', 'admin', '2021-07-31 13:23:38', NULL, NULL, '1338457100451328002', 'name', 'name', 'String', NULL, 2, 0, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('1338459533038596099', 'admin', '2021-07-31 13:23:38', NULL, NULL, '1338457100451328002', 'value', 'value', 'String', NULL, 3, 0, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('1338459533038596100', 'admin', '2021-07-31 13:23:38', NULL, NULL, '1338457100451328002', 'type', 'type', 'String', NULL, 4, 0, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('1338667866769068033', 'admin', '2021-07-31 13:23:42', NULL, NULL, '1338667866760679426', 'id', 'id', 'String', NULL, 1, 0, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('1338667866769068034', 'admin', '2021-07-31 13:23:42', NULL, NULL, '1338667866760679426', 'name', 'name', 'String', NULL, 2, 0, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('1338667866769068035', 'admin', '2021-07-31 13:23:42', NULL, NULL, '1338667866760679426', 'value', 'value', 'String', NULL, 3, 0, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('1338670467426291713', 'admin', '2021-07-31 13:23:46', NULL, NULL, '1338669749617299458', 'id', 'id', 'String', NULL, 1, 0, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('1338670467426291714', 'admin', '2021-07-31 13:23:46', NULL, NULL, '1338669749617299458', 'name', 'name', 'String', NULL, 2, 0, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('1338670467426291715', 'admin', '2021-07-31 13:23:46', NULL, NULL, '1338669749617299458', 'value', 'value', 'String', NULL, 3, 0, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('1338675446966915074', 'admin', '2021-07-31 13:23:50', NULL, NULL, '1338675446962720769', 'id', 'id', 'String', NULL, 1, 0, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('1338675446971109377', 'admin', '2021-07-31 13:23:50', NULL, NULL, '1338675446962720769', 'name', 'name', 'String', NULL, 2, 0, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('1338675446971109378', 'admin', '2021-07-31 13:23:50', NULL, NULL, '1338675446962720769', 'value', 'value', 'String', NULL, 3, 0, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('1338678877404270594', 'admin', '2021-07-31 13:23:54', NULL, NULL, '1338678877395881985', 'id', 'id', 'String', NULL, 1, 0, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('1338678877408464898', 'admin', '2021-07-31 13:23:54', NULL, NULL, '1338678877395881985', 'name', 'name', 'String', NULL, 2, 0, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('1338678877408464899', 'admin', '2021-07-31 13:23:54', NULL, NULL, '1338678877395881985', 'value', 'value', 'String', NULL, 3, 0, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('1338687435571204098', 'admin', '2021-07-31 13:24:02', NULL, NULL, '1338687435562815489', 'id', 'id', 'String', NULL, 1, 0, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('1338687435575398402', 'admin', '2021-07-31 13:24:02', NULL, NULL, '1338687435562815489', 'from_name', 'from_name', 'String', NULL, 2, 0, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('1338687435575398403', 'admin', '2021-07-31 13:24:02', NULL, NULL, '1338687435562815489', 'to_name', 'to_name', 'String', NULL, 3, 0, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('1338689731134754817', 'admin', '2021-07-31 13:23:58', NULL, NULL, '1338687259901169665', 'id', 'id', 'String', NULL, 1, 0, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('1338689731138949122', 'admin', '2021-07-31 13:23:58', NULL, NULL, '1338687259901169665', 'name', 'name', 'String', NULL, 2, 0, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('1338689731138949123', 'admin', '2021-07-31 13:23:58', NULL, NULL, '1338687259901169665', 'value', 'value', 'String', NULL, 3, 0, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('1338689731138949124', 'admin', '2021-07-31 13:23:58', NULL, NULL, '1338687259901169665', 'type', 'type', 'String', NULL, 4, 0, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('1338720793172905986', 'admin', '2021-07-31 13:24:06', NULL, NULL, '1338720793164517378', 'id', 'id', 'String', NULL, 1, 0, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('1338720793172905987', 'admin', '2021-07-31 13:24:06', NULL, NULL, '1338720793164517378', 'name', 'name', 'String', NULL, 2, 0, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('1338720793172905988', 'admin', '2021-07-31 13:24:06', NULL, NULL, '1338720793164517378', 'value', 'value', 'String', NULL, 3, 0, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('1338724105830010882', 'admin', '2021-07-31 13:24:11', NULL, NULL, '1338724105821622274', 'id', 'id', 'String', NULL, 1, 0, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('1338724105830010883', 'admin', '2021-07-31 13:24:11', NULL, NULL, '1338724105821622274', 'name', 'name', 'String', NULL, 2, 0, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('1338724105830010884', 'admin', '2021-07-31 13:24:11', NULL, NULL, '1338724105821622274', 'value', 'value', 'String', NULL, 3, 0, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('1339491107960029185', NULL, '2020-12-17 16:42:21', NULL, NULL, '1339491107951640577', 'name', 'name', 'String', NULL, 1, 0, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('1339491107960029186', NULL, '2020-12-17 16:42:21', NULL, NULL, '1339491107951640577', 'value', 'value', 'String', NULL, 2, 0, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('1339491107960029187', NULL, '2020-12-17 16:42:21', NULL, NULL, '1339491107951640577', 'type', 'type', 'String', NULL, 3, 0, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('1339495346086117377', NULL, '2020-12-17 16:59:12', NULL, NULL, '1339495346077728770', 'name', 'name', 'String', NULL, 1, 0, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('1339495346086117378', NULL, '2020-12-17 16:59:12', NULL, NULL, '1339495346077728770', 'value', 'value', 'String', NULL, 2, 0, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('1339495346086117379', NULL, '2020-12-17 16:59:12', NULL, NULL, '1339495346077728770', 'type', 'type', 'String', NULL, 3, 0, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('1339498906773389314', NULL, '2020-12-17 17:13:21', NULL, NULL, '1339498906765000705', 'name', 'name', 'String', NULL, 1, 0, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('1339498906773389315', NULL, '2020-12-17 17:13:21', NULL, NULL, '1339498906765000705', 'value', 'value', 'String', NULL, 2, 0, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('1339538388457390081', NULL, '2020-12-17 19:50:14', NULL, NULL, '1339538388453195777', 'name', 'name', 'String', NULL, 1, 0, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('1339538388461584385', NULL, '2020-12-17 19:50:14', NULL, NULL, '1339538388453195777', 'value', 'value', 'String', NULL, 2, 0, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('1339870475500691457', 'admin', '2021-07-31 13:22:34', NULL, NULL, '1339870475496497153', 'id', 'id', 'String', NULL, 1, 0, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('1339870475500691458', 'admin', '2021-07-31 13:22:34', NULL, NULL, '1339870475496497153', 'name', 'name', 'String', NULL, 2, 0, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('1339870475500691459', 'admin', '2021-07-31 13:22:34', NULL, NULL, '1339870475496497153', 'value', 'value', 'String', NULL, 3, 0, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('1339873097628557314', 'admin', '2021-07-31 13:22:39', NULL, NULL, '1339873097620168705', 'id', 'id', 'String', NULL, 1, 0, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('1339873097632751618', 'admin', '2021-07-31 13:22:39', NULL, NULL, '1339873097620168705', 'name', 'name', 'String', NULL, 2, 0, NULL, 'sex1', NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('1339873097632751619', 'admin', '2021-07-31 13:22:39', NULL, NULL, '1339873097620168705', 'value', 'value', 'String', NULL, 3, 0, NULL, '', NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('1339876173676584962', 'admin', '2021-07-31 13:22:44', NULL, NULL, '1339876173672390658', 'id', 'id', 'String', NULL, 1, 0, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('1339876173680779266', 'admin', '2021-07-31 13:22:44', NULL, NULL, '1339876173672390658', 'name', 'name', 'String', NULL, 2, 0, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('1339876173680779267', 'admin', '2021-07-31 13:22:44', NULL, NULL, '1339876173672390658', 'value', 'value', 'String', NULL, 3, 0, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('1339878700648275969', 'admin', '2021-07-31 13:22:48', NULL, NULL, '1339878700639887362', 'id', 'id', 'String', NULL, 1, 0, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('1339878700648275970', 'admin', '2021-07-31 13:22:48', NULL, NULL, '1339878700639887362', 'name', 'name', 'String', NULL, 2, 0, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('1339878700652470274', 'admin', '2021-07-31 13:22:48', NULL, NULL, '1339878700639887362', 'value', 'value', 'String', NULL, 3, 0, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('1339884367199117313', 'admin', '2021-07-31 13:22:52', NULL, NULL, '1339884367194923010', 'id', 'id', 'String', NULL, 1, 0, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('1339884367203311617', 'admin', '2021-07-31 13:22:52', NULL, NULL, '1339884367194923010', 'name', 'name', 'String', NULL, 2, 0, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('1339884367203311618', 'admin', '2021-07-31 13:22:52', NULL, NULL, '1339884367194923010', 'value', 'value', 'String', NULL, 3, 0, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('1339886300571934722', 'admin', '2021-07-31 13:22:56', NULL, NULL, '1339886300563546113', 'id', 'id', 'String', NULL, 1, 0, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('1339886300571934723', 'admin', '2021-07-31 13:22:56', NULL, NULL, '1339886300563546113', 'name', 'name', 'String', NULL, 2, 0, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('1339886300571934724', 'admin', '2021-07-31 13:22:56', NULL, NULL, '1339886300563546113', 'value', 'value', 'String', NULL, 3, 0, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('1339889468164841473', 'admin', '2021-07-31 13:23:00', NULL, NULL, '1339888452912586753', 'id', 'id', 'String', NULL, 1, 0, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('1339889468164841474', 'admin', '2021-07-31 13:23:00', NULL, NULL, '1339888452912586753', 'name', 'name', 'String', NULL, 2, 0, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('1339889468164841475', 'admin', '2021-07-31 13:23:00', NULL, NULL, '1339888452912586753', 'value', 'value', 'String', NULL, 3, 0, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('1339889468164841476', 'admin', '2021-07-31 13:23:00', NULL, NULL, '1339888452912586753', 'type', 'type', 'String', NULL, 4, 0, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('144892a55bf4c3fa9d9f46f56ccb9e10', NULL, '2021-01-15 15:42:03', NULL, NULL, '1316987047604514817', 'hukounum', 'hukounum', 'String', NULL, 26, 0, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('14826d1f16e7d78c1710f8ae75aafd57', NULL, '2021-02-02 17:15:44', NULL, NULL, 'd7d5ac3cc4e6ee4e42752176774e6ef0', 'nation', 'nation', 'String', NULL, 5, 0, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('16291541719d8549b7ff8cb42960f2f3', NULL, '2021-02-02 18:08:24', NULL, NULL, '87a440b35fd656844484774c66a7370c', 'yhnum', 'yhnum', 'String', NULL, 8, 0, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('17a278c53299d1342c56a8eb1614a44e', NULL, '2021-01-05 15:09:15', NULL, NULL, '1289140698221678593', 'ctime', 'ctime', 'String', NULL, 4, 0, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('183def2691ba0f148a21e64362053bfa', 'admin', '2023-08-12 17:16:00', NULL, NULL, '1316997232402231298', 'birthday', 'birthday', 'date', NULL, 5, 0, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('1b222f7bb38567d287e55da25c51091c', NULL, '2021-02-02 18:08:24', NULL, NULL, '87a440b35fd656844484774c66a7370c', 'sf4', 'sf4', 'String', NULL, 18, 0, NULL, 'ttype', NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('1b639657cf78d9a466c7baa31816b209', NULL, '2021-01-15 15:42:03', NULL, NULL, '1316987047604514817', 'data', 'data', 'String', NULL, 3, 0, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('1bc44903203bcd6097677db30ce05f5c', 'admin', '2023-08-12 17:16:00', NULL, NULL, '1316997232402231298', 'health', 'health', NULL, NULL, 11, 0, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('1beca0c0937ecebf275d53bf2e8809e1', 'admin', '2023-08-12 17:16:00', NULL, NULL, '1316997232402231298', 'update_by', 'update_by', NULL, NULL, 30, 0, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('1c16dc90542be1708ff0e581ba1cc1d7', NULL, '2021-02-21 10:06:35', NULL, NULL, 'b0f04c0f50a659f99c8aebe6efb93682', 'name', 'name', 'String', NULL, 5, 0, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('1cd9409359f38743b207721757123e39', NULL, '2021-02-02 17:15:44', NULL, NULL, 'd7d5ac3cc4e6ee4e42752176774e6ef0', 'name', 'name', 'String', NULL, 1, 0, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('1d2006a2d1eb031c6d9b63f8d4b7b20c', NULL, '2021-01-28 16:18:05', NULL, NULL, '44a261c2dcaaaaea51c18378e46ba5b9', 'fsex', 'fsex', 'String', NULL, 4, 0, NULL, 'sex1', NULL, NULL, NULL);
|
2021-10-11 09:50:19 +00:00
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('1d21c72184f2e06ca1be3dc95fbcc259', NULL, '2021-01-11 14:38:14', NULL, NULL, '1317006713165049858', 'zhiwu', 'zhiwu', 'String', NULL, 5, 0, NULL, NULL, NULL, NULL, NULL);
|
2023-09-08 16:18:56 +00:00
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('1df50d8a3eaaaa927c5978a8502e9a67', NULL, '2021-02-02 17:15:44', NULL, NULL, 'd7d5ac3cc4e6ee4e42752176774e6ef0', 'slyy', 'slyy', 'String', NULL, 11, 0, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('1e3b9bb7c77ad03eb2d5283f6efc04ba', 'admin', '2021-07-31 13:27:27', NULL, NULL, 'f2e0f5cbc64aa1e676ac1291203ff7c8', 'birth', '出生日期', 'date', NULL, 6, 0, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('1e99007fe0ae8b2109e40eaaae0d7403', NULL, '2021-01-19 15:08:43', NULL, NULL, 'cf2211ad6777007564fba0c47b417eb5', 'sales_1', 'sales_1', 'String', NULL, 4, 0, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('1f5cd376d9a38820fd7b8de7908c6c95', 'ajun007_cn', '2021-07-15 16:25:25', NULL, NULL, '1334708015269490689', 'pay', 'pay', 'String', NULL, 6, 0, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('21f7de0326129dbbbc03d64aceb4d3f7', NULL, '2021-01-05 15:09:15', NULL, NULL, '1289140698221678593', 'yprice', 'yprice', 'String', NULL, 7, 0, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('224c5103f1fcfcc38eff9d3817d82152', NULL, '2021-02-02 17:15:44', NULL, NULL, 'd7d5ac3cc4e6ee4e42752176774e6ef0', 'shao', 'shao', 'String', NULL, 13, 0, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('240eda14518770ac6fd2f9081755bc81', NULL, '2021-01-15 15:42:03', NULL, NULL, '1316987047604514817', 'sbtype', 'sbtype', 'String', NULL, 33, 0, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('25055116e88f653e771b5692e78234db', NULL, '2021-02-02 18:08:24', NULL, NULL, '87a440b35fd656844484774c66a7370c', 'num', 'num', 'String', NULL, 3, 0, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('26c4b0748ae5d6725027b7a757c5240c', NULL, '2021-01-15 15:42:03', NULL, NULL, '1316987047604514817', 'name', 'name', 'String', NULL, 4, 0, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('27ad88899a905fd4a58a722edec31736', 'admin', '2021-07-31 13:25:30', NULL, NULL, '361b59d77f2332c66f013160d71cebfe', 'gtime', '雇佣日期', 'date', NULL, 3, 1, 2, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('28b745230e734cdc6f87206e43c457d4', NULL, '2021-02-04 09:44:09', NULL, NULL, '1283730831482937345', 'name', 'name', 'String', NULL, 1, 0, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('29fcb4292d4782888e9fd0496bd8ddc8', NULL, '2021-01-05 15:09:15', NULL, NULL, '1289140698221678593', 'id', 'id', 'String', NULL, 1, 0, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('2c6d9211663dd243194dbd0f74134117', NULL, '2021-01-28 16:18:05', NULL, NULL, '44a261c2dcaaaaea51c18378e46ba5b9', 'pname', 'pname', 'String', NULL, 1, 0, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('2cbbc3103eada223a2991ed24d6617a3', NULL, '2021-01-15 15:42:03', NULL, NULL, '1316987047604514817', 'socialsecurity', 'socialsecurity', 'String', NULL, 30, 0, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('2d4c2abebb3858a2e317091d64aa8a74', 'admin', '2022-12-08 21:31:48', NULL, NULL, '523d56e4aec77509385b8b2da61ceeb2', 'sales', 'sales', 'String', NULL, 4, 0, NULL, NULL, NULL, NULL, '');
|
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('2dd5f62f633e4486285a88b4bb1ee6bf', NULL, '2021-02-02 17:15:44', NULL, NULL, 'd7d5ac3cc4e6ee4e42752176774e6ef0', 'qfjg', 'qfjg', 'String', NULL, 10, 0, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('2e37e0559563861b61edf372266b8b51', 'admin', '2021-07-31 13:25:30', NULL, NULL, '361b59d77f2332c66f013160d71cebfe', 'hukou', 'hukou', 'String', NULL, 7, 0, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('2fa4e6ec87c360e3e5fce3dd3063874a', 'admin', '2023-08-12 17:16:00', NULL, NULL, '1316997232402231298', 'political', 'political', NULL, NULL, 7, 0, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('31d294aea69eb3ff7c7158a3a3dfcc62', 'ajun007_cn', '2021-07-15 16:25:25', NULL, NULL, '1334708015269490689', 'name', 'name', 'String', NULL, 4, 0, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('337e17558c2c5f42738e0437b5973a4a', NULL, '2021-02-02 17:15:44', NULL, NULL, 'd7d5ac3cc4e6ee4e42752176774e6ef0', 'lzr', 'lzr', 'String', NULL, 18, 0, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('33c5d70c82c2b2ae00adb824ebbd301d', NULL, '2021-02-02 17:15:44', NULL, NULL, 'd7d5ac3cc4e6ee4e42752176774e6ef0', 'ydate', 'ydate', 'String', NULL, 9, 0, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('35bb7cf93182683f9b519c4bbf36edc3', 'admin', '2021-07-31 13:25:30', NULL, NULL, '361b59d77f2332c66f013160d71cebfe', 'jphone', 'jphone', 'String', NULL, 5, 0, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('36a57e6c9b5081f8d8ba2510c029e494', 'ajun007_cn', '2021-07-15 16:25:25', NULL, NULL, '1334708015269490689', 'meals_09', 'meals_09', 'String', NULL, 13, 0, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('3756e7be6fe2926a39d5452f9374e2d3', 'admin', '2023-08-12 17:16:00', NULL, NULL, '1316997232402231298', 'num', 'num', NULL, NULL, 2, 0, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('38b46f86f1e85322607abead76272143', NULL, '2021-01-19 15:08:43', NULL, NULL, 'cf2211ad6777007564fba0c47b417eb5', 'region', 'region', 'string', NULL, 1, 0, 1, '', NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('3b9c6ae6c423fd58362200d87d8b7b3e', 'admin', '2021-07-31 13:27:27', NULL, NULL, 'f2e0f5cbc64aa1e676ac1291203ff7c8', 'jperson', 'jperson', 'String', NULL, 9, 0, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('3c021df8fdccdd8d1804b780e6918d9b', NULL, '2021-03-09 14:20:07', NULL, NULL, '9a8f0f16cf42380df58cda0171a56c0c', 'age', 'age', 'String', NULL, 4, 0, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('3c2a8313af79dbecba4c5687b65a66ab', NULL, '2021-01-05 15:09:15', NULL, NULL, '1289140698221678593', 'cnum', 'cnum', 'String', NULL, 5, 0, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('3c73ca198ffdcbf8f2fa7bfb8ce7c343', NULL, '2021-02-02 17:15:44', NULL, NULL, 'd7d5ac3cc4e6ee4e42752176774e6ef0', 'jphone', 'jphone', 'String', NULL, 17, 0, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('3cafa569c1df907d66efbe04bf4f362c', NULL, '2021-02-21 10:06:35', NULL, NULL, 'b0f04c0f50a659f99c8aebe6efb93682', 'age', 'age', 'String', NULL, 4, 0, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('3e1037e9d7a07c958e60ee722baafb82', 'admin', '2023-08-12 17:16:00', NULL, NULL, '1316997232402231298', 'positional_titles', 'positional_titles', NULL, NULL, 25, 0, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('3e85f24fa309374ef17d787566cee3ca', NULL, '2021-02-02 17:15:44', NULL, NULL, 'd7d5ac3cc4e6ee4e42752176774e6ef0', 'tm', 'tm', 'String', NULL, 4, 0, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('409b747f789fb69c51d363da2ec258d4', 'ajun007_cn', '2021-07-15 16:25:25', NULL, NULL, '1334708015269490689', 'paymoth', 'paymoth', 'String', NULL, 10, 0, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('417e85bfcbeeb08430541519a94ce2a0', NULL, '2021-01-19 15:08:43', NULL, NULL, 'cf2211ad6777007564fba0c47b417eb5', 'proportion_1', 'proportion_1', 'String', NULL, 6, 0, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('4378b42a2315de9c4ab07c0b0a777750', 'admin', '2021-07-31 13:25:44', NULL, NULL, '9b7d28336b01f9a6b1a613957c3d7cda', 'gtime', 'gtime', 'String', NULL, 3, 0, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('437a5bd87b3b4e80e7fe378d85bbe84d', NULL, '2021-01-15 15:42:03', NULL, NULL, '1316987047604514817', 'homephone', 'homephone', 'String', NULL, 17, 0, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('445dd05e72067704e38d72c117cad0f3', NULL, '2021-02-02 18:08:24', NULL, NULL, '87a440b35fd656844484774c66a7370c', 'cbz', 'cbz', 'String', NULL, 14, 0, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('446d3dccee869dab9c40502cac56366a', NULL, '2021-01-28 16:18:05', NULL, NULL, '44a261c2dcaaaaea51c18378e46ba5b9', 'gdata', 'gdata', 'String', NULL, 7, 0, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('46897dde89033bbc1b8aeae7addaa0bd', NULL, '2021-01-15 15:42:03', NULL, NULL, '1316987047604514817', 'department', 'department', 'String', NULL, 1, 0, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('471d4e45323a4f10c8b7fa944b27e208', NULL, '2021-01-15 15:42:03', NULL, NULL, '1316987047604514817', 'currentnum', 'currentnum', 'String', NULL, 29, 0, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('489a2a56df33f5d62f393cded3728779', NULL, '2021-02-02 18:08:24', NULL, NULL, '87a440b35fd656844484774c66a7370c', 'phone', 'phone', 'String', NULL, 6, 0, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('48aa3663aeea9fbcfd140ff9fc826075', 'admin', '2023-08-12 17:17:13', NULL, NULL, 'c73e1f3325b926081641d918921d2bcd', 'value', 'value', 'String', NULL, 3, 0, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('49c12ae1c4a47390cfc87182496501bf', 'admin', '2023-08-12 17:16:00', NULL, NULL, '1316997232402231298', 'id', 'id', NULL, NULL, 1, 0, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('4a83bf0d5fe08f2e1e755cd4f409777b', NULL, '2021-02-02 18:08:24', NULL, NULL, '87a440b35fd656844484774c66a7370c', 'yjine', 'yjine', 'String', NULL, 10, 0, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('4adbbf6380036dcc357d1667e6ff1726', 'admin', '2023-08-12 17:16:00', NULL, NULL, '1316997232402231298', 'create_time', 'create_time', NULL, NULL, 29, 0, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('4ba0dbf06ea26df7a2f7d3f74d63af8e', 'admin', '2023-08-12 17:16:00', NULL, NULL, '1316997232402231298', 'update_time', 'update_time', NULL, NULL, 31, 0, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('4c0cafd4a94a59d92a51510c68a52af2', NULL, '2021-01-26 14:51:12', NULL, NULL, 'a900c843827dd08339a643aa0cf4305f', 'cprice', 'cprice', 'String', NULL, 3, 0, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('4d15738217f7902058e1f55c8873058c', NULL, '2021-02-21 10:06:35', NULL, NULL, 'b0f04c0f50a659f99c8aebe6efb93682', 'education', 'education', 'String', NULL, 2, 0, NULL, NULL, NULL, NULL, NULL);
|
2021-10-11 09:50:19 +00:00
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('4d782de2bf10be3a79f04e8841053f00', NULL, '2021-01-08 10:47:52', NULL, NULL, 'f7649b77cfc9e0a9dacdac370cd4036b', 'pingjia', 'pingjia', 'String', NULL, 2, 0, NULL, NULL, NULL, NULL, NULL);
|
2023-09-08 16:18:56 +00:00
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('4f9b9e6fe7ff0857d341ff2e83a1c711', NULL, '2021-01-26 14:51:12', NULL, NULL, 'a900c843827dd08339a643aa0cf4305f', 'cname', '名称', 'string', NULL, 2, 1, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('4fcf32bb24f1b5c9b045f047b330225b', NULL, '2021-01-15 15:42:03', NULL, NULL, '1316987047604514817', 'register', 'register', 'String', NULL, 11, 0, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('501a57bcee9a111c44f33c595d34b0b1', NULL, '2021-01-19 15:08:43', NULL, NULL, 'cf2211ad6777007564fba0c47b417eb5', 'gift_1', 'gift_1', 'String', NULL, 5, 0, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('505c2a4bd2d235b5fc56fe65b5497fc5', NULL, '2021-02-02 17:15:44', NULL, NULL, 'd7d5ac3cc4e6ee4e42752176774e6ef0', 'card', 'card', 'String', NULL, 8, 0, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('50adb7c6df5db5910b4b5d5ae65136a4', NULL, '2021-02-02 17:15:44', NULL, NULL, 'd7d5ac3cc4e6ee4e42752176774e6ef0', 'sk', 'sk', 'String', NULL, 20, 0, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('537516331093020672', 'admin', '2021-04-01 16:36:46', NULL, NULL, '537516331080437760', 'ctotal', 'ctotal', 'String', NULL, 1, 0, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('537516331105603584', 'admin', '2021-04-01 16:36:46', NULL, NULL, '537516331080437760', 'cname', '名称', 'string', NULL, 2, 0, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('537516331206266880', 'admin', '2021-04-01 16:36:46', NULL, NULL, '537516331080437760', 'cprice', 'cprice', 'String', NULL, 3, 0, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('537516331214655488', 'admin', '2021-04-01 16:36:46', NULL, NULL, '537516331080437760', 'riqi', '日期', 'date', NULL, 4, 0, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('537516331223044096', 'admin', '2021-04-01 16:36:46', NULL, NULL, '537516331080437760', 'id', 'id', 'String', NULL, 5, 0, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('537516331231432704', 'admin', '2021-04-01 16:36:46', NULL, NULL, '537516331080437760', 'dtotal', 'dtotal', 'String', NULL, 6, 0, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('537516331239821312', 'admin', '2021-04-01 16:36:46', NULL, NULL, '537516331080437760', 'tp', 'tp', 'String', NULL, 7, 0, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('537516331244015616', 'admin', '2021-04-01 16:36:46', NULL, NULL, '537516331080437760', 'ztotal', 'ztotal', 'String', NULL, 8, 0, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('537516331252404224', 'admin', '2021-04-01 16:36:46', NULL, NULL, '537516331080437760', 'cnum', 'cnum', 'String', NULL, 9, 0, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('537518066373054464', 'admin', '2021-04-01 16:33:02', NULL, NULL, '537518066347888640', 'dgoodscode', 'dgoodscode', 'String', NULL, 1, 0, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('537518066381443072', 'admin', '2021-04-01 16:33:02', NULL, NULL, '537518066347888640', 'daddress', 'daddress', 'String', NULL, 2, 0, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('537518066389831680', 'admin', '2021-04-01 16:33:02', NULL, NULL, '537518066347888640', 'darrivaldate', 'darrivaldate', 'String', NULL, 3, 0, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('537518066394025984', 'admin', '2021-04-01 16:33:02', NULL, NULL, '537518066347888640', 'dname', 'dname', 'String', NULL, 4, 0, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('537518066398220288', 'admin', '2021-04-01 16:33:02', NULL, NULL, '537518066347888640', 'dgoodsdate', 'dgoodsdate', 'String', NULL, 5, 0, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('537518066410803200', 'admin', '2021-04-01 16:33:02', NULL, NULL, '537518066347888640', 'dorderdate', 'dorderdate', 'String', NULL, 6, 0, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('537518066414997504', 'admin', '2021-04-01 16:33:02', NULL, NULL, '537518066347888640', 'did', 'did', 'String', NULL, 7, 0, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('537521675617783808', 'admin', '2021-07-31 13:26:47', NULL, NULL, '537521675609395200', 'id', 'id', 'String', NULL, 1, 0, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('537521675626172416', 'admin', '2021-07-31 13:26:47', NULL, NULL, '537521675609395200', 'name', '姓名', 'string', NULL, 2, 0, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('537521675630366720', 'admin', '2021-07-31 13:26:47', NULL, NULL, '537521675609395200', 'gtime', '雇佣时间', 'datetime', NULL, 3, 0, 2, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('537521675634561024', 'admin', '2021-07-31 13:26:47', NULL, NULL, '537521675609395200', 'update_by', '职务', 'String', NULL, 4, 0, 3, '', NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('537521675638755328', 'admin', '2021-07-31 13:26:47', NULL, NULL, '537521675609395200', 'jphone', '手机号', 'string', NULL, 5, 0, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('537521675647143936', 'admin', '2021-07-31 13:26:47', NULL, NULL, '537521675609395200', 'birth', '出生日期', 'date', NULL, 6, 0, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('537521675651338240', 'admin', '2021-07-31 13:26:47', NULL, NULL, '537521675609395200', 'hukou', 'hukou', 'String', NULL, 7, 0, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('537521675655532544', 'admin', '2021-07-31 13:26:47', NULL, NULL, '537521675609395200', 'laddress', 'laddress', 'String', NULL, 8, 0, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('537521675659726848', 'admin', '2021-07-31 13:26:47', NULL, NULL, '537521675609395200', 'jperson', 'jperson', 'String', NULL, 9, 0, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('537521675663921152', 'admin', '2021-07-31 13:26:47', NULL, NULL, '537521675609395200', 'sex', '性别', 'String', NULL, 10, 0, 1, 'https://bootapi.jeecg.com/jmreport/test/getDictSex', NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('537521675668115456', 'admin', '2021-07-31 13:26:47', NULL, NULL, '537521675609395200', 'age', '年龄', 'number', NULL, 11, 0, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('537522718418227200', 'admin', '2021-07-31 13:26:51', NULL, NULL, '537522718405644288', 'id', 'id', 'String', NULL, 1, 0, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('537522718430810112', 'admin', '2021-07-31 13:26:51', NULL, NULL, '537522718405644288', 'name', 'name', 'String', NULL, 2, 0, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('537522718435004416', 'admin', '2021-07-31 13:26:51', NULL, NULL, '537522718405644288', 'gtime', 'gtime', 'String', NULL, 3, 0, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('537522718443393024', 'admin', '2021-07-31 13:26:51', NULL, NULL, '537522718405644288', 'update_by', 'update_by', 'String', NULL, 4, 0, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('537522718447587328', 'admin', '2021-07-31 13:26:51', NULL, NULL, '537522718405644288', 'jphone', 'jphone', 'String', NULL, 5, 0, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('537522718451781632', 'admin', '2021-07-31 13:26:51', NULL, NULL, '537522718405644288', 'birth', 'birth', 'String', NULL, 6, 0, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('537522718455975936', 'admin', '2021-07-31 13:26:51', NULL, NULL, '537522718405644288', 'hukou', 'hukou', 'String', NULL, 7, 0, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('537522718460170240', 'admin', '2021-07-31 13:26:51', NULL, NULL, '537522718405644288', 'laddress', 'laddress', 'String', NULL, 8, 0, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('537522718464364544', 'admin', '2021-07-31 13:26:51', NULL, NULL, '537522718405644288', 'jperson', 'jperson', 'String', NULL, 9, 0, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('537522718472753152', 'admin', '2021-07-31 13:26:51', NULL, NULL, '537522718405644288', 'sex', 'sex', 'String', NULL, 10, 0, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('537522718476947456', 'admin', '2021-07-31 13:26:51', NULL, NULL, '537522718405644288', 'age', 'age', 'String', NULL, 11, 0, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('542158608541241344', 'admin', '2021-04-14 11:51:35', NULL, NULL, '542158608528658432', 'name', 'name', 'String', NULL, 1, 0, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('542158608549629952', 'admin', '2021-04-14 11:51:35', NULL, NULL, '542158608528658432', 'value', 'value', 'String', NULL, 2, 0, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('542214589845426176', 'admin', '2021-04-16 16:53:48', NULL, NULL, '542212079118274560', 'name', 'name', 'String', NULL, 1, 0, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('542214589853814784', 'admin', '2021-04-16 16:53:48', NULL, NULL, '542212079118274560', 'value', 'value', 'String', NULL, 2, 0, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('542214589862203392', 'admin', '2021-04-16 16:53:48', NULL, NULL, '542212079118274560', 'type', 'type', 'String', NULL, 3, 0, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('542948598531575808', 'admin', '2021-11-24 11:40:49', NULL, NULL, '542187081431339008', 'name', 'name', 'String', NULL, 0, 0, NULL, NULL, NULL, NULL, '');
|
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('542948598544158720', 'admin', '2021-11-24 11:40:49', NULL, NULL, '542187081431339008', 'value', 'value', 'String', NULL, 1, 0, NULL, NULL, NULL, NULL, '');
|
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('542961954705461248', 'admin', '2021-04-16 17:04:17', NULL, NULL, '542961954638352384', 'name', 'name', 'String', NULL, 1, 0, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('542961954713849856', 'admin', '2021-04-16 17:04:17', NULL, NULL, '542961954638352384', 'value', 'value', 'String', NULL, 2, 0, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('542961954718044160', 'admin', '2021-04-16 17:04:17', NULL, NULL, '542961954638352384', 'typ', 'typ', 'String', NULL, 3, 0, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('547c5bc2df97cc74f0d76bf304e3fdd2', NULL, '2021-02-02 17:15:44', NULL, NULL, 'd7d5ac3cc4e6ee4e42752176774e6ef0', 'zhuzhi', 'zhuzhi', 'String', NULL, 7, 0, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('54f3e9719cd2e020fd5dc8a2726ae802', 'ajun007_cn', '2021-07-15 16:25:25', NULL, NULL, '1334708015269490689', 'pay2', 'pay2', 'String', NULL, 11, 0, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('580753827981250560', 'admin', '2021-08-04 14:12:46', NULL, NULL, '580753827960279040', 'create_time', 'create_time', 'String', NULL, 0, NULL, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('580861481554628608', 'admin', '2021-08-04 14:12:46', NULL, NULL, '580753827960279040', 'num', 'num', 'String', NULL, 1, NULL, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('580864714171830272', 'admin', '2021-08-04 14:12:46', NULL, NULL, '580753827960279040', 'lower', 'lower', 'String', NULL, 2, NULL, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('580864714176024576', 'admin', '2021-08-04 14:12:46', NULL, NULL, '580753827960279040', 'upper', 'upper', 'String', NULL, 3, NULL, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('580e31af70da3db9325e70e827fe1b9e', NULL, '2021-01-15 15:42:03', NULL, NULL, '1316987047604514817', 'school', 'school', 'String', NULL, 20, 0, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('5861e33aff0f038089df2c0bce8eca08', NULL, '2021-01-15 15:42:03', NULL, NULL, '1316987047604514817', 'birth', 'birth', 'String', NULL, 6, 0, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('590432931122860032', 'admin', '2021-10-22 11:43:32', NULL, NULL, '590432931110277120', 'id', 'id', 'String', NULL, 0, 0, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('590432931131248640', 'admin', '2021-10-22 11:43:32', NULL, NULL, '590432931110277120', 'name', '姓名', 'String', NULL, 1, 1, 5, '', NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('590432931135442944', 'admin', '2021-10-22 11:43:32', NULL, NULL, '590432931110277120', 'gtime', '雇佣日期', 'String', NULL, 2, 0, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('590432931139637248', 'admin', '2021-10-22 11:43:32', NULL, NULL, '590432931110277120', 'update_by', '职务', 'String', NULL, 3, 1, 3, 'zhiwu', NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('590432931143831552', 'admin', '2021-10-22 11:43:32', NULL, NULL, '590432931110277120', 'jphone', 'jphone', 'String', NULL, 4, 0, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('590432931152220160', 'admin', '2021-10-22 11:43:32', NULL, NULL, '590432931110277120', 'birth', '出生日期', 'date', NULL, 5, 1, 2, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('590432931156414464', 'admin', '2021-10-22 11:43:32', NULL, NULL, '590432931110277120', 'hukou', 'hukou', 'String', NULL, 6, 0, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('590432931160608768', 'admin', '2021-10-22 11:43:32', NULL, NULL, '590432931110277120', 'laddress', 'laddress', 'String', NULL, 7, 0, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('590432931164803072', 'admin', '2021-10-22 11:43:32', NULL, NULL, '590432931110277120', 'jperson', 'jperson', 'String', NULL, 8, 0, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('590432931168997376', 'admin', '2021-10-22 11:43:32', NULL, NULL, '590432931110277120', 'sex', '性别', 'String', NULL, 9, 1, 4, 'https://bootapi.jeecg.com/jmreport/test/getDictSex', '1', NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('590432931177385984', 'admin', '2021-10-22 11:43:32', NULL, NULL, '590432931110277120', 'age', 'age', 'String', NULL, 10, 0, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('590442764043636736', 'admin', '2021-08-25 17:35:59', NULL, NULL, '590442764031053824', 'diqu', 'diqu', 'String', NULL, 1, 0, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('590442764052025344', 'admin', '2021-08-25 17:35:59', NULL, NULL, '590442764031053824', 'class', 'class', 'String', NULL, 2, 0, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('590442764056219648', 'admin', '2021-08-25 17:35:59', NULL, NULL, '590442764031053824', 'year', 'year', 'String', NULL, 3, 0, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('590442764060413952', 'admin', '2021-08-25 17:35:59', NULL, NULL, '590442764031053824', 'mouth', 'mouth', 'String', NULL, 4, 0, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('590442764064608256', 'admin', '2021-08-25 17:35:59', NULL, NULL, '590442764031053824', 'sales', 'sales', 'String', NULL, 5, 0, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('590786421489750016', 'admin', '2021-10-22 11:43:32', NULL, NULL, '590432931110277120', 'type', '下拉树', 'String', NULL, 11, 1, 6, 'http://api.jeecg.com/mock/26/queryTree', NULL, NULL, '{\'loadTree\':\'https://api.jeecg.com/mock/26/queryTree\'}');
|
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('590808841692991488', 'admin', '2021-08-26 17:50:15', NULL, NULL, '590808841680408576', 'amount', 'amount', 'String', NULL, 0, NULL, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('590808841701380096', 'admin', '2021-08-26 17:50:15', NULL, NULL, '590808841680408576', 'month', 'month', 'String', NULL, 1, NULL, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('590808841709768704', 'admin', '2021-08-26 17:50:15', NULL, NULL, '590808841680408576', 'areaname', 'areaname', 'String', NULL, 2, NULL, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('590808841713963008', 'admin', '2021-08-26 17:50:15', NULL, NULL, '590808841680408576', 'year', 'year', 'String', NULL, 3, NULL, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('590808841718157312', 'admin', '2021-08-26 17:50:15', NULL, NULL, '590808841680408576', 'price', 'price', 'String', NULL, 4, NULL, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('590808841726545920', 'admin', '2021-08-26 17:50:15', NULL, NULL, '590808841680408576', 'id', 'id', 'String', NULL, 5, NULL, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('590808841734934528', 'admin', '2021-08-26 17:50:15', NULL, NULL, '590808841680408576', 'dept', 'dept', 'String', NULL, 6, NULL, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('590808841739128832', 'admin', '2021-08-26 17:50:15', NULL, NULL, '590808841680408576', 'settleamount', 'settleamount', 'String', NULL, 7, NULL, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('590812531841650688', 'admin', '2021-08-26 18:04:55', NULL, NULL, '590812531833262080', 'amount', 'amount', 'String', NULL, 0, NULL, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('590812531850039296', 'admin', '2021-08-26 18:04:55', NULL, NULL, '590812531833262080', 'month', 'month', 'String', NULL, 1, NULL, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('590812531854233600', 'admin', '2021-08-26 18:04:55', NULL, NULL, '590812531833262080', 'areaname', 'areaname', 'String', NULL, 2, NULL, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('590812531925536768', 'admin', '2021-08-26 18:04:55', NULL, NULL, '590812531833262080', 'year', 'year', 'String', NULL, 3, NULL, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('590812531929731072', 'admin', '2021-08-26 18:04:55', NULL, NULL, '590812531833262080', 'price', 'price', 'String', NULL, 4, NULL, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('590812531933925376', 'admin', '2021-08-26 18:04:55', NULL, NULL, '590812531833262080', 'id', 'id', 'String', NULL, 5, NULL, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('590812531942313984', 'admin', '2021-08-26 18:04:55', NULL, NULL, '590812531833262080', 'dept', 'dept', 'String', NULL, 6, NULL, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('590812531946508288', 'admin', '2021-08-26 18:04:55', NULL, NULL, '590812531833262080', 'settleamount', 'settleamount', 'String', NULL, 7, NULL, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('590832773233987584', 'admin', '2021-08-26 19:29:54', NULL, NULL, '590832773221404672', 'id', 'id', 'String', NULL, 0, NULL, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('590832773246570496', 'admin', '2021-08-26 19:29:54', NULL, NULL, '590832773221404672', 'name', 'name', 'String', NULL, 1, NULL, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('590832773250764800', 'admin', '2021-08-26 19:29:54', NULL, NULL, '590832773221404672', 'gtime', 'gtime', 'String', NULL, 2, NULL, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('590832773254959104', 'admin', '2021-08-26 19:29:54', NULL, NULL, '590832773221404672', 'update_by', 'update_by', 'String', NULL, 3, NULL, NULL, 'zhiwu', NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('590832773259153408', 'admin', '2021-08-26 19:29:54', NULL, NULL, '590832773221404672', 'jphone', 'jphone', 'String', NULL, 4, NULL, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('590832773263347712', 'admin', '2021-08-26 19:29:54', NULL, NULL, '590832773221404672', 'birth', 'birth', 'String', NULL, 5, NULL, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('590832773271736320', 'admin', '2021-08-26 19:29:54', NULL, NULL, '590832773221404672', 'hukou', 'hukou', 'String', NULL, 6, NULL, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('590832773275930624', 'admin', '2021-08-26 19:29:54', NULL, NULL, '590832773221404672', 'laddress', 'laddress', 'String', NULL, 7, NULL, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('590832773280124928', 'admin', '2021-08-26 19:29:54', NULL, NULL, '590832773221404672', 'jperson', 'jperson', 'String', NULL, 8, NULL, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('590832773351428096', 'admin', '2021-08-26 19:29:54', NULL, NULL, '590832773221404672', 'sex', 'sex', 'String', NULL, 9, NULL, 4, 'https://bootapi.jeecg.com/jmreport/test/getDictSex', NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('590832773355622400', 'admin', '2021-08-26 19:29:54', NULL, NULL, '590832773221404672', 'age', 'age', 'String', NULL, 10, NULL, NULL, '', NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('590832773359816704', 'admin', '2021-08-26 19:29:54', NULL, NULL, '590832773221404672', 'type', 'type', 'String', NULL, 11, NULL, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('590836397565628416', 'admin', '2021-08-29 15:22:54', NULL, NULL, '590836397553045504', 'id', 'id', 'String', NULL, 0, NULL, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('590836397574017024', 'admin', '2021-08-29 15:22:54', NULL, NULL, '590836397553045504', 'name', 'name', 'String', NULL, 1, NULL, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('590836397649514496', 'admin', '2021-08-29 15:22:54', NULL, NULL, '590836397553045504', 'gtime', 'gtime', 'String', NULL, 2, NULL, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('590836397653708800', 'admin', '2021-08-29 15:22:54', NULL, NULL, '590836397553045504', 'update_by', 'update_by', 'String', NULL, 3, NULL, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('590836397657903104', 'admin', '2021-08-29 15:22:54', NULL, NULL, '590836397553045504', 'jphone', 'jphone', 'String', NULL, 4, NULL, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('590836397666291712', 'admin', '2021-08-29 15:22:54', NULL, NULL, '590836397553045504', 'birth', 'birth', 'String', NULL, 5, NULL, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('590836397670486016', 'admin', '2021-08-29 15:22:54', NULL, NULL, '590836397553045504', 'hukou', 'hukou', 'String', NULL, 6, NULL, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('590836397674680320', 'admin', '2021-08-29 15:22:54', NULL, NULL, '590836397553045504', 'laddress', 'laddress', 'String', NULL, 7, NULL, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('590836397683068928', 'admin', '2021-08-29 15:22:54', NULL, NULL, '590836397553045504', 'jperson', 'jperson', 'String', NULL, 8, NULL, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('590836397687263232', 'admin', '2021-08-29 15:22:54', NULL, NULL, '590836397553045504', 'sex', 'sex', 'String', NULL, 9, NULL, NULL, 'sex', NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('590836397691457536', 'admin', '2021-08-29 15:22:54', NULL, NULL, '590836397553045504', 'age', 'age', 'String', NULL, 10, NULL, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('590836397695651840', 'admin', '2021-08-29 15:22:54', NULL, NULL, '590836397553045504', 'type', 'type', 'String', NULL, 11, NULL, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('591071513088970752', 'admin', '2021-08-27 11:56:45', NULL, NULL, '591071513072193536', 'amount', 'amount', 'String', NULL, 0, NULL, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('591071513101553664', 'admin', '2021-08-27 11:56:45', NULL, NULL, '591071513072193536', 'month', 'month', 'String', NULL, 1, NULL, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('591071513105747968', 'admin', '2021-08-27 11:56:45', NULL, NULL, '591071513072193536', 'areaname', 'areaname', 'String', NULL, 2, NULL, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('591071513109942272', 'admin', '2021-08-27 11:56:45', NULL, NULL, '591071513072193536', 'year', 'year', 'String', NULL, 3, NULL, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('591071513114136576', 'admin', '2021-08-27 11:56:45', NULL, NULL, '591071513072193536', 'price', 'price', 'String', NULL, 4, NULL, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('591071513118330880', 'admin', '2021-08-27 11:56:45', NULL, NULL, '591071513072193536', 'id', 'id', 'String', NULL, 5, NULL, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('591071513122525184', 'admin', '2021-08-27 11:56:45', NULL, NULL, '591071513072193536', 'dept', 'dept', 'String', NULL, 6, NULL, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('591071513130913792', 'admin', '2021-08-27 11:56:45', NULL, NULL, '591071513072193536', 'settleamount', 'settleamount', 'String', NULL, 7, NULL, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('592972587349659648', 'admin', '2023-08-12 16:48:12', NULL, NULL, '592972587332882432', 'hukou', 'hukou', 'String', NULL, 0, NULL, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('592972587358048256', 'admin', '2023-08-12 16:48:12', NULL, NULL, '592972587332882432', 'gtime', 'gtime', 'String', NULL, 1, NULL, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('592972587362242560', 'admin', '2023-08-12 16:48:12', NULL, NULL, '592972587332882432', 'jperson', 'jperson', 'String', NULL, 2, NULL, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('592972587370631168', 'admin', '2023-08-12 16:48:12', NULL, NULL, '592972587332882432', 'sex', 'sex', 'String', NULL, 3, NULL, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('592972587374825472', 'admin', '2023-08-12 16:48:12', NULL, NULL, '592972587332882432', 'name', 'name', 'String', NULL, 4, NULL, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('592972587379019776', 'admin', '2023-08-12 16:48:12', NULL, NULL, '592972587332882432', 'jphone', 'jphone', 'String', NULL, 5, NULL, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('592972587383214080', 'admin', '2023-08-12 16:48:12', NULL, NULL, '592972587332882432', 'birth', 'birth', 'String', NULL, 6, NULL, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('592972587391602688', 'admin', '2023-08-12 16:48:12', NULL, NULL, '592972587332882432', 'id', 'id', 'String', NULL, 7, NULL, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('592972587395796992', 'admin', '2023-08-12 16:48:12', NULL, NULL, '592972587332882432', 'update_by', 'update_by', 'String', NULL, 8, NULL, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('592972587399991296', 'admin', '2023-08-12 16:48:12', NULL, NULL, '592972587332882432', 'type', 'type', 'String', NULL, 9, NULL, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('592972587404185600', 'admin', '2023-08-12 16:48:12', NULL, NULL, '592972587332882432', 'laddress', 'laddress', 'String', NULL, 10, NULL, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('592972587412574208', 'admin', '2023-08-12 16:48:12', NULL, NULL, '592972587332882432', 'age', 'age', 'String', NULL, 11, NULL, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('5a63c437b12d384e6c6dc08e140f7dea', NULL, '2021-02-02 18:08:24', NULL, NULL, '87a440b35fd656844484774c66a7370c', 'sf2', 'sf2', 'String', NULL, 16, 0, NULL, 'ttype', NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('5b0803a136cd1935d483fbcbc4606336', NULL, '2021-02-02 16:19:03', NULL, NULL, 'a98ee8179bef12f8fa2e0f9f3237fb83', 'type', 'type', 'String', NULL, 3, 0, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('5b2c9ca998e98da9422a6f5c7db8f806', 'admin', '2021-07-31 13:25:30', NULL, NULL, '361b59d77f2332c66f013160d71cebfe', 'id', 'id', 'String', NULL, 1, 0, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('5cfe82f2f25d68b88f14a456dabddcbf', NULL, '2021-02-02 18:08:24', NULL, NULL, '87a440b35fd656844484774c66a7370c', 'hname', 'hname', 'String', NULL, 2, 0, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('5e2b8e6e4ede984bb082bf0fbf59c7ec', NULL, '2021-01-15 15:42:03', NULL, NULL, '1316987047604514817', 'telphone', 'telphone', 'String', NULL, 16, 0, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('5e46d436dd0419ddaf0003d8bcdb6628', NULL, '2021-02-04 09:44:09', NULL, NULL, '1283730831482937345', 'key7', 'key7', 'String', NULL, 9, 0, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('5f15dec8ee4cecbbfaf1556a6265717c', 'admin', '2021-07-31 13:25:30', NULL, NULL, '361b59d77f2332c66f013160d71cebfe', 'sex', 'sex', 'String', NULL, 10, 0, NULL, 'sex1', NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('61c72f42b180d0989c6d5a9501c3215c', NULL, '2021-02-02 17:15:44', NULL, NULL, 'd7d5ac3cc4e6ee4e42752176774e6ef0', 'tp', 'tp', 'String', NULL, 3, 0, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('628a6c34aaa8765b97b31eba6e398263', NULL, '2021-02-02 17:15:44', NULL, NULL, 'd7d5ac3cc4e6ee4e42752176774e6ef0', 'cbr', 'cbr', 'String', NULL, 14, 0, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('62edd3fed3269113cf64f029204a302a', NULL, '2021-02-02 18:08:24', NULL, NULL, '87a440b35fd656844484774c66a7370c', 'zhuzhi', 'zhuzhi', 'String', NULL, 5, 0, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('65bf734fed925dea58e852f2d8bff01d', NULL, '2021-01-19 15:08:43', NULL, NULL, 'cf2211ad6777007564fba0c47b417eb5', 'moth', 'moth', 'String', NULL, 3, 0, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('6881e40e966d40fabcb1433fa88ac967', 'admin', '2022-12-08 21:31:48', NULL, NULL, '523d56e4aec77509385b8b2da61ceeb2', 'year', 'year', 'String', NULL, 2, 0, NULL, NULL, NULL, NULL, '');
|
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('699bdcc746b0545a402e457326fc5417', 'admin', '2023-08-12 17:16:00', NULL, NULL, '1316997232402231298', 'major', 'major', NULL, NULL, 15, 0, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('69ee0b9e3b3997a41ba3ecddb9379490', NULL, '2021-01-26 14:51:12', NULL, NULL, 'a900c843827dd08339a643aa0cf4305f', 'tp', 'tp', 'String', NULL, 7, 0, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('6a4340ffded3c2a542c9c84b6887d5ec', 'admin', '2023-08-12 17:16:00', NULL, NULL, '1316997232402231298', 'computer_level', 'computer_level', NULL, NULL, 22, 0, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('6b7d1903d87063c82a38787be330bc03', 'admin', '2023-08-12 17:16:00', NULL, NULL, '1316997232402231298', 'arrival_time', 'arrival_time', NULL, NULL, 24, 0, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('6b9255490d4f55ad363695a2dc75ba23', 'ajun007_cn', '2021-07-15 16:25:25', NULL, NULL, '1334708015269490689', 'meals_10', 'meals_10', 'String', NULL, 16, 0, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('6d76e0d74fca4ecc08b940a5e7d28fbe', 'admin', '2021-07-31 13:25:30', NULL, NULL, '361b59d77f2332c66f013160d71cebfe', 'update_by', 'update_by', 'String', NULL, 4, 0, NULL, 'zhiwu', NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('6e6b701650a51c5c8b121ceae60407ee', 'admin', '2021-07-31 13:27:27', NULL, NULL, 'f2e0f5cbc64aa1e676ac1291203ff7c8', 'id', 'id', 'String', NULL, 1, 0, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('6fa56346febc8e8fed68a48b1c5c3afd', 'admin', '2021-07-31 13:25:44', NULL, NULL, '9b7d28336b01f9a6b1a613957c3d7cda', 'age', 'age', 'String', NULL, 11, 0, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('6faff78bcb95a6f36876eb49ad016c24', NULL, '2021-01-15 15:42:03', NULL, NULL, '1316987047604514817', 'pworktime', 'pworktime', 'String', NULL, 18, 0, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('7084d486a5a39842208d43f525431bc5', 'ajun007_cn', '2021-07-15 16:25:25', NULL, NULL, '1334708015269490689', 'busfee_09', 'busfee_09', 'String', NULL, 14, 0, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('70b2102275592ec15e04f51ccce0eeb8', NULL, '2021-01-19 15:08:43', NULL, NULL, 'cf2211ad6777007564fba0c47b417eb5', 'province', 'province', 'date', NULL, 2, 0, 2, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('718eed5b892a9ea5ac6b07d755224f67', NULL, '2021-02-21 10:06:35', NULL, NULL, 'b0f04c0f50a659f99c8aebe6efb93682', 'tm', 'tm', 'String', NULL, 7, 0, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('72b324c5d495f0bc41943fd5889df534', NULL, '2021-02-04 09:44:09', NULL, NULL, '1283730831482937345', 'key5', 'key5', 'String', NULL, 7, 0, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('7385227a4808fc98d10b743843d4d2dd', 'admin', '2021-07-31 13:27:27', NULL, NULL, 'f2e0f5cbc64aa1e676ac1291203ff7c8', 'update_by', '职务', 'String', NULL, 4, 0, 3, '', NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('753507922658807808', '15629196826', '2022-11-18 16:58:18', NULL, NULL, '753507922642030592', 's_lot_no', 's_lot_no', 'String', NULL, 0, NULL, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('753507922667196416', '15629196826', '2022-11-18 16:58:18', NULL, NULL, '753507922642030592', 's_cust_po_no', 's_cust_po_no', 'String', NULL, 1, NULL, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('753507922675585024', '15629196826', '2022-11-18 16:58:18', NULL, NULL, '753507922642030592', 's_item_code', 's_item_code', 'String', NULL, 2, NULL, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('753507922679779328', '15629196826', '2022-11-18 16:58:18', NULL, NULL, '753507922642030592', 's_full_name', 's_full_name', 'String', NULL, 3, NULL, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('753507922683973632', '15629196826', '2022-11-18 16:58:18', NULL, NULL, '753507922642030592', 'modelcolor', 'modelcolor', 'String', NULL, 4, NULL, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('753507922692362240', '15629196826', '2022-11-18 16:58:18', NULL, NULL, '753507922642030592', 's_size_name', 's_size_name', 'String', NULL, 5, NULL, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('753507922696556544', '15629196826', '2022-11-18 16:58:18', NULL, NULL, '753507922642030592', 'd_delivery_date', 'd_delivery_date', 'String', NULL, 6, NULL, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('753507922700750848', '15629196826', '2022-11-18 16:58:18', NULL, NULL, '753507922642030592', 'string_agg', 'string_agg', 'String', NULL, 7, NULL, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('753507922704945152', '15629196826', '2022-11-18 16:58:18', NULL, NULL, '753507922642030592', 'b_kit', 'b_kit', 'String', NULL, 8, NULL, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('753507922709139456', '15629196826', '2022-11-18 16:58:19', NULL, NULL, '753507922642030592', 'i_qty', 'i_qty', 'String', NULL, 9, NULL, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('753507922717528064', '15629196826', '2022-11-18 16:58:19', NULL, NULL, '753507922642030592', 's_cover_img_url', 's_cover_img_url', 'String', NULL, 10, NULL, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('753508139776954368', '15629196826', '2022-11-18 16:59:10', NULL, NULL, '753508139764371456', 'suit_item_code', 'suit_item_code', 'String', NULL, 0, NULL, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('753508139785342976', '15629196826', '2022-11-18 16:59:10', NULL, NULL, '753508139764371456', 'suit_full_name', 'suit_full_name', 'String', NULL, 1, NULL, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('753508139793731584', '15629196826', '2022-11-18 16:59:10', NULL, NULL, '753508139764371456', 's_item_code', 's_item_code', 'String', NULL, 2, NULL, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('753508139797925888', '15629196826', '2022-11-18 16:59:10', NULL, NULL, '753508139764371456', 's_full_name', 's_full_name', 'String', NULL, 3, NULL, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('753508139802120192', '15629196826', '2022-11-18 16:59:10', NULL, NULL, '753508139764371456', 's_size_name', 's_size_name', 'String', NULL, 4, NULL, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('753508139810508800', '15629196826', '2022-11-18 16:59:10', NULL, NULL, '753508139764371456', 'n_match_qty', 'n_match_qty', 'String', NULL, 5, NULL, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('753fab383500780326eaa13d74a95608', NULL, '2021-02-21 10:06:35', NULL, NULL, 'b0f04c0f50a659f99c8aebe6efb93682', 'sex', 'sex', 'String', NULL, 3, 0, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('768fb670937ab4aadde39842df36bfd3', NULL, '2021-01-05 15:09:15', NULL, NULL, '1289140698221678593', 'cprice', 'cprice', 'String', NULL, 6, 0, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('7815e386102c287fec235b63ec20cde1', NULL, '2021-01-15 15:42:03', NULL, NULL, '1316987047604514817', 'currentdi', 'currentdi', 'String', NULL, 28, 0, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('783a66d9b87959f01a0d4dc94e343a91', NULL, '2021-03-09 14:20:07', NULL, NULL, '9a8f0f16cf42380df58cda0171a56c0c', 'department', 'department', 'String', NULL, 1, 0, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('7a198aa1b0794da0c9d1e550bd9811e7', NULL, '2021-02-02 18:08:24', NULL, NULL, '87a440b35fd656844484774c66a7370c', 'name', 'name', 'String', NULL, 1, 0, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('7c8c9313bad1cecce554fef8f0f5cfa6', 'ajun007_cn', '2021-07-15 16:25:25', NULL, NULL, '1334708015269490689', 'tuition_09', 'tuition_09', 'String', NULL, 12, 0, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('7d41c31044a2583ea2d44388a210e08b', 'admin', '2023-08-12 17:16:00', NULL, NULL, '1316997232402231298', 'education_experience', 'education_experience', NULL, NULL, 26, 0, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('7e9695bbe3ad7471095b90c420cf12b5', NULL, '2021-02-02 18:08:24', NULL, NULL, '87a440b35fd656844484774c66a7370c', 'rk', 'rk', 'String', NULL, 13, 0, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('7e97de03f85c61796b5f80b7d0534a86', NULL, '2021-01-15 15:42:03', NULL, NULL, '1316987047604514817', 'sex', 'sex', 'String', NULL, 5, 0, NULL, '', NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('7f4d0bd12990b9921fa434694da7c07a', NULL, '2021-02-04 09:44:09', NULL, NULL, '1283730831482937345', 'key4', 'key4', 'String', NULL, 6, 0, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('7ff0f99b85ec60379c6663cf97bfef78', 'admin', '2021-07-31 13:25:30', NULL, NULL, '361b59d77f2332c66f013160d71cebfe', 'laddress', 'laddress', 'String', NULL, 8, 0, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('82c54001881024066a851ebd8b3206be', 'admin', '2021-07-31 13:25:44', NULL, NULL, '9b7d28336b01f9a6b1a613957c3d7cda', 'update_by', '职务', 'String', NULL, 4, 1, 3, 'zhiwu', NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('850276980213514240', 'admin', '2023-08-12 17:44:00', NULL, NULL, '850276980138016768', 'id', 'id', 'String', NULL, 0, NULL, NULL, NULL, NULL, NULL, '');
|
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('850276980234485760', 'admin', '2023-08-12 17:44:00', NULL, NULL, '850276980138016768', 'code', 'code', 'String', NULL, 1, NULL, NULL, NULL, NULL, NULL, '');
|
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('850276980242874368', 'admin', '2023-08-12 17:44:00', NULL, NULL, '850276980138016768', 'name', 'name', 'String', NULL, 2, NULL, NULL, NULL, NULL, NULL, '');
|
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('850276980255457280', 'admin', '2023-08-12 17:44:00', NULL, NULL, '850276980138016768', 'note', 'note', 'String', NULL, 3, NULL, NULL, NULL, NULL, NULL, '');
|
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('850276980268040192', 'admin', '2023-08-12 17:44:00', NULL, NULL, '850276980138016768', 'status', 'status', 'String', NULL, 4, NULL, NULL, NULL, NULL, NULL, '');
|
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('850276980276428800', 'admin', '2023-08-12 17:44:00', NULL, NULL, '850276980138016768', 'type', 'type', 'String', NULL, 5, NULL, NULL, NULL, NULL, NULL, '');
|
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('850276980284817408', 'admin', '2023-08-12 17:44:00', NULL, NULL, '850276980138016768', 'json_str', 'json_str', 'String', NULL, 6, NULL, NULL, NULL, NULL, NULL, '');
|
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('850276980297400320', 'admin', '2023-08-12 17:44:00', NULL, NULL, '850276980138016768', 'api_url', 'api_url', 'String', NULL, 7, NULL, NULL, NULL, NULL, NULL, '');
|
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('850276980305788928', 'admin', '2023-08-12 17:44:00', NULL, NULL, '850276980138016768', 'thumb', 'thumb', 'String', NULL, 8, NULL, NULL, NULL, NULL, NULL, '');
|
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('850276980318371840', 'admin', '2023-08-12 17:44:00', NULL, NULL, '850276980138016768', 'create_by', 'create_by', 'String', NULL, 9, NULL, NULL, NULL, NULL, NULL, '');
|
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('850276980326760448', 'admin', '2023-08-12 17:44:00', NULL, NULL, '850276980138016768', 'create_time', 'create_time', 'String', NULL, 10, NULL, NULL, NULL, NULL, NULL, '');
|
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('850276980339343360', 'admin', '2023-08-12 17:44:00', NULL, NULL, '850276980138016768', 'update_by', 'update_by', 'String', NULL, 11, NULL, NULL, NULL, NULL, NULL, '');
|
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('850276980347731968', 'admin', '2023-08-12 17:44:00', NULL, NULL, '850276980138016768', 'update_time', 'update_time', 'String', NULL, 12, NULL, NULL, NULL, NULL, NULL, '');
|
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('850276980356120576', 'admin', '2023-08-12 17:44:00', NULL, NULL, '850276980138016768', 'del_flag', 'del_flag', 'String', NULL, 13, NULL, NULL, NULL, NULL, NULL, '');
|
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('850276980368703488', 'admin', '2023-08-12 17:44:00', NULL, NULL, '850276980138016768', 'api_method', 'api_method', 'String', NULL, 14, NULL, NULL, NULL, NULL, NULL, '');
|
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('850276980377092096', 'admin', '2023-08-12 17:44:00', NULL, NULL, '850276980138016768', 'api_code', 'api_code', 'String', NULL, 15, NULL, NULL, NULL, NULL, NULL, '');
|
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('850276980389675008', 'admin', '2023-08-12 17:44:00', NULL, NULL, '850276980138016768', 'template', 'template', 'String', NULL, 16, NULL, NULL, NULL, NULL, NULL, '');
|
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('850276980398063616', 'admin', '2023-08-12 17:44:00', NULL, NULL, '850276980138016768', 'view_count', 'view_count', 'String', NULL, 17, NULL, NULL, NULL, NULL, NULL, '');
|
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('850276980406452224', 'admin', '2023-08-12 17:44:00', NULL, NULL, '850276980138016768', 'css_str', 'css_str', 'String', NULL, 18, NULL, NULL, NULL, NULL, NULL, '');
|
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('850276980419035136', 'admin', '2023-08-12 17:44:00', NULL, NULL, '850276980138016768', 'js_str', 'js_str', 'String', NULL, 19, NULL, NULL, NULL, NULL, NULL, '');
|
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('850276980477755392', 'admin', '2023-08-12 17:44:00', NULL, NULL, '850276980138016768', 'tenant_id', 'tenant_id', 'String', NULL, 20, NULL, NULL, NULL, NULL, NULL, '');
|
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('850315907733487616', 'admin', '2023-08-12 22:51:28', NULL, NULL, '850315907695738880', 'department', 'department', 'String', NULL, 1, 0, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('850315907758653440', 'admin', '2023-08-12 22:51:28', NULL, NULL, '850315907695738880', 'education', 'education', 'String', NULL, 2, 0, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('850315907779624960', 'admin', '2023-08-12 22:51:28', NULL, NULL, '850315907695738880', 'sex', 'sex', 'String', NULL, 3, 0, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('850315907804790784', 'admin', '2023-08-12 22:51:28', NULL, NULL, '850315907695738880', 'age', 'age', 'String', NULL, 4, 0, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('850315907829956608', 'admin', '2023-08-12 22:51:28', NULL, NULL, '850315907695738880', 'name', 'name', 'String', NULL, 5, 0, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('850315907846733824', 'admin', '2023-08-12 22:51:28', NULL, NULL, '850315907695738880', 'salary', 'salary', 'String', NULL, 6, 0, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('850315907859316736', 'admin', '2023-08-12 22:51:28', NULL, NULL, '850315907695738880', 'tm', 'tm', 'String', NULL, 7, 0, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('850318855150600192', 'admin', '2023-08-21 09:31:20', NULL, NULL, '850318855133822976', 'diqu', 'diqu', 'String', NULL, 0, 0, NULL, NULL, NULL, NULL, '');
|
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('850318855163183104', 'admin', '2023-08-21 09:31:20', NULL, NULL, '850318855133822976', 'class', 'class', 'String', NULL, 1, 0, NULL, NULL, NULL, NULL, '');
|
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('850318855171571712', 'admin', '2023-08-21 09:31:20', NULL, NULL, '850318855133822976', 'year', 'year', 'String', NULL, 2, 0, NULL, NULL, NULL, NULL, '');
|
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('850318855179960320', 'admin', '2023-08-21 09:31:20', NULL, NULL, '850318855133822976', 'mouth', 'mouth', 'String', NULL, 3, 0, NULL, NULL, NULL, NULL, '');
|
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('850318855192543232', 'admin', '2023-08-21 09:31:20', NULL, NULL, '850318855133822976', 'sales', 'sales', 'String', NULL, 4, 0, NULL, NULL, NULL, NULL, '');
|
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('850709188724228096', 'admin', '2023-08-13 22:21:26', NULL, NULL, '850709188669702144', 'create_time', 'create_time', 'String', NULL, 0, NULL, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('850709188766171136', 'admin', '2023-08-13 22:21:26', NULL, NULL, '850709188669702144', 'num', 'num', 'String', NULL, 1, NULL, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('850709188782948352', 'admin', '2023-08-13 22:21:26', NULL, NULL, '850709188669702144', 'lower', 'lower', 'String', NULL, 2, NULL, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('850709188808114176', 'admin', '2023-08-13 22:21:26', NULL, NULL, '850709188669702144', 'upper', 'upper', 'String', NULL, 3, NULL, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('850943991046283264', 'admin', '2023-08-14 13:54:27', NULL, NULL, '850943991000145920', 'id', 'id', 'String', NULL, 0, NULL, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('850943991084032000', 'admin', '2023-08-14 13:54:27', NULL, NULL, '850943991000145920', 'name', 'name', 'String', NULL, 1, NULL, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('850943991100809216', 'admin', '2023-08-14 13:54:27', NULL, NULL, '850943991000145920', 'gtime', 'gtime', 'String', NULL, 2, NULL, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('850943991117586432', 'admin', '2023-08-14 13:54:27', NULL, NULL, '850943991000145920', 'update_by', 'update_by', 'String', NULL, 3, NULL, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('850943991130169344', 'admin', '2023-08-14 13:54:27', NULL, NULL, '850943991000145920', 'jphone', 'jphone', 'String', NULL, 4, NULL, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('850943991146946560', 'admin', '2023-08-14 13:54:27', NULL, NULL, '850943991000145920', 'birth', 'birth', 'String', NULL, 5, NULL, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('850943991159529472', 'admin', '2023-08-14 13:54:27', NULL, NULL, '850943991000145920', 'hukou', 'hukou', 'String', NULL, 6, NULL, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('850943991176306688', 'admin', '2023-08-14 13:54:27', NULL, NULL, '850943991000145920', 'laddress', 'laddress', 'String', NULL, 7, NULL, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('850943991197278208', 'admin', '2023-08-14 13:54:28', NULL, NULL, '850943991000145920', 'jperson', 'jperson', 'String', NULL, 8, NULL, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('850943991214055424', 'admin', '2023-08-14 13:54:28', NULL, NULL, '850943991000145920', 'sex', 'sex', 'String', NULL, 9, NULL, NULL, 'sex', NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('850943991226638336', 'admin', '2023-08-14 13:54:28', NULL, NULL, '850943991000145920', 'age', 'age', 'String', NULL, 10, NULL, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('850943991243415552', 'admin', '2023-08-14 13:54:28', NULL, NULL, '850943991000145920', 'type', 'type', 'String', NULL, 11, NULL, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('853414333962592256', 'admin', '2023-08-21 09:30:55', NULL, NULL, '853414333878706176', 'ctotal', 'ctotal', 'String', NULL, 0, NULL, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('853414334004535296', 'admin', '2023-08-21 09:30:55', NULL, NULL, '853414333878706176', 'cname', 'cname', 'String', NULL, 1, NULL, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('853414334025506816', 'admin', '2023-08-21 09:30:55', NULL, NULL, '853414333878706176', 'cprice', 'cprice', 'String', NULL, 2, NULL, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('853414334046478336', 'admin', '2023-08-21 09:30:55', NULL, NULL, '853414333878706176', 'riqi', 'riqi', 'String', NULL, 3, NULL, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('853414334059061248', 'admin', '2023-08-21 09:30:55', NULL, NULL, '853414333878706176', 'id', 'id', 'String', NULL, 4, NULL, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('853414334071644160', 'admin', '2023-08-21 09:30:55', NULL, NULL, '853414333878706176', 'dtotal', 'dtotal', 'String', NULL, 5, NULL, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('853414334084227072', 'admin', '2023-08-21 09:30:55', NULL, NULL, '853414333878706176', 'tp', 'tp', 'String', NULL, 6, NULL, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('853414334092615680', 'admin', '2023-08-21 09:30:55', NULL, NULL, '853414333878706176', 'ztotal', 'ztotal', 'String', NULL, 7, NULL, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('853414334105198592', 'admin', '2023-08-21 09:30:55', NULL, NULL, '853414333878706176', 'cnum', 'cnum', 'String', NULL, 8, NULL, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('859286972987940864', 'admin', '2023-09-06 14:26:29', NULL, NULL, '859286972912443392', 'id', 'id', 'String', NULL, 0, NULL, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('859286973008912384', 'admin', '2023-09-06 14:26:29', NULL, NULL, '859286972912443392', 'dict_name', 'dict_name', 'String', NULL, 1, NULL, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('859286973013106688', 'admin', '2023-09-06 14:26:29', NULL, NULL, '859286972912443392', 'dict_code', 'dict_code', 'String', NULL, 2, NULL, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('859286973021495296', 'admin', '2023-09-06 14:26:29', NULL, NULL, '859286972912443392', 'description', 'description', 'String', NULL, 3, NULL, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('859286973029883904', 'admin', '2023-09-06 14:26:29', NULL, NULL, '859286972912443392', 'del_flag', 'del_flag', 'String', NULL, 4, NULL, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('859286973034078208', 'admin', '2023-09-06 14:26:29', NULL, NULL, '859286972912443392', 'create_by', 'create_by', 'String', NULL, 5, NULL, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('859286973042466816', 'admin', '2023-09-06 14:26:29', NULL, NULL, '859286972912443392', 'create_time', 'create_time', 'String', NULL, 6, NULL, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('859286973046661120', 'admin', '2023-09-06 14:26:29', NULL, NULL, '859286972912443392', 'update_by', 'update_by', 'String', NULL, 7, NULL, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('859286973055049728', 'admin', '2023-09-06 14:26:29', NULL, NULL, '859286972912443392', 'update_time', 'update_time', 'String', NULL, 8, NULL, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('859286973059244032', 'admin', '2023-09-06 14:26:29', NULL, NULL, '859286972912443392', 'type', 'type', 'String', NULL, 9, NULL, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('859286973067632640', 'admin', '2023-09-06 14:26:29', NULL, NULL, '859286972912443392', 'tenant_id', 'tenant_id', 'String', NULL, 10, NULL, NULL, NULL, NULL, NULL, NULL);
|
2024-02-18 11:29:58 +00:00
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('864668240437116928', 'admin', '2020-12-02 18:35:49', NULL, NULL, '864668240407756800', 'name', 'name', 'String', NULL, 1, 0, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('864668240474865664', 'admin', '2020-12-02 18:35:49', NULL, NULL, '864668240407756800', 'value', 'value', 'String', NULL, 2, 0, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('864668240508420096', 'admin', '2020-12-02 20:07:54', NULL, NULL, '864668240495837184', 'name', 'name', 'String', NULL, 1, 0, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('864668240521003008', 'admin', '2020-12-02 20:07:54', NULL, NULL, '864668240495837184', 'sj', 'sj', 'String', NULL, 2, 0, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('864668240537780224', 'admin', '2020-12-02 20:07:54', NULL, NULL, '864668240495837184', 'type', 'type', 'String', NULL, 3, 0, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('864668240546168832', 'admin', '2020-12-02 20:07:54', NULL, NULL, '864668240495837184', 'je', 'je', 'String', NULL, 4, 0, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('864668240550363136', 'admin', '2020-12-02 20:07:54', NULL, NULL, '864668240495837184', 'jg', 'jg', 'String', NULL, 5, 0, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('864668240558751744', 'admin', '2020-12-02 20:07:54', NULL, NULL, '864668240495837184', 'jl', 'jl', 'String', NULL, 6, 0, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('864668240592306176', 'admin', '2020-12-07 19:31:59', NULL, NULL, '864668240575528960', 'name', 'name', 'String', NULL, 1, 0, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('864668240600694784', 'admin', '2020-12-07 19:31:59', NULL, NULL, '864668240575528960', 'value', 'value', 'String', NULL, 2, 0, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('865474415273541632', 'admin', '2023-09-23 16:13:11', NULL, NULL, '865474415198044160', 'department', 'department', 'String', NULL, 1, 0, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('865474415361622016', 'admin', '2023-09-23 16:13:11', NULL, NULL, '865474415198044160', 'education', 'education', 'String', NULL, 2, 0, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('865474415382593536', 'admin', '2023-09-23 16:13:11', NULL, NULL, '865474415198044160', 'sex', 'sex', 'String', NULL, 3, 0, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('865474415407759360', 'admin', '2023-09-23 16:13:11', NULL, NULL, '865474415198044160', 'age', 'age', 'String', NULL, 4, 0, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('865474415428730880', 'admin', '2023-09-23 16:13:11', NULL, NULL, '865474415198044160', 'name', 'name', 'String', NULL, 5, 0, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('865474415445508096', 'admin', '2023-09-23 16:13:11', NULL, NULL, '865474415198044160', 'salary', 'salary', 'String', NULL, 6, 0, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('865474415462285312', 'admin', '2023-09-23 16:13:11', NULL, NULL, '865474415198044160', 'tm', 'tm', 'String', NULL, 7, 0, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('873354437711724544', 'admin', '2023-10-15 10:05:34', NULL, NULL, '873354437585895424', 'id', 'id', 'String', NULL, 0, NULL, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('873354437770444800', 'admin', '2023-10-15 10:05:34', NULL, NULL, '873354437585895424', 'dict_name', 'dict_name', 'String', NULL, 1, NULL, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('873354437803999232', 'admin', '2023-10-15 10:05:34', NULL, NULL, '873354437585895424', 'dict_code', 'dict_code', 'String', NULL, 2, NULL, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('873354437824970752', 'admin', '2023-10-15 10:05:34', NULL, NULL, '873354437585895424', 'description', 'description', 'String', NULL, 3, NULL, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('873354437850136576', 'admin', '2023-10-15 10:05:34', NULL, NULL, '873354437585895424', 'del_flag', 'del_flag', 'String', NULL, 4, NULL, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('873354437866913792', 'admin', '2023-10-15 10:05:34', NULL, NULL, '873354437585895424', 'create_by', 'create_by', 'String', NULL, 5, NULL, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('873354437887885312', 'admin', '2023-10-15 10:05:34', NULL, NULL, '873354437585895424', 'create_time', 'create_time', 'String', NULL, 6, NULL, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('873354437925634048', 'admin', '2023-10-15 10:05:34', NULL, NULL, '873354437585895424', 'update_by', 'update_by', 'String', NULL, 7, NULL, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('873354437954994176', 'admin', '2023-10-15 10:05:34', NULL, NULL, '873354437585895424', 'update_time', 'update_time', 'String', NULL, 8, NULL, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('873354437971771392', 'admin', '2023-10-15 10:05:34', NULL, NULL, '873354437585895424', 'type', 'type', 'String', NULL, 9, NULL, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('873354437996937216', 'admin', '2023-10-15 10:05:34', NULL, NULL, '873354437585895424', 'tenant_id', 'tenant_id', 'String', NULL, 10, NULL, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('873819810542178304', 'admin', '2023-10-16 16:54:48', NULL, NULL, '873819810382794752', 'id', 'id', 'String', NULL, 0, NULL, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('873819810588315648', 'admin', '2023-10-16 16:54:48', NULL, NULL, '873819810382794752', 'dict_name', 'dict_name', 'String', NULL, 1, NULL, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('873819810613481472', 'admin', '2023-10-16 16:54:48', NULL, NULL, '873819810382794752', 'dict_code', 'dict_code', 'String', NULL, 2, NULL, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('873819810638647296', 'admin', '2023-10-16 16:54:48', NULL, NULL, '873819810382794752', 'description', 'description', 'String', NULL, 3, NULL, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('873819810655424512', 'admin', '2023-10-16 16:54:48', NULL, NULL, '873819810382794752', 'del_flag', 'del_flag', 'String', NULL, 4, NULL, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('873819810676396032', 'admin', '2023-10-16 16:54:48', NULL, NULL, '873819810382794752', 'create_by', 'create_by', 'String', NULL, 5, NULL, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('873819810697367552', 'admin', '2023-10-16 16:54:48', NULL, NULL, '873819810382794752', 'create_time', 'create_time', 'String', NULL, 6, NULL, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('873819810718339072', 'admin', '2023-10-16 16:54:48', NULL, NULL, '873819810382794752', 'update_by', 'update_by', 'String', NULL, 7, NULL, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('873819810739310592', 'admin', '2023-10-16 16:54:48', NULL, NULL, '873819810382794752', 'update_time', 'update_time', 'String', NULL, 8, NULL, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('873819810760282112', 'admin', '2023-10-16 16:54:48', NULL, NULL, '873819810382794752', 'type', 'type', 'String', NULL, 9, NULL, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('873819810781253632', 'admin', '2023-10-16 16:54:48', NULL, NULL, '873819810382794752', 'tenant_id', 'tenant_id', 'String', NULL, 10, NULL, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('873821948399898624', 'admin', '2023-10-16 17:03:18', NULL, NULL, '873821948353761280', 'id', 'id', 'String', NULL, 0, NULL, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('873821948425064448', 'admin', '2023-10-16 17:03:18', NULL, NULL, '873821948353761280', 'dict_name', 'dict_name', 'String', NULL, 1, NULL, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('873821948437647360', 'admin', '2023-10-16 17:03:18', NULL, NULL, '873821948353761280', 'dict_code', 'dict_code', 'String', NULL, 2, NULL, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('873821948450230272', 'admin', '2023-10-16 17:03:18', NULL, NULL, '873821948353761280', 'description', 'description', 'String', NULL, 3, NULL, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('873821948462813184', 'admin', '2023-10-16 17:03:18', NULL, NULL, '873821948353761280', 'del_flag', 'del_flag', 'String', NULL, 4, NULL, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('873821948475396096', 'admin', '2023-10-16 17:03:18', NULL, NULL, '873821948353761280', 'create_by', 'create_by', 'String', NULL, 5, NULL, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('873821948483784704', 'admin', '2023-10-16 17:03:18', NULL, NULL, '873821948353761280', 'create_time', 'create_time', 'String', NULL, 6, NULL, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('873821948496367616', 'admin', '2023-10-16 17:03:18', NULL, NULL, '873821948353761280', 'update_by', 'update_by', 'String', NULL, 7, NULL, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('873821948508950528', 'admin', '2023-10-16 17:03:18', NULL, NULL, '873821948353761280', 'update_time', 'update_time', 'String', NULL, 8, NULL, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('873821948517339136', 'admin', '2023-10-16 17:03:18', NULL, NULL, '873821948353761280', 'type', 'type', 'String', NULL, 9, NULL, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('873821948525727744', 'admin', '2023-10-16 17:03:18', NULL, NULL, '873821948353761280', 'tenant_id', 'tenant_id', 'String', NULL, 10, NULL, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('873822326042447872', 'admin', '2023-10-16 17:04:48', NULL, NULL, '873822325962756096', 'id', 'id', 'String', NULL, 0, NULL, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('873822326080196608', 'admin', '2023-10-16 17:04:48', NULL, NULL, '873822325962756096', 'dict_name', 'dict_name', 'String', NULL, 1, NULL, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('873822326101168128', 'admin', '2023-10-16 17:04:48', NULL, NULL, '873822325962756096', 'dict_code', 'dict_code', 'String', NULL, 2, NULL, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('873822326117945344', 'admin', '2023-10-16 17:04:48', NULL, NULL, '873822325962756096', 'description', 'description', 'String', NULL, 3, NULL, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('873822326138916864', 'admin', '2023-10-16 17:04:48', NULL, NULL, '873822325962756096', 'del_flag', 'del_flag', 'String', NULL, 4, NULL, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('873822326155694080', 'admin', '2023-10-16 17:04:48', NULL, NULL, '873822325962756096', 'create_by', 'create_by', 'String', NULL, 5, NULL, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('873822326172471296', 'admin', '2023-10-16 17:04:48', NULL, NULL, '873822325962756096', 'create_time', 'create_time', 'String', NULL, 6, NULL, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('873822326185054208', 'admin', '2023-10-16 17:04:48', NULL, NULL, '873822325962756096', 'update_by', 'update_by', 'String', NULL, 7, NULL, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('873822326197637120', 'admin', '2023-10-16 17:04:48', NULL, NULL, '873822325962756096', 'update_time', 'update_time', 'String', NULL, 8, NULL, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('873822326206025728', 'admin', '2023-10-16 17:04:48', NULL, NULL, '873822325962756096', 'type', 'type', 'String', NULL, 9, NULL, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('873822326218608640', 'admin', '2023-10-16 17:04:48', NULL, NULL, '873822325962756096', 'tenant_id', 'tenant_id', 'String', NULL, 10, NULL, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('876670636100997120', 'admin', '2023-10-24 13:42:58', NULL, NULL, '876670636042276864', 'id', 'id', 'String', NULL, 0, NULL, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('876670636147134464', 'admin', '2023-10-24 13:42:58', NULL, NULL, '876670636042276864', 'dict_name', 'dict_name', 'String', NULL, 1, NULL, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('876670636180688896', 'admin', '2023-10-24 13:42:58', NULL, NULL, '876670636042276864', 'dict_code', 'dict_code', 'String', NULL, 2, NULL, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('876670636201660416', 'admin', '2023-10-24 13:42:58', NULL, NULL, '876670636042276864', 'description', 'description', 'String', NULL, 3, NULL, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('876670636218437632', 'admin', '2023-10-24 13:42:58', NULL, NULL, '876670636042276864', 'del_flag', 'del_flag', 'String', NULL, 4, NULL, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('876670636239409152', 'admin', '2023-10-24 13:42:58', NULL, NULL, '876670636042276864', 'create_by', 'create_by', 'String', NULL, 5, NULL, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('876670636251992064', 'admin', '2023-10-24 13:42:58', NULL, NULL, '876670636042276864', 'create_time', 'create_time', 'String', NULL, 6, NULL, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('876670636264574976', 'admin', '2023-10-24 13:42:58', NULL, NULL, '876670636042276864', 'update_by', 'update_by', 'String', NULL, 7, NULL, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('876670636281352192', 'admin', '2023-10-24 13:42:58', NULL, NULL, '876670636042276864', 'update_time', 'update_time', 'String', NULL, 8, NULL, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('876670636293935104', 'admin', '2023-10-24 13:42:58', NULL, NULL, '876670636042276864', 'type', 'type', 'String', NULL, 9, NULL, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('876670636306518016', 'admin', '2023-10-24 13:42:58', NULL, NULL, '876670636042276864', 'tenant_id', 'tenant_id', 'String', NULL, 10, NULL, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('876671164537163776', 'admin', '2023-10-24 13:45:04', NULL, NULL, '876671164482637824', 'biz_income', 'biz_income', 'String', NULL, 0, NULL, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('876671164566523904', 'admin', '2023-10-24 13:45:04', NULL, NULL, '876671164482637824', 'bx_jj_yongjin', 'bx_jj_yongjin', 'String', NULL, 1, NULL, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('876671164595884032', 'admin', '2023-10-24 13:45:04', NULL, NULL, '876671164482637824', 'bx_zx_money', 'bx_zx_money', 'String', NULL, 2, NULL, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('876671164616855552', 'admin', '2023-10-24 13:45:04', NULL, NULL, '876671164482637824', 'chengbao_gz_money', 'chengbao_gz_money', 'String', NULL, 3, NULL, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('876671164629438464', 'admin', '2023-10-24 13:45:04', NULL, NULL, '876671164482637824', 'bx_gg_moeny', 'bx_gg_moeny', 'String', NULL, 4, NULL, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('876671164642021376', 'admin', '2023-10-24 13:45:04', NULL, NULL, '876671164482637824', 'tb_zx_money', 'tb_zx_money', 'String', NULL, 5, NULL, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('876671164658798592', 'admin', '2023-10-24 13:45:04', NULL, NULL, '876671164482637824', 'neikong_zx_money', 'neikong_zx_money', 'String', NULL, 6, NULL, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('876671164667187200', 'admin', '2023-10-24 13:45:04', NULL, NULL, '876671164482637824', 'total', 'total', 'String', NULL, 7, NULL, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('876671521132695552', 'admin', '2023-10-24 13:46:29', NULL, NULL, '876671521099141120', 'id', 'id', 'String', NULL, 0, NULL, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('876671521153667072', 'admin', '2023-10-24 13:46:29', NULL, NULL, '876671521099141120', 'dict_name', 'dict_name', 'String', NULL, 1, NULL, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('876671521166249984', 'admin', '2023-10-24 13:46:29', NULL, NULL, '876671521099141120', 'dict_code', 'dict_code', 'String', NULL, 2, NULL, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('876671521178832896', 'admin', '2023-10-24 13:46:29', NULL, NULL, '876671521099141120', 'description', 'description', 'String', NULL, 3, NULL, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('876671521187221504', 'admin', '2023-10-24 13:46:29', NULL, NULL, '876671521099141120', 'del_flag', 'del_flag', 'String', NULL, 4, NULL, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('876671521208193024', 'admin', '2023-10-24 13:46:29', NULL, NULL, '876671521099141120', 'create_by', 'create_by', 'String', NULL, 5, NULL, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('876671521216581632', 'admin', '2023-10-24 13:46:29', NULL, NULL, '876671521099141120', 'create_time', 'create_time', 'String', NULL, 6, NULL, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('876671521224970240', 'admin', '2023-10-24 13:46:29', NULL, NULL, '876671521099141120', 'update_by', 'update_by', 'String', NULL, 7, NULL, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('876671521245941760', 'admin', '2023-10-24 13:46:29', NULL, NULL, '876671521099141120', 'update_time', 'update_time', 'String', NULL, 8, NULL, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('876671521258524672', 'admin', '2023-10-24 13:46:29', NULL, NULL, '876671521099141120', 'type', 'type', 'String', NULL, 9, NULL, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('876671521266913280', 'admin', '2023-10-24 13:46:29', NULL, NULL, '876671521099141120', 'tenant_id', 'tenant_id', 'String', NULL, 10, NULL, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('876671521296273408', 'admin', '2023-10-24 13:46:29', NULL, NULL, '876671521283690496', 'biz_income', 'biz_income', 'String', NULL, 0, 0, 1, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('876671521308856320', 'admin', '2023-10-24 13:46:29', NULL, NULL, '876671521283690496', 'bx_jj_yongjin', 'bx_jj_yongjin', 'String', NULL, 1, NULL, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('876671521317244928', 'admin', '2023-10-24 13:46:29', NULL, NULL, '876671521283690496', 'bx_zx_money', 'bx_zx_money', 'String', NULL, 2, NULL, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('876671521325633536', 'admin', '2023-10-24 13:46:29', NULL, NULL, '876671521283690496', 'chengbao_gz_money', 'chengbao_gz_money', 'String', NULL, 3, NULL, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('876671521334022144', 'admin', '2023-10-24 13:46:29', NULL, NULL, '876671521283690496', 'bx_gg_moeny', 'bx_gg_moeny', 'String', NULL, 4, NULL, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('876671521342410752', 'admin', '2023-10-24 13:46:29', NULL, NULL, '876671521283690496', 'tb_zx_money', 'tb_zx_money', 'String', NULL, 5, NULL, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('876671521350799360', 'admin', '2023-10-24 13:46:29', NULL, NULL, '876671521283690496', 'neikong_zx_money', 'neikong_zx_money', 'String', NULL, 6, NULL, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('876671521363382272', 'admin', '2023-10-24 13:46:29', NULL, NULL, '876671521283690496', 'total', 'total', 'String', NULL, 7, NULL, NULL, NULL, NULL, NULL, NULL);
|
2023-09-08 16:18:56 +00:00
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('87cc9e7fa983cf67d7cb82582a5c4201', NULL, '2021-03-09 14:20:07', NULL, NULL, '9a8f0f16cf42380df58cda0171a56c0c', 'tm', 'tm', 'String', NULL, 7, 0, NULL, NULL, NULL, NULL, NULL);
|
2024-02-18 11:29:58 +00:00
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('891609257987899392', 'admin', '2023-12-04 19:03:43', NULL, NULL, '891607755638538240', '需求名称', '需求名称', 'String', NULL, 0, NULL, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('891609258050813952', 'admin', '2023-12-04 19:03:43', NULL, NULL, '891607755638538240', '需求优先级', '需求优先级', 'String', NULL, 1, 1, 4, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('891609258059202560', 'admin', '2023-12-04 19:03:43', NULL, NULL, '891607755638538240', '当前状态', '当前状态', 'String', NULL, 2, NULL, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('891609258067591168', 'admin', '2023-12-04 19:03:43', NULL, NULL, '891607755638538240', '所处阶段', '所处阶段', 'String', NULL, 3, 1, 4, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('891612822026420224', 'admin', '2023-12-04 19:17:52', NULL, NULL, '891612821867036672', 'id', 'id', 'String', NULL, 0, NULL, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('891612822055780352', 'admin', '2023-12-04 19:17:52', NULL, NULL, '891612821867036672', 'name', 'name', 'String', NULL, 1, 1, 4, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('891612822097723392', 'admin', '2023-12-04 19:17:52', NULL, NULL, '891612821867036672', 'gtime', 'gtime', 'String', NULL, 2, NULL, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('891612822114500608', 'admin', '2023-12-04 19:17:52', NULL, NULL, '891612821867036672', 'update_by', 'update_by', 'String', NULL, 3, NULL, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('891612822122889216', 'admin', '2023-12-04 19:17:52', NULL, NULL, '891612821867036672', 'jphone', 'jphone', 'String', NULL, 4, NULL, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('891612822152249344', 'admin', '2023-12-04 19:17:52', NULL, NULL, '891612821867036672', 'birth', 'birth', 'String', NULL, 5, NULL, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('891612822164832256', 'admin', '2023-12-04 19:17:52', NULL, NULL, '891612821867036672', 'hukou', 'hukou', 'String', NULL, 6, NULL, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('891612822177415168', 'admin', '2023-12-04 19:17:52', NULL, NULL, '891612821867036672', 'laddress', 'laddress', 'String', NULL, 7, NULL, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('891612822189998080', 'admin', '2023-12-04 19:17:52', NULL, NULL, '891612821867036672', 'jperson', 'jperson', 'String', NULL, 8, NULL, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('891612822206775296', 'admin', '2023-12-04 19:17:52', NULL, NULL, '891612821867036672', 'sex', 'sex', 'String', NULL, 9, NULL, NULL, NULL, NULL, NULL, NULL);
|
2023-09-08 16:18:56 +00:00
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('89745ede255d0fb57ed840191e54194c', NULL, '2021-01-15 15:42:03', NULL, NULL, '1316987047604514817', 'nation', 'nation', 'String', NULL, 9, 0, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('89a5844dc1b1c0976d455bdffc24948a', 'ajun007_cn', '2021-07-15 16:25:25', NULL, NULL, '1334708015269490689', 'class', 'class', 'String', NULL, 5, 0, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('8aca97602f1a75f10b4ffaa63215b23e', 'admin', '2021-07-31 13:27:27', NULL, NULL, 'f2e0f5cbc64aa1e676ac1291203ff7c8', 'laddress', 'laddress', 'String', NULL, 8, 0, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('8bc9239f84644cb23c2cf1e550c8ce78', 'ajun007_cn', '2021-07-15 16:25:25', NULL, NULL, '1334708015269490689', 'tuition_10', 'tuition_10', 'String', NULL, 15, 0, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('8c70d367f8332f43aa69007383d1e64f', NULL, '2021-02-04 09:44:09', NULL, NULL, '1283730831482937345', 'key2', 'key2', 'String', NULL, 4, 0, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('8c74ca4632d6c61b3f3390a12a122430', NULL, '2021-02-04 09:44:09', NULL, NULL, '1283730831482937345', 'key1', 'key1', 'String', NULL, 3, 0, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('8e39d42a7fad183fe75ce1a56f148db1', NULL, '2021-01-05 15:09:15', NULL, NULL, '1289140698221678593', 'bianma', 'bianma', 'String', NULL, 2, 0, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('905a5b9fb7b2c8bb1318ff9240161f1b', 'ajun007_cn', '2021-07-15 16:25:25', NULL, NULL, '1334708015269490689', 'ncnum', 'ncnum', 'String', NULL, 2, 0, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('90807f97e2beaaf889fef949a63ece56', NULL, '2021-03-09 14:20:07', NULL, NULL, '9a8f0f16cf42380df58cda0171a56c0c', 'name', 'name', 'String', NULL, 5, 0, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('917a991f020768ccefeb0b0c045a9013', NULL, '2021-02-21 10:06:35', NULL, NULL, 'b0f04c0f50a659f99c8aebe6efb93682', 'salary', 'salary', 'String', NULL, 6, 0, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('91f30a83a6a7f4894b52a83de83f84d6', 'admin', '2023-08-12 17:16:00', NULL, NULL, '1316997232402231298', 'nation', 'nation', NULL, NULL, 6, 0, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('92355d34508384aaaf278973013569fd', 'admin', '2023-08-12 17:17:13', NULL, NULL, 'c73e1f3325b926081641d918921d2bcd', 'id', 'id', 'String', NULL, 1, 0, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('9249dd5b8dca523a0013fc2620aaa6a2', 'admin', '2021-07-31 13:25:30', NULL, NULL, '361b59d77f2332c66f013160d71cebfe', 'age', '年龄', 'number', NULL, 11, 1, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('9276e22e051ecc06c562693f197fda51', 'admin', '2021-07-31 13:25:44', NULL, NULL, '9b7d28336b01f9a6b1a613957c3d7cda', 'laddress', 'laddress', 'String', NULL, 8, 0, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('93be5d8f4c50973898c17eb8634fc86f', NULL, '2021-01-26 14:51:12', NULL, NULL, 'a900c843827dd08339a643aa0cf4305f', 'dtotal', 'dtotal', 'String', NULL, 6, 0, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('9442a7c3033cb54c0b75acb9fbe03096', 'admin', '2021-07-31 13:25:44', NULL, NULL, '9b7d28336b01f9a6b1a613957c3d7cda', 'id', 'id', 'String', NULL, 1, 0, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('94b34fe50ea68945bbcf65a26766ec18', 'admin', '2021-07-31 13:25:44', NULL, NULL, '9b7d28336b01f9a6b1a613957c3d7cda', 'name', 'name', 'String', NULL, 2, 0, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('97bc5144419c68a4a21986ab2e1e539e', NULL, '2021-02-02 16:19:03', NULL, NULL, 'a98ee8179bef12f8fa2e0f9f3237fb83', 'name', 'name', 'String', NULL, 1, 0, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('9897c44836be95ebace00f8f849341c2', 'ajun007_cn', '2021-07-15 16:25:25', NULL, NULL, '1334708015269490689', 'city', 'city', 'String', NULL, 0, 0, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('98aae882509c852c28d75c93935e38ed', NULL, '2021-02-02 17:15:44', NULL, NULL, 'd7d5ac3cc4e6ee4e42752176774e6ef0', 'ldate', 'ldate', 'String', NULL, 19, 0, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('9b28d8d472973bc271e7fdd38c4b239d', 'admin', '2023-08-12 17:16:00', NULL, NULL, '1316997232402231298', 'create_by', 'create_by', NULL, NULL, 28, 0, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('9c3a5463968657e7cd57a2a9f60fbe27', NULL, '2021-01-15 15:42:03', NULL, NULL, '1316987047604514817', 'entrytime', 'entrytime', 'String', NULL, 19, 0, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('9d3ed54d9834cdcb167bed97d2d2edad', NULL, '2021-02-02 18:08:24', NULL, NULL, '87a440b35fd656844484774c66a7370c', 'type', 'type', 'String', NULL, 12, 0, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('9d4829028207d460e21af80b7ded7bd8', 'ajun007_cn', '2021-07-15 16:25:25', NULL, NULL, '1334708015269490689', 'num', 'num', 'String', NULL, 3, 0, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('9dcf91b895dbc139ea3cc82b01991b3d', NULL, '2021-03-09 14:20:07', NULL, NULL, '9a8f0f16cf42380df58cda0171a56c0c', 'education', 'education', 'String', NULL, 2, 0, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('9e991a697958560f04a03c8cec937fd9', NULL, '2021-01-28 16:18:05', NULL, NULL, '44a261c2dcaaaaea51c18378e46ba5b9', 'fname', 'fname', 'String', NULL, 3, 0, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('9f570992770d214c22807e53a9e2fb59', NULL, '2021-01-15 15:42:03', NULL, NULL, '1316987047604514817', 'health', 'health', 'String', NULL, 10, 0, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('a0320956d840e2683eb496ddceae7e1d', 'admin', '2021-07-31 13:25:44', NULL, NULL, '9b7d28336b01f9a6b1a613957c3d7cda', 'hukou', 'hukou', 'String', NULL, 7, 0, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('a060ad08ad31e19da9cf20ac1331dd9f', NULL, '2021-02-04 09:44:09', NULL, NULL, '1283730831482937345', 'percent', 'percent', 'String', NULL, 10, 0, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('a1872c3736cc2f24ab2ebb30cc518897', 'admin', '2023-08-12 17:16:00', NULL, NULL, '1316997232402231298', 'height', 'height', NULL, NULL, 9, 0, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('a1996abd6f735b1191e179936668efbb', NULL, '2021-03-09 14:20:07', NULL, NULL, '9a8f0f16cf42380df58cda0171a56c0c', 'sex', 'sex', 'String', NULL, 3, 0, NULL, NULL, NULL, NULL, NULL);
|
2021-10-11 09:50:19 +00:00
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('a2e680c356e712b43343d589539da011', NULL, '2021-01-08 10:47:52', NULL, NULL, 'f7649b77cfc9e0a9dacdac370cd4036b', 'name', 'name', 'String', NULL, 1, 0, NULL, NULL, NULL, NULL, NULL);
|
2023-09-08 16:18:56 +00:00
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('a34e6049660fba6c270a831f3a0a8ce0', 'admin', '2023-08-12 17:16:00', NULL, NULL, '1316997232402231298', 'foreign_language', 'foreign_language', NULL, NULL, 20, 0, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('a3e4c862492d135c94e8f5b538b58af0', 'admin', '2021-07-31 13:25:30', NULL, NULL, '361b59d77f2332c66f013160d71cebfe', 'jperson', 'jperson', 'String', NULL, 9, 0, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('a3f22d3ca94671f46793beffd400da77', 'admin', '2021-07-31 13:25:44', NULL, NULL, '9b7d28336b01f9a6b1a613957c3d7cda', 'jphone', 'jphone', 'String', NULL, 5, 0, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('a4fd6df1bd0a94973078d9246814cf75', NULL, '2021-02-02 17:15:44', NULL, NULL, 'd7d5ac3cc4e6ee4e42752176774e6ef0', 'sld', 'sld', 'String', NULL, 15, 0, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('a5124f3d126c3c74dfdc7e34d5e31c49', 'ajun007_cn', '2021-07-15 16:25:25', NULL, NULL, '1334708015269490689', 'paytime', 'paytime', 'String', NULL, 7, 0, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('a6e61f78a600c6affcd7e3fc3fcc52ab', NULL, '2021-02-04 09:44:09', NULL, NULL, '1283730831482937345', 'key6', 'key6', 'String', NULL, 8, 0, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('a8a47e5dce230a25e0fedce2a6e62f8f', NULL, '2021-01-15 15:42:03', NULL, NULL, '1316987047604514817', 'hobby', 'hobby', 'String', NULL, 32, 0, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('aaef28e907ba8e95b45e7f98e3d6a421', NULL, '2021-01-15 15:42:03', NULL, NULL, '1316987047604514817', 'hukoustreet', 'hukoustreet', 'String', NULL, 25, 0, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('ac4e09af9ee975728d90a978d85dea80', 'admin', '2021-07-31 13:25:44', NULL, NULL, '9b7d28336b01f9a6b1a613957c3d7cda', 'birth', 'birth', 'String', NULL, 6, 0, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('ad477754b01fc7b37b4cc6c7704d0177', 'ajun007_cn', '2021-07-15 16:25:25', NULL, NULL, '1334708015269490689', 'school', 'school', 'String', NULL, 1, 0, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('afa17ee1e478db69bd6401fd4aca2c81', 'admin', '2021-07-31 13:25:44', NULL, NULL, '9b7d28336b01f9a6b1a613957c3d7cda', 'jperson', 'jperson', 'String', NULL, 9, 0, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('b0fae8440d6b8b8c92c30b758d463c4c', 'admin', '2022-12-08 21:31:48', NULL, NULL, '523d56e4aec77509385b8b2da61ceeb2', 'mouth', 'mouth', 'String', NULL, 3, 0, NULL, NULL, NULL, NULL, '');
|
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('b4bad40d9367d8adf83e12e337a571e7', NULL, '2021-02-02 16:19:03', NULL, NULL, 'a98ee8179bef12f8fa2e0f9f3237fb83', 'value', 'value', 'String', NULL, 2, 0, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('b56dd61580d5539a062363e4b7947cc3', NULL, '2021-01-15 15:42:03', NULL, NULL, '1316987047604514817', 'education', 'education', 'String', NULL, 12, 0, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('b56f9a69152594fbb535098c7dc04874', NULL, '2021-02-02 18:08:24', NULL, NULL, '87a440b35fd656844484774c66a7370c', 'hysr', 'hysr', 'String', NULL, 11, 0, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('b93aa09ff2d6679e17ce790caa3eccc1', NULL, '2021-01-15 15:42:03', NULL, NULL, '1316987047604514817', 'major', 'major', 'String', NULL, 13, 0, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('be63228c3947a1cceb7d1663741f78a0', NULL, '2021-01-26 14:51:12', NULL, NULL, 'a900c843827dd08339a643aa0cf4305f', 'id', 'id', 'String', NULL, 5, 0, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('bf375f71bb75e58c362d02cb55b0d5c0', NULL, '2021-02-02 18:08:24', NULL, NULL, '87a440b35fd656844484774c66a7370c', 'knum', 'knum', 'String', NULL, 4, 0, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('c21eca66f1c3c47f4b44ed53864f4bb3', NULL, '2021-01-15 15:42:03', NULL, NULL, '1316987047604514817', 'archivesdi', 'archivesdi', 'String', NULL, 34, 0, NULL, NULL, NULL, NULL, NULL);
|
2021-10-11 09:50:19 +00:00
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('c357b23ae68c0ee6c9dab322507dce0b', NULL, '2021-01-11 14:38:14', NULL, NULL, '1317006713165049858', 'jdate', 'jdate', 'String', NULL, 2, 0, NULL, NULL, NULL, NULL, NULL);
|
2023-09-08 16:18:56 +00:00
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('c548a3787df033b795c0a88912e53ae4', NULL, '2021-02-02 18:08:24', NULL, NULL, '87a440b35fd656844484774c66a7370c', 'sf3', 'sf3', 'String', NULL, 17, 0, NULL, 'ttype', NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('c7946e89cbb5c5daabfb233eb430a6a4', NULL, '2021-02-21 10:06:35', NULL, NULL, 'b0f04c0f50a659f99c8aebe6efb93682', 'department', 'department', 'String', NULL, 1, 0, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('c853f446c62b9fb57fd70752ffe33267', 'admin', '2023-08-12 17:16:00', NULL, NULL, '1316997232402231298', 'weight', 'weight', NULL, NULL, 10, 0, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('c8b341d3b243b23b59408719bbbe132a', 'admin', '2021-07-31 13:25:44', NULL, NULL, '9b7d28336b01f9a6b1a613957c3d7cda', 'sex', '性别', 'String', NULL, 10, 1, 1, 'https://bootapi.jeecg.com/jmreport/test/getDictSex', NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('c8d1276d19bdd946e9fc18b83aacda15', NULL, '2021-01-05 15:09:15', NULL, NULL, '1289140698221678593', 'cname', 'cname', 'String', NULL, 3, 0, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('c92b5b9d8e339bfdc0e52da2a9526c17', 'admin', '2021-07-31 13:27:27', NULL, NULL, 'f2e0f5cbc64aa1e676ac1291203ff7c8', 'age', '年龄', 'number', NULL, 11, 0, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('c94d0f59c747f92d98c750f17be0d2a9', NULL, '2021-01-15 15:42:03', NULL, NULL, '1316987047604514817', 'hukoudi', 'hukoudi', 'String', NULL, 27, 0, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('c9ed021cfd9f6587830b737bbce25cc9', 'admin', '2021-07-31 13:25:30', NULL, NULL, '361b59d77f2332c66f013160d71cebfe', 'name', '姓名', 'string', NULL, 2, 1, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('ca7f7b55c0cbe3ff55a6a2d86a0aaacc', NULL, '2021-02-02 18:08:24', NULL, NULL, '87a440b35fd656844484774c66a7370c', 'sf1', 'sf1', 'String', NULL, 15, 0, NULL, 'ttype', NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('cc1c840fbc2176bdadab32bf73405d94', 'admin', '2022-12-08 21:31:48', NULL, NULL, '523d56e4aec77509385b8b2da61ceeb2', 'diqu', 'diqu', 'String', NULL, 0, 0, NULL, NULL, NULL, NULL, '');
|
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('cd99cbbd602360ca36ba27e7e0feb761', NULL, '2021-01-28 16:18:05', NULL, NULL, '44a261c2dcaaaaea51c18378e46ba5b9', 'zhuzhi', 'zhuzhi', 'String', NULL, 6, 0, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('ce5197dc7da064a550ff8878f911fb23', NULL, '2021-01-15 15:42:03', NULL, NULL, '1316987047604514817', 'political', 'political', 'String', NULL, 7, 0, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('cf9a6957655f484e4dadd55ea8ce67ee', 'admin', '2022-12-08 21:31:48', NULL, NULL, '523d56e4aec77509385b8b2da61ceeb2', 'class', 'class', 'String', NULL, 1, 0, NULL, NULL, NULL, NULL, '');
|
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('cfdc06f08db2ebf73047bda538bd026b', NULL, '2021-01-15 15:42:03', NULL, NULL, '1316987047604514817', 'party', 'party', 'String', NULL, 22, 0, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('d266ab44988a8dcf47f5eebc175a6414', NULL, '2021-01-15 15:42:03', NULL, NULL, '1316987047604514817', 'mailbox', 'mailbox', 'String', NULL, 15, 0, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('d29e761bd66d4b6a179aa57914ee2b48', NULL, '2021-01-15 15:42:03', NULL, NULL, '1316987047604514817', 'post', 'post', 'String', NULL, 2, 0, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('d3fce831a42382fdca1dfad15e40fc2d', NULL, '2021-02-02 17:15:44', NULL, NULL, 'd7d5ac3cc4e6ee4e42752176774e6ef0', 'birth', 'birth', 'String', NULL, 6, 0, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('d44cb230acf10bc2a4c84e189bca36ac', 'admin', '2023-08-12 17:16:00', NULL, NULL, '1316997232402231298', 'school', 'school', NULL, NULL, 14, 0, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('d5703c01f4b316f0553219cda0e77c6f', NULL, '2021-01-15 15:42:03', NULL, NULL, '1316987047604514817', 'idcard', 'idcard', 'String', NULL, 21, 0, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('d65c28b9b48115811cf05bb43546a478', 'ajun007_cn', '2021-07-15 16:25:25', NULL, NULL, '1334708015269490689', 'busfee_10', 'busfee_10', 'String', NULL, 17, 0, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('d81062c033b221d0cb5d0cd3d7058951', NULL, '2021-01-26 14:51:12', NULL, NULL, 'a900c843827dd08339a643aa0cf4305f', 'cnum', 'cnum', 'String', NULL, 9, 0, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('d8e2c744c491313c5d37cb084e2fafb3', 'admin', '2023-08-12 17:16:00', NULL, NULL, '1316997232402231298', 'graduation_time', 'graduation_time', NULL, NULL, 23, 0, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('d95a89b3d8f35d77fa812dbf5b466e37', NULL, '2021-01-28 16:18:05', NULL, NULL, '44a261c2dcaaaaea51c18378e46ba5b9', 'cdata', 'cdata', 'String', NULL, 5, 0, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('d980c472733fe25951d694c55ffdfb8f', 'ajun007_cn', '2021-07-15 16:25:25', NULL, NULL, '1334708015269490689', 'pay1', 'pay1', 'String', NULL, 9, 0, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('ddffbac726fe4c0e4f3dea040f5dea49', NULL, '2021-02-02 18:08:24', NULL, NULL, '87a440b35fd656844484774c66a7370c', 'yren', 'yren', 'String', NULL, 9, 0, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('dff48c8c2758461da061340db0c33799', NULL, '2021-02-02 18:08:24', NULL, NULL, '87a440b35fd656844484774c66a7370c', 'bz', 'bz', 'String', NULL, 19, 0, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('e250a4146cb73a6bb397da03f5365b5b', 'admin', '2023-08-12 17:16:00', NULL, NULL, '1316997232402231298', 'address', 'address', NULL, NULL, 16, 0, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('e5ed9166ad04240f7c97e5b7ac7f541b', 'admin', '2021-07-31 13:27:27', NULL, NULL, 'f2e0f5cbc64aa1e676ac1291203ff7c8', 'gtime', '雇佣时间', 'datetime', NULL, 3, 0, 2, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('e5f31ee77c3d92d6f3c99f785774987a', NULL, '2021-01-15 15:42:03', NULL, NULL, '1316987047604514817', 'office', 'office', 'String', NULL, 8, 0, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('e6b745b9a2045b25ca44dcaf0aa35bdd', NULL, '2021-01-26 14:51:12', NULL, NULL, 'a900c843827dd08339a643aa0cf4305f', 'ztotal', 'ztotal', 'String', NULL, 8, 0, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('e6ce800db7f82b560e9dd262f3b7c9f7', 'admin', '2023-08-12 17:16:00', NULL, NULL, '1316997232402231298', 'work_experience', 'work_experience', NULL, NULL, 27, 0, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('ed4eeb04c3bcc12dee28eb2689e00b35', NULL, '2021-01-15 15:42:03', NULL, NULL, '1316987047604514817', 'children', 'children', 'String', NULL, 24, 0, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('ed71f103e495e04d1cb67c7a3e912015', NULL, '2021-02-04 09:44:09', NULL, NULL, '1283730831482937345', 'value', 'value', 'String', NULL, 2, 0, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('ef2f72d5f1ae8433b0e7fc1eee7431b3', NULL, '2021-02-02 17:15:44', NULL, NULL, 'd7d5ac3cc4e6ee4e42752176774e6ef0', 'dizhi', 'dizhi', 'String', NULL, 21, 0, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('ef88e447c771542205c1c45a65e7c665', NULL, '2021-02-02 17:15:44', NULL, NULL, 'd7d5ac3cc4e6ee4e42752176774e6ef0', 'sex', 'sex', 'String', NULL, 2, 0, NULL, 'sex1', NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('efa59b2ee351dd7adea039d0a3830d7d', NULL, '2021-01-28 16:18:05', NULL, NULL, '44a261c2dcaaaaea51c18378e46ba5b9', 'shiqing', 'shiqing', 'String', NULL, 2, 0, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('f008a313946819da0de21183ab686383', 'admin', '2023-08-12 17:16:00', NULL, NULL, '1316997232402231298', 'name', 'name', NULL, NULL, 3, 0, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('f110f1f947e0f895b552f7edd133a60a', NULL, '2021-01-05 15:09:15', NULL, NULL, '1289140698221678593', 'ctotal', 'ctotal', 'String', NULL, 8, 0, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('f1661d16815915f635fade1c25f59ad0', 'admin', '2023-08-12 17:16:00', NULL, NULL, '1316997232402231298', 'email', 'email', NULL, NULL, 18, 0, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('f1eca693795c9aa8824f2f4fb584f9f5', NULL, '2021-02-02 18:08:24', NULL, NULL, '87a440b35fd656844484774c66a7370c', 'scard', 'scard', 'String', NULL, 7, 0, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('f290709d2b0e25c77d5a47de48088788', 'ajun007_cn', '2021-07-15 16:25:25', NULL, NULL, '1334708015269490689', 'payclass', 'payclass', 'String', NULL, 8, 0, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('f316a89771e1865b9a16caf362da623a', 'admin', '2021-07-31 13:25:30', NULL, NULL, '361b59d77f2332c66f013160d71cebfe', 'birth', '出生日期', 'datetime', NULL, 6, 1, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('f77f2f6ec2b716c47ad0fd12ef490a63', NULL, '2021-01-26 14:51:12', NULL, NULL, 'a900c843827dd08339a643aa0cf4305f', 'ctotal', 'ctotal', 'String', NULL, 1, 0, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('f7a2f0d0eb3123f66d8dded724890361', NULL, '2021-02-02 17:15:44', NULL, NULL, 'd7d5ac3cc4e6ee4e42752176774e6ef0', 'sr', 'sr', 'String', NULL, 16, 0, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('f85c230930e9535ae4a8d9aa992a542d', NULL, '2021-01-15 15:42:03', NULL, NULL, '1316987047604514817', 'marital', 'marital', 'String', NULL, 23, 0, NULL, NULL, NULL, NULL, NULL);
|
2021-10-11 09:50:19 +00:00
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('f984ef26fe0a505b279a0e4a3b27201f', NULL, '2021-01-08 10:47:52', NULL, NULL, 'f7649b77cfc9e0a9dacdac370cd4036b', 'shijian', 'shijian', 'String', NULL, 4, 0, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('fac871f69237c6c25abe8c4332eabcbf', NULL, '2021-01-08 10:47:52', NULL, NULL, 'f7649b77cfc9e0a9dacdac370cd4036b', 'lingdao', 'lingdao', 'String', NULL, 3, 0, NULL, NULL, NULL, NULL, NULL);
|
2023-09-08 16:18:56 +00:00
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('fc8e0a31b222951304562b0b7b5cdb4a', 'admin', '2023-08-12 17:16:00', NULL, NULL, '1316997232402231298', 'del_flag', 'del_flag', NULL, NULL, 32, 0, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('fd478a2cfbfb57924f9712731ff7167e', 'admin', '2021-07-31 13:27:27', NULL, NULL, 'f2e0f5cbc64aa1e676ac1291203ff7c8', 'name', '姓名', 'string', NULL, 2, 0, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('fe199c4adf941a13b14bbbdc47f50f7e', 'admin', '2023-08-12 17:16:00', NULL, NULL, '1316997232402231298', 'id_card', 'id_card', NULL, NULL, 12, 0, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db_field` VALUES ('feeafe4f944ae939a39a3d76d0400191', NULL, '2021-01-15 15:42:03', NULL, NULL, '1316987047604514817', 'providentfund', 'providentfund', 'String', NULL, 31, 0, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
|
2021-06-23 03:13:11 +00:00
|
|
|
|
-- ----------------------------
|
|
|
|
|
-- Table structure for jimu_report_db_param
|
|
|
|
|
-- ----------------------------
|
|
|
|
|
DROP TABLE IF EXISTS `jimu_report_db_param`;
|
|
|
|
|
CREATE TABLE `jimu_report_db_param` (
|
|
|
|
|
`id` varchar(36) CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL,
|
|
|
|
|
`jimu_report_head_id` varchar(36) CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL COMMENT '动态报表ID',
|
|
|
|
|
`param_name` varchar(32) CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL COMMENT '参数字段',
|
|
|
|
|
`param_txt` varchar(32) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '参数文本',
|
2021-07-03 10:51:11 +00:00
|
|
|
|
`param_value` varchar(1000) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '参数默认值',
|
2021-06-23 03:13:11 +00:00
|
|
|
|
`order_num` int(11) NULL DEFAULT NULL COMMENT '排序',
|
|
|
|
|
`create_by` varchar(50) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '创建人登录名称',
|
|
|
|
|
`create_time` datetime NULL DEFAULT NULL COMMENT '创建日期',
|
|
|
|
|
`update_by` varchar(50) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '更新人登录名称',
|
|
|
|
|
`update_time` datetime NULL DEFAULT NULL COMMENT '更新日期',
|
|
|
|
|
`search_flag` int(1) NULL DEFAULT NULL COMMENT '查询标识0否1是 默认0',
|
2021-07-31 05:00:18 +00:00
|
|
|
|
`widget_type` varchar(50) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '查询控件类型',
|
|
|
|
|
`search_mode` int(1) NULL DEFAULT NULL COMMENT '查询模式1简单2范围',
|
|
|
|
|
`dict_code` varchar(255) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '字典',
|
2021-10-11 09:50:19 +00:00
|
|
|
|
`search_format` varchar(50) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '查询时间格式化表达式',
|
|
|
|
|
`ext_json` text CHARACTER SET utf8 COLLATE utf8_general_ci NULL COMMENT '参数配置',
|
2021-06-23 03:13:11 +00:00
|
|
|
|
PRIMARY KEY (`id`) USING BTREE,
|
|
|
|
|
INDEX `idx_jmrheadid`(`jimu_report_head_id`) USING BTREE,
|
|
|
|
|
INDEX `idx_jrdp_jimu_report_head_id`(`jimu_report_head_id`) USING BTREE
|
2022-12-07 13:22:18 +00:00
|
|
|
|
) ENGINE = InnoDB CHARACTER SET = utf8 COLLATE = utf8_general_ci ROW_FORMAT = DYNAMIC;
|
2021-06-23 03:13:11 +00:00
|
|
|
|
|
|
|
|
|
-- ----------------------------
|
|
|
|
|
-- Records of jimu_report_db_param
|
|
|
|
|
-- ----------------------------
|
2023-09-08 16:18:56 +00:00
|
|
|
|
INSERT INTO `jimu_report_db_param` VALUES ('11b2c5f0cabc37ede820a8ee959f7601', '1316997232402231298', 'id', 'id', '112', 1, 'admin', '2023-08-12 17:16:00', NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db_param` VALUES ('1335820572323557378', '1289140698221678593', 'pageNo', 'pageNo', '1', 1, NULL, '2020-12-07 13:36:57', NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db_param` VALUES ('1335820572327751682', '1289140698221678593', 'pageSize', 'pageSize', '20', 2, NULL, '2020-12-07 13:36:57', NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db_param` VALUES ('137ac9fe9fdf7792a4091bfa9dc1edc4', 'b0f04c0f50a659f99c8aebe6efb93682', 'pageSize', 'pageSize', '20', 1, NULL, '2021-01-27 14:19:52', NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db_param` VALUES ('173c869cc45b683a9cfe25826110cead', '1272834687525482497', 'id', 'id', '1', 1, 'admin', '2022-12-08 15:49:50', NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db_param` VALUES ('266cc33571153c92a92cbac84819aa34', '9a8f0f16cf42380df58cda0171a56c0c', 'pageNo', 'pageNo', '1', 1, NULL, '2021-03-09 14:20:07', NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db_param` VALUES ('3a9efc51a6b6723d5a0ddf109aacb2b5', '1288038655293661186', 'pageNo', 'pageNo', '1', 1, NULL, '2020-07-30 17:26:29', NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db_param` VALUES ('3b39ec63b790f0bd4deea3797ac84695', '1272834687525482497', 'bnum', 'bnum', '', 2, 'admin', '2022-12-08 15:49:50', NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db_param` VALUES ('537518394648645632', '537518066347888640', 'did', 'did', '1', 1, 'admin', '2021-04-01 16:33:02', NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db_param` VALUES ('537518583438462976', '537516331080437760', 'did', 'did', '1', 1, 'admin', '2021-04-01 16:36:46', NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db_param` VALUES ('537522718485336064', '537522718405644288', 'update_by', 'update_by', '1', 1, 'admin', '2021-07-31 13:26:51', NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db_param` VALUES ('542202807013691392', '542187081431339008', 'type', 'type', '张三', 1, 'admin', '2021-11-24 11:40:49', NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db_param` VALUES ('542212270735052800', '542212079118274560', 'type', 'type', '张三', 1, 'admin', '2021-04-16 16:53:48', NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db_param` VALUES ('542961954726432768', '542961954638352384', 'type', 'type', '张三', 1, 'admin', '2021-04-16 17:04:17', NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db_param` VALUES ('57165a6fe5f2b700d4ef19518de4defd', '1290104038414721025', 'id', 'id', '1', 1, 'admin', '2021-07-31 13:21:46', NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db_param` VALUES ('592972587416768512', '592972587332882432', 'pageNo', 'pageNo', '1', 1, 'admin', '2021-09-01 17:09:55', NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db_param` VALUES ('592972587429351424', '592972587332882432', 'pageSize', 'pageSize', '10', 2, 'admin', '2021-09-01 17:09:55', NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db_param` VALUES ('7569e95c1fa73d5438aceb19c1b85ef0', '1288038655293661186', 'pageSize', 'pageSize', '20', 2, NULL, '2020-07-30 17:26:29', NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db_param` VALUES ('7cbf49fdc9f006859b3b3e1d0af77744', 'a900c843827dd08339a643aa0cf4305f', 'riqi', 'riqi', '', 2, NULL, '2021-03-10 09:54:22', NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db_param` VALUES ('850315907880288256', '850315907695738880', 'pageNo', 'pageNo', '1', 1, 'admin', '2023-08-12 22:51:28', NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db_param` VALUES ('850315907905454080', '850315907695738880', 'pageSize', 'pageSize', '1000', 2, 'admin', '2023-08-12 22:51:28', NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL);
|
2024-02-18 11:29:58 +00:00
|
|
|
|
INSERT INTO `jimu_report_db_param` VALUES ('865474415500034048', '865474415198044160', 'pageNo', 'pageNo', '1', 1, 'admin', '2023-09-23 16:13:11', NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db_param` VALUES ('865474415546171392', '865474415198044160', 'pageSize', 'pageSize', '1000', 2, 'admin', '2023-09-23 16:13:11', NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL);
|
2023-09-08 16:18:56 +00:00
|
|
|
|
INSERT INTO `jimu_report_db_param` VALUES ('b6823e350f6b9804c4b664f1c444b1c3', 'a900c843827dd08339a643aa0cf4305f', 'cname', 'cname', '', 1, NULL, '2021-03-10 09:54:22', NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db_param` VALUES ('c6e76772e046f00b884aacc98464c2b3', '1298923644105265153', 'pageNo', 'pageNo', '1', 1, NULL, '2020-08-31 13:57:53', NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db_param` VALUES ('ee0d4f380139c3a8212b70e9ccd1f44a', '9a8f0f16cf42380df58cda0171a56c0c', 'pageSize', 'pageSize', '10', 2, NULL, '2021-03-09 14:20:07', NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db_param` VALUES ('f3ebfc726b842ca939489da4cd8eb70a', 'b0f04c0f50a659f99c8aebe6efb93682', 'pageNo', 'pageNo', '1', 2, NULL, '2021-01-27 14:19:52', NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `jimu_report_db_param` VALUES ('fc6a4ddf24444382416779b70e69b3b0', '1298923644105265153', 'pageSize', 'pageSize', '10', 2, NULL, '2020-08-31 13:57:53', NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
|
2021-06-23 03:13:11 +00:00
|
|
|
|
-- ----------------------------
|
|
|
|
|
-- Table structure for jimu_report_link
|
|
|
|
|
-- ----------------------------
|
|
|
|
|
DROP TABLE IF EXISTS `jimu_report_link`;
|
|
|
|
|
CREATE TABLE `jimu_report_link` (
|
|
|
|
|
`id` varchar(32) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NOT NULL COMMENT '主键id',
|
|
|
|
|
`report_id` varchar(32) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL COMMENT '积木设计器id',
|
|
|
|
|
`parameter` text CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL COMMENT '参数',
|
|
|
|
|
`eject_type` varchar(1) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL COMMENT '弹出方式(0 当前页面 1 新窗口)',
|
|
|
|
|
`link_name` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL COMMENT '链接名称',
|
|
|
|
|
`api_method` varchar(1) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL COMMENT '请求方法0-get,1-post',
|
|
|
|
|
`link_type` varchar(1) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL COMMENT '链接方式(0 网络报表 1 网络连接 2 图表联动)',
|
|
|
|
|
`api_url` varchar(1000) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL COMMENT '外网api',
|
|
|
|
|
`link_chart_id` varchar(50) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL COMMENT '联动图表的ID',
|
2021-10-11 09:50:19 +00:00
|
|
|
|
`expression` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL COMMENT '表达式',
|
|
|
|
|
`requirement` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL COMMENT '条件',
|
|
|
|
|
PRIMARY KEY (`id`) USING BTREE,
|
|
|
|
|
INDEX `uniq_link_reportid`(`report_id`) USING BTREE
|
2023-09-08 16:18:56 +00:00
|
|
|
|
) ENGINE = InnoDB CHARACTER SET = utf8mb4 COLLATE = utf8mb4_general_ci COMMENT = '超链接配置表' ROW_FORMAT = DYNAMIC;
|
2021-06-23 03:13:11 +00:00
|
|
|
|
|
2022-12-07 13:22:18 +00:00
|
|
|
|
-- ----------------------------
|
|
|
|
|
-- Records of jimu_report_link
|
|
|
|
|
-- ----------------------------
|
2023-09-08 16:18:56 +00:00
|
|
|
|
INSERT INTO `jimu_report_link` VALUES ('674518270334029824', '542152544408129536', '[{\"paramName\":\"type\",\"paramValue\":\"name\",\"index\":1}]', NULL, '每月订单金额', NULL, '2', NULL, '4gWTCuSf3N2pRy9U', NULL, '');
|
|
|
|
|
INSERT INTO `jimu_report_link` VALUES ('674518340370518016', '542152544408129536', '[{\"paramName\":\"type\",\"paramValue\":\"name\",\"index\":1}]', NULL, '每月回款', NULL, '2', NULL, 'qQlQ7dUI2ZjnSQoJ', NULL, '');
|
|
|
|
|
INSERT INTO `jimu_report_link` VALUES ('674518410377646080', '542152544408129536', '[{\"paramName\":\"type\",\"paramValue\":\"name\",\"index\":1}]', NULL, '客户资源占比', NULL, '2', NULL, 'j6KqrKiUx01j0GbR', NULL, '');
|
|
|
|
|
INSERT INTO `jimu_report_link` VALUES ('845811279070580736', '537521675550674944', '[{\"paramName\":\"update_by\",\"paramValue\":\"update_by\",\"index\":1,\"dbCode\":\"pop\",\"fieldName\":\"update_by\"}]', NULL, '员工基本信息', NULL, '2', NULL, 'mfVOveSMUgcmPLZH', NULL, '');
|
2022-12-07 13:22:18 +00:00
|
|
|
|
|
2021-06-23 03:13:11 +00:00
|
|
|
|
-- ----------------------------
|
|
|
|
|
-- Table structure for jimu_report_map
|
|
|
|
|
-- ----------------------------
|
|
|
|
|
DROP TABLE IF EXISTS `jimu_report_map`;
|
|
|
|
|
CREATE TABLE `jimu_report_map` (
|
|
|
|
|
`id` varchar(64) CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL COMMENT '主键',
|
|
|
|
|
`label` varchar(125) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '地图名称',
|
|
|
|
|
`name` varchar(125) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '地图编码',
|
|
|
|
|
`data` longtext CHARACTER SET utf8 COLLATE utf8_general_ci NULL COMMENT '地图数据',
|
|
|
|
|
`create_by` varchar(32) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '创建人',
|
|
|
|
|
`create_time` datetime NULL DEFAULT NULL COMMENT '创建时间',
|
|
|
|
|
`update_by` varchar(32) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '修改人',
|
|
|
|
|
`update_time` datetime NULL DEFAULT NULL COMMENT '修改时间',
|
|
|
|
|
`del_flag` varchar(1) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '0表示未删除,1表示删除',
|
|
|
|
|
`sys_org_code` varchar(64) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '所属部门',
|
|
|
|
|
PRIMARY KEY (`id`) USING BTREE,
|
|
|
|
|
UNIQUE INDEX `uniq_jmreport_map_name`(`name`) USING BTREE
|
2022-12-07 13:22:18 +00:00
|
|
|
|
) ENGINE = InnoDB CHARACTER SET = utf8 COLLATE = utf8_general_ci COMMENT = '地图配置表' ROW_FORMAT = DYNAMIC;
|
2021-06-23 03:13:11 +00:00
|
|
|
|
|
|
|
|
|
-- ----------------------------
|
|
|
|
|
-- Records of jimu_report_map
|
|
|
|
|
-- ----------------------------
|
|
|
|
|
INSERT INTO `jimu_report_map` VALUES ('1235103352843448322', '中国地图(大屏默认)', 'CHINA', '{\n \"type\": \"FeatureCollection\",\n \"features\": [\n {\n \"type\": \"Feature\",\n \"properties\": {\n \"adcode\": 110000,\n \"name\": \"北京市\",\n \"center\": [\n 116.405285,\n 39.904989\n ],\n \"centroid\": [\n 116.41989,\n 40.189913\n ],\n \"childrenNum\": 16,\n \"level\": \"province\",\n \"subFeatureIndex\": 0,\n \"acroutes\": [\n 100000\n ],\n \"parent\": {\n \"adcode\": 100000\n }\n },\n \"geometry\": {\n \"type\": \"MultiPolygon\",\n \"coordinates\": [\n [\n [\n [\n 117.210024,\n 40.082262\n ],\n [\n 117.105315,\n 40.074479\n ],\n [\n 117.105315,\n 40.074479\n ],\n [\n 117.102851,\n 40.073563\n ],\n [\n 117.102235,\n 40.073105\n ],\n [\n 117.102235,\n 40.073105\n ],\n [\n 117.102851,\n 40.073563\n ],\n [\n 116.999989,\n 40.030053\n ],\n [\n 116.927924,\n 40.054788\n ],\n [\n 116.783794,\n 40.035093\n ],\n [\n 116.757925,\n 39.968176\n ],\n [\n 116.786874,\n 39.886963\n ],\n [\n 116.926076,\n 39.835524\n ],\n [\n 116.949482,\n 39.778529\n ],\n [\n 116.902055,\n 39.763813\n ],\n [\n 116.90575,\n 39.687883\n ],\n [\n 116.812128,\n 39.616018\n ],\n [\n 116.717273,\n 39.603572\n ],\n [\n 116.717273,\n 39.603572\n ],\n [\n 116.720969,\n 39.599884\n ],\n [\n
|
|
|
|
|
INSERT INTO `jimu_report_map` VALUES ('1235113459258056705', '内蒙古地图', '内蒙古地图', '{\n \"type\": \"FeatureCollection\",\n \"features\": [\n {\n \"type\": \"Feature\",\n \"properties\": {\n \"adcode\": 150100,\n \"name\": \"呼和浩特市\",\n \"center\": [\n 111.670801,\n 40.818311\n ],\n \"centroid\": [\n 111.502117,\n 40.596287\n ],\n \"childrenNum\": 9,\n \"level\": \"city\",\n \"subFeatureIndex\": 0,\n \"acroutes\": [\n 100000,\n 150000\n ],\n \"parent\": {\n \"adcode\": 150000\n }\n },\n \"geometry\": {\n \"type\": \"MultiPolygon\",\n \"coordinates\": [\n [\n [\n [\n 111.438183,\n 39.640433\n ],\n [\n 111.440784,\n 39.672526\n ],\n [\n 111.365058,\n 39.721166\n ],\n [\n 111.371417,\n 39.791775\n ],\n [\n 111.417083,\n 39.829778\n ],\n [\n 111.41506,\n 39.864772\n ],\n [\n 111.445409,\n 39.899045\n ],\n [\n 111.426332,\n 39.949983\n ],\n [\n 111.420263,\n 40.02211\n ],\n [\n 111.360433,\n 40.10187\n ],\n [\n 111.314188,\n 40.150557\n ],\n [\n 111.248289,\n 40.164561\n ],\n [\n 111.190483,\n 40.216525\n ],\n [\n 111.115624,\n 40.255866\n ],\n [\n 111.05406,\n 40.264605\n ],\n [\n 111.032961,\n 40.296931\n ],\n [\n 111.033828,\n 40.315271\n ],\n [\n 111.114757,\n 40.331161\n ],\n [\n 111.106664,\n 40.38073\n ],\n [\n 111.083253,\n 40.425729\n ],\n [\n
|
|
|
|
|
INSERT INTO `jimu_report_map` VALUES ('1262343644795432961', '河北省', '河北省', '{\n \"type\": \"FeatureCollection\",\n \"features\": [\n {\n \"type\": \"Feature\",\n \"properties\": {\n \"adcode\": 130100,\n \"name\": \"石家庄市\",\n \"center\": [\n 114.502461,\n 38.045474\n ],\n \"centroid\": [\n 114.44505,\n 38.133023\n ],\n \"childrenNum\": 22,\n \"level\": \"city\",\n \"parent\": {\n \"adcode\": 130000\n },\n \"subFeatureIndex\": 0,\n \"acroutes\": [\n 100000,\n 130000\n ]\n },\n \"geometry\": {\n \"type\": \"MultiPolygon\",\n \"coordinates\": [\n [\n [\n [\n 113.839548,\n 38.758413\n ],\n [\n 113.864664,\n 38.746006\n ],\n [\n 113.883245,\n 38.74667\n ],\n [\n 113.932324,\n 38.71362\n ],\n [\n 113.929697,\n 38.702467\n ],\n [\n 113.964617,\n 38.699811\n ],\n [\n 113.991655,\n 38.676769\n ],\n [\n 114.028624,\n 38.688524\n ],\n [\n 114.052139,\n 38.686399\n ],\n [\n 114.086097,\n 38.65837\n ],\n [\n 114.125053,\n 38.659632\n ],\n [\n 114.129153,\n 38.669596\n ],\n [\n 114.182205,\n 38.67657\n ],\n [\n 114.212831,\n 38.688192\n ],\n [\n 114.311502,\n 38.706517\n ],\n [\n 114.341167,\n 38.690184\n ],\n [\n 114.366411,\n 38.6862\n ],\n [\n 114.413504,\n 38.703928\n ],\n [\n 114.437787,\n 38.692773\n ],\n [\n 114.452652,\n 38.699413\n ],\n [\n
|
|
|
|
|
INSERT INTO `jimu_report_map` VALUES ('1334703777051127809', '山东', 'shandong', '{\n \"type\": \"FeatureCollection\",\n \"features\": [\n {\n \"type\": \"Feature\",\n \"properties\": {\n \"adcode\": 370100,\n \"name\": \"济南市\",\n \"center\": [\n 117.000923,\n 36.675807\n ],\n \"centroid\": [\n 117.221244,\n 36.639974\n ],\n \"childrenNum\": 12,\n \"level\": \"city\",\n \"parent\": {\n \"adcode\": 370000\n },\n \"subFeatureIndex\": 0,\n \"acroutes\": [\n 100000,\n 370000\n ]\n },\n \"geometry\": {\n \"type\": \"MultiPolygon\",\n \"coordinates\": [\n [\n [\n [\n 117.273417,\n 37.532619\n ],\n [\n 117.275549,\n 37.526193\n ],\n [\n 117.284393,\n 37.522266\n ],\n [\n 117.286525,\n 37.510046\n ],\n [\n 117.307215,\n 37.507744\n ],\n [\n 117.317718,\n 37.499371\n ],\n [\n 117.312585,\n 37.487068\n ],\n [\n 117.285894,\n 37.479328\n ],\n [\n 117.283998,\n 37.471587\n ],\n [\n 117.304609,\n 37.466069\n ],\n [\n 117.307768,\n 37.46194\n ],\n [\n 117.295449,\n 37.4538\n ],\n [\n 117.309189,\n 37.447486\n ],\n [\n 117.353332,\n 37.450901\n ],\n [\n 117.369758,\n 37.436048\n ],\n [\n 117.368257,\n 37.419563\n ],\n [\n 117.360202,\n 37.405697\n ],\n [\n 117.368652,\n 37.396399\n ],\n [\n 117.401029,\n 37.379071\n ],\n [\n 117.415401,\n 37.364203\n ],\n [\n
|
|
|
|
|
INSERT INTO `jimu_report_map` VALUES ('1335896227857940481', '杭州', 'hangzhou', '{\"type\":\"FeatureCollection\",\"features\":[{\"type\":\"Feature\",\"properties\":{\"adcode\":330102,\"name\":\"上城区\",\"center\":[120.171465,30.250236],\"centroid\":[120.173932,30.226977],\"childrenNum\":0,\"level\":\"district\",\"parent\":{\"adcode\":330100},\"subFeatureIndex\":0,\"acroutes\":[100000,330000,330100]},\"geometry\":{\"type\":\"MultiPolygon\",\"coordinates\":[[[[120.188063,30.257783],[120.187445,30.250124],[120.186613,30.246239],[120.19132,30.245676],[120.197999,30.242341],[120.19983,30.240158],[120.213307,30.230548],[120.196573,30.216571],[120.182858,30.207933],[120.177628,30.205626],[120.140166,30.19284],[120.138169,30.19512],[120.1371,30.1981],[120.137551,30.201012],[120.141545,30.204061],[120.141069,30.206464],[120.138431,30.207947],[120.139405,30.210474],[120.145253,30.209581],[120.147368,30.210268],[120.150173,30.212849],[120.160347,30.227486],[120.15923,30.231578],[120.154381,30.23442],[120.154666,30.241119],[120.160442,30.246843],[120.15797,30.24672],[120.159848,30.249493],[120.16251,30.251565],[120.15923,30.256397],[120.156948,30.258058],[120.164079,30.25836],[120.171804,30.258003],[120.188063,30.257783]]]]}},{\"type\":\"Feature\",\"properties\":{\"adcode\":330103,\"name\":\"下城区\",\"center\":[120.172763,30.276271],\"centroid\":[120.180095,30.303745],\"childrenNum\":0,\"level\":\"district\",\"parent\":{\"adcode\":330100},\"subFeatureIndex\":1,\"acroutes\":[100000,330000,330100]},\"geometry\":{\"type\":\"MultiPolygon\",\"coordinates\":[[[[120.199853,30.35099],[120.201042,30.348124],[120.20437,30.345738],[120.212285,30.34534],[120.212095,30.334149],[120.211168,30.332119],[120.205939,30.332202],[120.203157,30.329733],[120.202349,30.326236],[120.204417,30.325961],[120.202421,30.322176],[120.197833,30.322244],[120.196906,30.320118],[120.204322,30.320488],[120.207198,30.320118],[120.200186,30.312148],[120.197952,30.314329],[120.194838,30.312093],[120.190607,30.312642],[120.18987,30.308856],[120.188301,30.30876],[120.188253,30.304507],[120.193007,30.30474],[120.190892,30.300295],[120.186494,30.29714],[120.183975,30.285367],[120.184926,30.28121],[120.18899,30.274321],[120.188182,30.270849],[120.188658,30.267294],[120.188063,30.257783],[120.171804,30.258003],[120.164079,30.25836],[120.156948,30.258058],[120.156472,30.260295],[120.158469,30.259142],[120.154666,30.272688],[120.161892,30.273305],[120.160822,30.279096],[120.159681,30.280524],[120.154547,30.282637],[120.153073,30.284983],[120.154024,30.289895],[120.165553,30.293463],[120.166266,30.294807],[120.164816,30.30009],[120.157162,30.308197],[120.156972,30.309213],[120.169522,30.325399],[120.174348,30.331146],[120.17827,30.336604],[120.187041,30.347561],[120.195789,30.348892],[120.199853,30.35099]]]]}},{\"type\":\"Feature\",\"properties\":{\"adcode\":330104,\"name\":\"江干区\",\"center\":[120.202633,30.266603],\"centroid\":[120.296023,30.310268],\"childrenNum\":0,\"level\":\"district\",\"parent\":{\"adcode\":330100},\"subFeatureIndex\":2,\"acroutes\":[100000,330000,330100]},\"geometry\":{\"type\":\"MultiPolygon\",\"coordinates\":[[[[120.188063,30.257783],[120.188658,30.267294],[120.188182,30.270849],[120.18899,30.274321],[120.184926,30.28121],[120.183975,30.285367],[120.186494,30.29714],[120.190892,30.300295],[120.193007,30.30474],[120.188253,30.304507],[120.188301,30.30876],[120.18987,30.308856],[120.190607,30.312642],[120.194838,30.312093],[120.197952,30.314329],[120.200186,30.312148],[120.207198,30.320118],[120.204322,30.320488],[120.196906,30.320118],[120.197833,30.322244],[120.202421,30.322176],[120.204417,30.325961],[120.202349,30.326236],[120.203157,30.329733],[120.205939,30.332202],[120.211168,30.332119],[120.212095,30.334149],[120.212285,30.34534],[120.20437,30.345738],[120.201042,30.348124],[120.199853,30.35099],[120.204251,30.352662],[120.210407,30.357736],[120.211739,30.359971],[120.213093,30.36503],[120.211881,30.369198],[120.208957,30.374243],[120.208815,30.376478],[120.210502,30.37911],[120.221294,30.387156],[120.228592,30.393544],[120.23239
|
|
|
|
|
INSERT INTO `jimu_report_map` VALUES ('1335907956524433409', '上海', 'shanghai', '{\"type\":\"FeatureCollection\",\"features\":[{\"type\":\"Feature\",\"properties\":{\"adcode\":310101,\"name\":\"黄浦区\",\"center\":[121.490317,31.222771],\"centroid\":[121.483572,31.215946],\"childrenNum\":0,\"level\":\"district\",\"parent\":{\"adcode\":310000},\"subFeatureIndex\":0,\"acroutes\":[100000,310000]},\"geometry\":{\"type\":\"MultiPolygon\",\"coordinates\":[[[[121.475987,31.187885],[121.474944,31.189886],[121.470356,31.191431],[121.469605,31.196404],[121.46745,31.203065],[121.466449,31.204395],[121.462264,31.203173],[121.461555,31.210194],[121.460707,31.213488],[121.457689,31.220196],[121.456758,31.223898],[121.467464,31.223862],[121.467658,31.225634],[121.466129,31.234917],[121.462973,31.241396],[121.469563,31.239216],[121.474847,31.24142],[121.47892,31.240294],[121.482994,31.241923],[121.485969,31.244091],[121.487805,31.244186],[121.494826,31.24221],[121.493491,31.240163],[121.493491,31.23615],[121.495744,31.232977],[121.502014,31.228018],[121.506741,31.223119],[121.509397,31.218459],[121.509911,31.214506],[121.508368,31.210158],[121.501319,31.199747],[121.498066,31.195601],[121.494631,31.192857],[121.490752,31.191467],[121.475987,31.187885]]]]}},{\"type\":\"Feature\",\"properties\":{\"adcode\":310104,\"name\":\"徐汇区\",\"center\":[121.43752,31.179973],\"centroid\":[121.439404,31.162992],\"childrenNum\":0,\"level\":\"district\",\"parent\":{\"adcode\":310000},\"subFeatureIndex\":1,\"acroutes\":[100000,310000]},\"geometry\":{\"type\":\"MultiPolygon\",\"coordinates\":[[[[121.412572,31.19112],[121.419719,31.190796],[121.422027,31.192294],[121.421638,31.19535],[121.423793,31.197314],[121.433025,31.20128],[121.437933,31.203976],[121.435235,31.21114],[121.43746,31.211535],[121.439462,31.214482],[121.44697,31.215812],[121.452184,31.217429],[121.457689,31.220196],[121.460707,31.213488],[121.461555,31.210194],[121.462264,31.203173],[121.466449,31.204395],[121.46745,31.203065],[121.469605,31.196404],[121.470356,31.191431],[121.474944,31.189886],[121.475987,31.187885],[121.468729,31.184122],[121.466254,31.18109],[121.464905,31.178022],[121.464905,31.17541],[121.468159,31.167092],[121.469369,31.162298],[121.468354,31.158091],[121.46574,31.155118],[121.460387,31.150276],[121.457453,31.146451],[121.457453,31.142232],[121.462431,31.134463],[121.468729,31.127868],[121.469674,31.124859],[121.469299,31.118731],[121.465211,31.1121],[121.463237,31.108586],[121.462862,31.101954],[121.455423,31.100755],[121.452629,31.101234],[121.451878,31.103849],[121.446275,31.105744],[121.447623,31.107423],[121.452364,31.108586],[121.450154,31.112819],[121.450807,31.115398],[121.446706,31.114282],[121.445788,31.114954],[121.441547,31.112568],[121.438002,31.1121],[121.435736,31.113539],[121.438836,31.119103],[121.43853,31.121729],[121.436445,31.129043],[121.421526,31.127137],[121.418398,31.131669],[121.41381,31.13728],[121.411293,31.14174],[121.404953,31.156689],[121.400977,31.155214],[121.401449,31.153776],[121.396931,31.152685],[121.395874,31.15585],[121.401867,31.157528],[121.404578,31.157588],[121.402645,31.162226],[121.394567,31.159601],[121.391508,31.168686],[121.394053,31.169489],[121.39269,31.173085],[121.395415,31.174595],[121.394442,31.177879],[121.398071,31.178226],[121.398349,31.179904],[121.400101,31.178813],[121.41146,31.182037],[121.415158,31.183391],[121.415256,31.187357],[121.41356,31.18683],[121.412572,31.19112]]]]}},{\"type\":\"Feature\",\"properties\":{\"adcode\":310105,\"name\":\"长宁区\",\"center\":[121.4222,31.218123],\"centroid\":[121.380949,31.20737],\"childrenNum\":0,\"level\":\"district\",\"parent\":{\"adcode\":310000},\"subFeatureIndex\":2,\"acroutes\":[100000,310000]},\"geometry\":{\"type\":\"MultiPolygon\",\"coordinates\":[[[[121.439462,31.214482],[121.43746,31.211535],[121.435235,31.21114],[121.437933,31.203976],[121.433025,31.20128],[121.423793,31.197314],[121.421638,31.19535],[121.422027,31.192294],[121.419719,31.190796],[121.412572,31.19112],[121.391425,31.191911],[121.38001,31.190065],[121.365954,31.185572],[121.360
|
|
|
|
|
INSERT INTO `jimu_report_map` VALUES ('1336859680042913794', '北京', 'beijing', '{\"type\":\"FeatureCollection\",\"features\":[{\"type\":\"Feature\",\"properties\":{\"adcode\":110101,\"name\":\"东城区\",\"center\":[116.418757,39.917544],\"centroid\":[116.416739,39.912912],\"childrenNum\":0,\"level\":\"district\",\"parent\":{\"adcode\":110000},\"subFeatureIndex\":0,\"acroutes\":[100000,110000]},\"geometry\":{\"type\":\"MultiPolygon\",\"coordinates\":[[[[116.387658,39.96093],[116.389498,39.96314],[116.40788,39.962182],[116.407504,39.973995],[116.411101,39.97146],[116.411415,39.964928],[116.414196,39.962182],[116.424861,39.962279],[116.429002,39.957274],[116.429483,39.950155],[116.436698,39.949245],[116.435422,39.952121],[116.442239,39.9497],[116.440566,39.945295],[116.446338,39.946205],[116.443703,39.936663],[116.443682,39.928664],[116.434314,39.92868],[116.434983,39.913964],[116.436488,39.902042],[116.448722,39.903246],[116.446819,39.900042],[116.447154,39.894186],[116.450876,39.894088],[116.450939,39.890249],[116.444059,39.890038],[116.445648,39.879283],[116.44364,39.87284],[116.442574,39.87188],[116.423209,39.872824],[116.413652,39.871148],[116.41589,39.863645],[116.41246,39.858942],[116.406856,39.859967],[116.3955,39.858682],[116.394956,39.862734],[116.387888,39.867372],[116.380632,39.866054],[116.38059,39.871148],[116.399097,39.872205],[116.397612,39.898675],[116.396086,39.89944],[116.395563,39.907995],[116.392259,39.907881],[116.392175,39.92242],[116.399474,39.923574],[116.396692,39.928306],[116.396169,39.94006],[116.394266,39.940629],[116.393723,39.957371],[116.38678,39.957014],[116.387658,39.96093]]]]}},{\"type\":\"Feature\",\"properties\":{\"adcode\":110102,\"name\":\"西城区\",\"center\":[116.366794,39.915309],\"centroid\":[116.365684,39.912236],\"childrenNum\":0,\"level\":\"district\",\"parent\":{\"adcode\":110000},\"subFeatureIndex\":1,\"acroutes\":[100000,110000]},\"geometry\":{\"type\":\"MultiPolygon\",\"coordinates\":[[[[116.380903,39.972712],[116.394099,39.972858],[116.394162,39.969397],[116.390084,39.968406],[116.387658,39.96093],[116.38678,39.957014],[116.393723,39.957371],[116.394266,39.940629],[116.396169,39.94006],[116.396692,39.928306],[116.399474,39.923574],[116.392175,39.92242],[116.392259,39.907881],[116.395563,39.907995],[116.396086,39.89944],[116.397612,39.898675],[116.399097,39.872205],[116.38059,39.871148],[116.35058,39.86869],[116.349472,39.873588],[116.344286,39.873653],[116.341567,39.876159],[116.335273,39.875183],[116.326636,39.876859],[116.321345,39.875004],[116.325799,39.896789],[116.337301,39.89739],[116.335356,39.898448],[116.334645,39.922664],[116.333056,39.938565],[116.327953,39.942369],[116.332889,39.944092],[116.341442,39.941979],[116.35171,39.94375],[116.351814,39.950854],[116.355265,39.951796],[116.35698,39.944466],[116.371974,39.948594],[116.370384,39.967902],[116.380401,39.968178],[116.380903,39.972712]]]]}},{\"type\":\"Feature\",\"properties\":{\"adcode\":110105,\"name\":\"朝阳区\",\"center\":[116.486409,39.921489],\"centroid\":[116.513687,39.951064],\"childrenNum\":0,\"level\":\"district\",\"parent\":{\"adcode\":110000},\"subFeatureIndex\":2,\"acroutes\":[100000,110000]},\"geometry\":{\"type\":\"MultiPolygon\",\"coordinates\":[[[[116.595548,40.01751],[116.60132,40.013873],[116.61989,40.011794],[116.628129,40.007653],[116.625766,40.003122],[116.63273,39.999825],[116.637582,40.002359],[116.642684,39.996755],[116.643751,39.989608],[116.640321,39.990177],[116.639129,39.986879],[116.63365,39.986197],[116.634026,39.981696],[116.639819,39.982606],[116.641827,39.969575],[116.643081,39.952983],[116.645277,39.945977],[116.632228,39.950545],[116.630492,39.946156],[116.633441,39.940906],[116.629677,39.938727],[116.6293,39.931314],[116.624156,39.929981],[116.630576,39.921672],[116.620956,39.923103],[116.623006,39.913818],[116.620245,39.90767],[116.623361,39.904271],[116.621019,39.898854],[116.61531,39.895503],[116.615603,39.889794],[116.627585,39.890477],[116.628987,39.881594],[116.624323,39.881155],[116.62493,39.87725],[116.619994,39.868951],[116.626958,39.860683],[116.613449,3
|
|
|
|
|
INSERT INTO `jimu_report_map` VALUES ('1338695077400154114', '无锡市', 'wuxi', '{\"type\":\"FeatureCollection\",\"features\":[{\"type\":\"Feature\",\"properties\":{\"adcode\":320205,\"name\":\"锡山区\",\"center\":[120.357298,31.585559],\"centroid\":[120.482864,31.624824],\"childrenNum\":0,\"level\":\"district\",\"parent\":{\"adcode\":320200},\"subFeatureIndex\":0,\"acroutes\":[100000,320000,320200]},\"geometry\":{\"type\":\"MultiPolygon\",\"coordinates\":[[[[120.581713,31.727632],[120.582451,31.721169],[120.58458,31.71792],[120.58509,31.714432],[120.589848,31.714115],[120.590836,31.712997],[120.596788,31.710822],[120.599079,31.710716],[120.600806,31.708849],[120.600231,31.706876],[120.595734,31.705608],[120.592802,31.700817],[120.587024,31.696166],[120.584917,31.69281],[120.578118,31.6937],[120.578367,31.689947],[120.575587,31.691824],[120.576836,31.689463],[120.572405,31.689692],[120.570059,31.688908],[120.568049,31.685199],[120.566235,31.685393],[120.566094,31.683112],[120.562858,31.680513],[120.564161,31.67891],[120.566626,31.678672],[120.566377,31.676143],[120.568766,31.668593],[120.568625,31.665174],[120.566789,31.659931],[120.558589,31.658504],[120.561066,31.655693],[120.571731,31.655781],[120.583429,31.651957],[120.586643,31.651816],[120.592128,31.650282],[120.595854,31.643761],[120.589587,31.636525],[120.595571,31.631395],[120.592107,31.62504],[120.6006,31.617115],[120.596266,31.613298],[120.591488,31.611499],[120.584482,31.613439],[120.577086,31.614162],[120.570026,31.609445],[120.567126,31.609172],[120.568343,31.606183],[120.566464,31.601933],[120.557058,31.600302],[120.553104,31.60561],[120.546251,31.604693],[120.54309,31.601739],[120.545078,31.585717],[120.547782,31.583283],[120.546848,31.579685],[120.548,31.576599],[120.550215,31.575011],[120.553072,31.575082],[120.563629,31.579597],[120.568256,31.576299],[120.573035,31.577472],[120.567419,31.583998],[120.570428,31.585665],[120.573838,31.585947],[120.584254,31.585144],[120.587045,31.583389],[120.594572,31.576008],[120.595962,31.571492],[120.597548,31.563862],[120.599264,31.54846],[120.60502,31.546078],[120.602805,31.541182],[120.602913,31.53827],[120.605118,31.535685],[120.60426,31.530867],[120.605759,31.525247],[120.602349,31.51899],[120.600035,31.51861],[120.598569,31.516166],[120.595636,31.517145],[120.593986,31.525502],[120.592758,31.52755],[120.589826,31.526967],[120.585775,31.524532],[120.576923,31.517498],[120.568549,31.512371],[120.559849,31.508964],[120.555201,31.507579],[120.551616,31.500632],[120.548499,31.497402],[120.548043,31.495089],[120.549086,31.489175],[120.553007,31.486738],[120.555244,31.480294],[120.555233,31.477866],[120.553441,31.477027],[120.551236,31.48213],[120.552062,31.483825],[120.547793,31.486244],[120.546197,31.487912],[120.542971,31.487612],[120.534999,31.487921],[120.533055,31.490675],[120.531024,31.495327],[120.528613,31.497887],[120.5253,31.499229],[120.525267,31.502583],[120.522389,31.504631],[120.519804,31.500888],[120.518295,31.501718],[120.519598,31.504604],[120.521118,31.504507],[120.521129,31.507402],[120.519196,31.508929],[120.518251,31.512759],[120.521542,31.512609],[120.523519,31.514524],[120.521455,31.515672],[120.52265,31.517869],[120.522606,31.521452],[120.528786,31.526588],[120.523888,31.529244],[120.518914,31.527453],[120.516959,31.529817],[120.513016,31.531547],[120.508096,31.534926],[120.506782,31.537476],[120.504544,31.538791],[120.505967,31.542099],[120.502774,31.544552],[120.504523,31.549493],[120.503295,31.552686],[120.498647,31.554697],[120.490707,31.557414],[120.486971,31.555941],[120.481334,31.554883],[120.481693,31.55954],[120.477033,31.558905],[120.47623,31.560511],[120.472819,31.561066],[120.473112,31.563986],[120.46614,31.564674],[120.466715,31.566791],[120.46085,31.565838],[120.457831,31.564171],[120.455116,31.568061],[120.45176,31.5665],[120.451477,31.568255],[120.448545,31.569631],[120.448968,31.571095],[120.444178,31.576475],[120.439237,31.574676],[120.434099,31.576466],[120.429288,31.577286],[120.422543,31.580823],[120.419404,31.581026],[120.415733,31.583425],[120.414267,31.580691],[12
|
2021-07-03 10:51:11 +00:00
|
|
|
|
INSERT INTO `jimu_report_map` VALUES ('570159017392984064', NULL, '100000', '{\n\"type\": \"FeatureCollection\",\n\"name\": \"100000_full\",\n\"features\": [\n{ \"type\": \"Feature\", \"properties\": { \"adcode\": \"110000\", \"name\": \"北京市\", \"center\": [ 116.405285, 39.904989 ], \"centroid\": [ 116.41995, 40.18994 ], \"childrenNum\": 16, \"level\": \"province\", \"parent\": { \"adcode\": 100000 }, \"subFeatureIndex\": 0, \"acroutes\": [ 100000 ] }, \"geometry\": { \"type\": \"MultiPolygon\", \"coordinates\": [ [ [ [ 117.348611, 40.581141 ], [ 117.348611, 40.581141 ], [ 117.269771, 40.560684 ], [ 117.247597, 40.539766 ], [ 117.262995, 40.512927 ], [ 117.208793, 40.501552 ], [ 117.263611, 40.442367 ], [ 117.234046, 40.417312 ], [ 117.226039, 40.368997 ], [ 117.243285, 40.369453 ], [ 117.271618, 40.325211 ], [ 117.271618, 40.325211 ], [ 117.295024, 40.2782 ], [ 117.331365, 40.289613 ], [ 117.351075, 40.229786 ], [ 117.389879, 40.227958 ], [ 117.383719, 40.188195 ], [ 117.367089, 40.172649 ], [ 117.367089, 40.173106 ], [ 117.367089, 40.173106 ], [ 117.367089, 40.172649 ], [ 117.349227, 40.136513 ], [ 117.307343, 40.136971 ], [ 117.274082, 40.105852 ], [ 117.254988, 40.114548 ], [ 117.254988, 40.114548 ], [ 117.254988, 40.114548 ], [ 117.224191, 40.094865 ], [ 117.224191, 40.094865 ], [ 117.210024, 40.082045 ], [ 117.204481, 40.069681 ], [ 117.159517, 40.077008 ], [ 117.140423, 40.064185 ], [ 117.105315, 40.074261 ], [ 117.105315, 40.074261 ], [ 117.051728, 40.059605 ], [ 117.025243, 40.030283 ], [ 116.945171, 40.04128 ], [ 116.927924, 40.055024 ], [ 116.867562, 40.041739 ], [ 116.831222, 40.051359 ], [ 116.820135, 40.02845 ], [ 116.781331, 40.034866 ], [ 116.757925, 39.967934 ], [ 116.782563, 39.947749 ], [ 116.78441, 39.891294 ], [ 116.812128, 39.889916 ], [ 116.865714, 39.843982 ], [ 116.907598, 39.832494 ], [ 116.918069, 39.84628 ], [ 116.949482, 39.778703 ], [ 116.902055, 39.763523 ], [ 116.916837, 39.731314 ], [ 116.887272, 39.72533 ], [ 116.889736, 39.687576 ], [ 116.90575, 39.688037 ], [ 116.906366, 39.677444 ], [ 116.8497, 39.66777 ], [ 116.812128, 39.615695 ], [ 116.79057, 39.595868 ], [ 116.748686, 39.619844 ], [ 116.709266, 39.618 ], [ 116.726512, 39.595407 ], [ 116.726512, 39.595407 ], [ 116.724048, 39.59264 ], [ 116.723432, 39.59264 ], [ 116.724048, 39.59264 ], [ 116.723432, 39.59264 ], [ 116.664918, 39.605552 ], [ 116.620571, 39.601863 ], [ 116.592237, 39.621227 ], [ 116.592237, 39.621227 ], [ 116.524484, 39.596329 ], [ 116.50847, 39.551122 ], [ 116.473361, 39.552968 ], [ 116.478289, 39.535431 ], [ 116.437637, 39.526661 ], [ 116.443796, 39.510041 ], [ 116.401912, 39.528046 ], [ 116.411767, 39.482794 ], [ 116.444412, 39.482332 ], [ 116.454883, 39.453226 ], [ 116.434557, 39.442597 ], [ 116.361876, 39.455074 ], [ 116.361876, 39.455074 ], [ 116.337854, 39.455536 ], [ 116.307057, 39.488337 ], [ 116.257782, 39.500344 ], [ 116.240536, 39.564041 ], [ 116.198652, 39.589412 ], [ 116.151841, 39.583416 ], [ 116.130283, 39.567732 ], [ 116.09887, 39.575113 ], [ 116.036044, 39.571884 ], [ 116.026189, 39.587567 ], [ 115.995392, 39.576958 ], [ 115.978146, 39.595868 ], [ 115.957204, 39.560812 ], [ 115.910393, 39.600479 ], [ 115.910393, 39.600479 ], [ 115.91532, 39.582955 ], [ 115.91532, 39.582955 ], [ 115.867893, 39.546507 ], [ 115.867893, 39.546507 ], [ 115.828473, 39.541431 ], [ 115.821081, 39.522968 ], [ 115.821081, 39.522968 ], [ 115.806299, 39.510041 ], [ 115.806299, 39.510041 ], [ 115.752712, 39.515581 ], [ 115.738545, 39.539585 ], [ 115.738545, 39.540046 ], [ 115.738545, 39.539585 ], [ 115.738545, 39.540046 ], [ 115.724995, 39.5442 ], [ 115.724995, 39.5442 ], [ 115.722531, 39.543738 ], [ 115.721299, 39.543738 ], [ 115.722531, 39.543738 ], [ 115.722531, 39.5442 ], [ 115.721299, 39.543738 ], [ 115.722531, 39.5442 ], [ 115.720683, 39.551122 ], [ 115.720683, 39.551122 ], [ 115.718835, 39.553891 ], [ 115.718835, 39.553891 ], [ 115.716988, 39.56035 ], [ 115.716988, 39.56035 ], [ 115.699125, 39.570039 ], [ 115.699125, 39.570039 ], [ 115.698509, 39.577881 ], [ 115.698509, 39.577881 ], [ 115.667712, 39.615234 ], [ 115.6
|
2021-06-23 03:13:11 +00:00
|
|
|
|
|
|
|
|
|
-- ----------------------------
|
|
|
|
|
-- Table structure for jimu_report_share
|
|
|
|
|
-- ----------------------------
|
|
|
|
|
DROP TABLE IF EXISTS `jimu_report_share`;
|
|
|
|
|
CREATE TABLE `jimu_report_share` (
|
|
|
|
|
`id` varchar(32) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NOT NULL COMMENT '主键',
|
|
|
|
|
`report_id` varchar(32) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL COMMENT '在线excel设计器id',
|
|
|
|
|
`preview_url` varchar(1000) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL COMMENT '预览地址',
|
|
|
|
|
`preview_lock` varchar(4) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL COMMENT '密码锁',
|
|
|
|
|
`last_update_time` datetime NULL DEFAULT NULL COMMENT '最后更新时间',
|
|
|
|
|
`term_of_validity` varchar(1) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL COMMENT '有效期(0:永久有效,1:1天,2:7天)',
|
|
|
|
|
`status` varchar(1) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL COMMENT '是否过期(0未过期,1已过期)',
|
2023-09-08 16:18:56 +00:00
|
|
|
|
`preview_lock_status` varchar(1) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL COMMENT '密码锁状态(0不存在密码锁,1存在密码锁)',
|
2024-02-18 11:29:58 +00:00
|
|
|
|
`share_token` varchar(50) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL COMMENT '分享token',
|
|
|
|
|
PRIMARY KEY (`id`) USING BTREE,
|
|
|
|
|
UNIQUE INDEX `uniq_report_id`(`report_id`) USING BTREE,
|
|
|
|
|
UNIQUE INDEX `uniq_jrs_share_token`(`share_token`) USING BTREE
|
2023-09-08 16:18:56 +00:00
|
|
|
|
) ENGINE = InnoDB CHARACTER SET = utf8mb4 COLLATE = utf8mb4_general_ci COMMENT = '积木报表预览权限表' ROW_FORMAT = DYNAMIC;
|
2021-06-23 03:13:11 +00:00
|
|
|
|
|
2022-12-07 13:22:18 +00:00
|
|
|
|
-- ----------------------------
|
|
|
|
|
-- Records of jimu_report_share
|
|
|
|
|
-- ----------------------------
|
|
|
|
|
|
2021-06-23 03:13:11 +00:00
|
|
|
|
-- ----------------------------
|
|
|
|
|
-- Table structure for rep_demo_dxtj
|
|
|
|
|
-- ----------------------------
|
|
|
|
|
DROP TABLE IF EXISTS `rep_demo_dxtj`;
|
|
|
|
|
CREATE TABLE `rep_demo_dxtj` (
|
|
|
|
|
`id` varchar(36) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NOT NULL COMMENT '主键',
|
|
|
|
|
`name` varchar(50) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL COMMENT '姓名',
|
|
|
|
|
`gtime` datetime NULL DEFAULT NULL COMMENT '雇佣日期',
|
|
|
|
|
`update_by` varchar(50) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL COMMENT '职务',
|
|
|
|
|
`jphone` varchar(125) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL COMMENT '家庭电话',
|
|
|
|
|
`birth` datetime NULL DEFAULT NULL COMMENT '出生日期',
|
|
|
|
|
`hukou` varchar(32) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL COMMENT '户口所在地',
|
|
|
|
|
`laddress` varchar(125) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL COMMENT '联系地址',
|
|
|
|
|
`jperson` varchar(32) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL COMMENT '紧急联系人',
|
|
|
|
|
`sex` varchar(32) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL COMMENT 'xingbie',
|
|
|
|
|
PRIMARY KEY (`id`) USING BTREE
|
2022-12-07 13:22:18 +00:00
|
|
|
|
) ENGINE = InnoDB CHARACTER SET = utf8mb4 COLLATE = utf8mb4_general_ci ROW_FORMAT = DYNAMIC;
|
2021-06-23 03:13:11 +00:00
|
|
|
|
|
|
|
|
|
-- ----------------------------
|
|
|
|
|
-- Records of rep_demo_dxtj
|
|
|
|
|
-- ----------------------------
|
|
|
|
|
INSERT INTO `rep_demo_dxtj` VALUES ('1338808084247613441', '张三', '2019-11-06 00:00:00', '1', '18034596970', '1988-12-15 00:00:00', '北京市朝阳区奥运村街道亚运村小区', '18034596972', '王亮', '1');
|
2024-02-18 11:29:58 +00:00
|
|
|
|
INSERT INTO `rep_demo_dxtj` VALUES ('13388080842476134411', '张三', '2019-11-06 00:00:00', '1', '18034596970', '1988-12-15 00:00:00', '北京市朝阳区奥运村街道亚运村小区', '18034596972', '王亮', '1');
|
2021-06-23 03:13:11 +00:00
|
|
|
|
INSERT INTO `rep_demo_dxtj` VALUES ('1338809169074982920', '张小哲', '2019-11-06 00:00:00', '2', '18034596971', '1988-12-15 00:00:00', '北京市朝阳区奥运村街道亚运村小区', '18034596972', '王亮', '1');
|
|
|
|
|
INSERT INTO `rep_demo_dxtj` VALUES ('1338809448658898952', '闫妮', '2019-11-06 00:00:00', '2', '18034596972', '1988-12-15 00:00:00', '北京市朝阳区奥运村街道亚运村小区', '18034596972', '王亮', '1');
|
|
|
|
|
INSERT INTO `rep_demo_dxtj` VALUES ('1338809620973490184', '陌生', '2019-11-06 00:00:00', '2', '18034596973', '1988-12-15 00:00:00', '北京市朝阳区奥运村街道亚运村小区', '18034596972', '王亮', '1');
|
|
|
|
|
INSERT INTO `rep_demo_dxtj` VALUES ('1338809652606930952', '贺江', '2019-11-06 00:00:00', '2', '18034596974', '1988-12-15 00:00:00', '北京市朝阳区奥运村街道亚运村小区', '18034596972', '王亮', '2');
|
|
|
|
|
INSERT INTO `rep_demo_dxtj` VALUES ('1338809685200867336', '村子明', '2019-11-06 00:00:00', '3', '18034596975', '1988-12-15 00:00:00', '北京市朝阳区奥运村街道亚运村小区', '18034596972', '王亮', '2');
|
|
|
|
|
INSERT INTO `rep_demo_dxtj` VALUES ('1338809710203113481', '尚德', '2019-11-06 00:00:00', '4', '18034596977', '1988-12-15 00:00:00', '北京市朝阳区奥运村街道亚运村小区', '18034596972', '王亮', '1');
|
|
|
|
|
INSERT INTO `rep_demo_dxtj` VALUES ('1338809749470187528', '郑恺', '2019-11-06 00:00:00', '4', '18034596978', '1988-12-15 00:00:00', '北京市朝阳区奥运村街道亚运村小区', '18034596972', '王亮', '1');
|
|
|
|
|
INSERT INTO `rep_demo_dxtj` VALUES ('1338809774971555849', '未名园', '2019-11-06 00:00:00', '4', '18034596970', '1988-12-15 00:00:00', '北京市朝阳区奥运村街道亚运村小区', '18034596972', '王亮', '1');
|
|
|
|
|
INSERT INTO `rep_demo_dxtj` VALUES ('1338809805199904777', '韩寒', '2019-11-06 00:00:00', '5', '18034596970', '1988-12-15 00:00:00', '北京市朝阳区奥运村街道亚运村小区', '18034596972', '王亮', '1');
|
|
|
|
|
INSERT INTO `rep_demo_dxtj` VALUES ('1338809830017601544', '迪丽热拉', '2019-11-06 00:00:00', '6', '18034596970', '1988-12-15 00:00:00', '北京市朝阳区奥运村街道亚运村小区', '18034596972', '王亮', '1');
|
|
|
|
|
INSERT INTO `rep_demo_dxtj` VALUES ('1338809864356368393', '张一山', '2019-11-06 00:00:00', '6', '18034596970', '1988-12-15 00:00:00', '北京市朝阳区奥运村街道亚运村小区', '18034596972', '王亮', '1');
|
|
|
|
|
INSERT INTO `rep_demo_dxtj` VALUES ('1339160157602480137', '张三', '2019-11-06 00:00:00', '1', '18034596970', '1988-12-15 00:00:00', '北京市朝阳区奥运村街道亚运村小区', '18034596972', '王亮', '1');
|
|
|
|
|
INSERT INTO `rep_demo_dxtj` VALUES ('1339160157602480146', '张大大', '2019-11-06 00:00:00', '2', '18034596971', '1988-12-15 00:00:00', '北京市朝阳区奥运村街道亚运村小区', '18034596972', '王亮', '1');
|
|
|
|
|
INSERT INTO `rep_demo_dxtj` VALUES ('1339160157606674439', '郭美美', '2019-11-06 00:00:00', '2', '18034596972', '1988-12-15 00:00:00', '北京市朝阳区奥运村街道亚运村小区', '18034596972', '王亮', '1');
|
|
|
|
|
INSERT INTO `rep_demo_dxtj` VALUES ('1339160157606674448', '莫愁', '2019-11-06 00:00:00', '2', '18034596973', '1988-12-15 00:00:00', '北京市朝阳区奥运村街道亚运村小区', '18034596972', '王亮', '1');
|
|
|
|
|
INSERT INTO `rep_demo_dxtj` VALUES ('1339160157606674457', '鲁与', '2019-11-06 00:00:00', '2', '18034596974', '1988-12-15 00:00:00', '北京市朝阳区奥运村街道亚运村小区', '18034596972', '王亮', '2');
|
|
|
|
|
INSERT INTO `rep_demo_dxtj` VALUES ('1339160157606674466', '高尚', '2019-11-06 00:00:00', '3', '18034596975', '1988-12-15 00:00:00', '北京市朝阳区奥运村街道亚运村小区', '18034596972', '王亮', '2');
|
|
|
|
|
INSERT INTO `rep_demo_dxtj` VALUES ('1339160157606674475', '尚北京', '2019-11-06 00:00:00', '4', '18034596977', '1988-12-15 00:00:00', '北京市朝阳区奥运村街道亚运村小区', '18034596972', '王亮', '1');
|
|
|
|
|
INSERT INTO `rep_demo_dxtj` VALUES ('1339160157606674484', '杨颖花', '2019-11-06 00:00:00', '4', '18034596978', '1988-12-15 00:00:00', '北京市朝阳区奥运村街道亚运村小区', '18034596972', '王亮', '1');
|
|
|
|
|
INSERT INTO `rep_demo_dxtj` VALUES ('1339160157606674493', '李丽', '2019-11-06 00:00:00', '4', '18034596970', '1988-12-15 00:00:00', '北京市朝阳区奥运村街道亚运村小区', '18034596972', '王亮', '1');
|
|
|
|
|
INSERT INTO `rep_demo_dxtj` VALUES ('1339160157606674502', '韩露露', '2019-11-06 00:00:00', '5', '18034596970', '1988-12-15 00:00:00', '北京市朝阳区奥运村街道亚运村小区', '18034596972', '王亮', '1');
|
|
|
|
|
INSERT INTO `rep_demo_dxtj` VALUES ('1339160157606674511', '李凯泽', '2019-11-06 00:00:00', '6', '18034596970', '1988-12-15 00:00:00', '北京市朝阳区奥运村街道亚运村小区', '18034596972', '王亮', '1');
|
|
|
|
|
INSERT INTO `rep_demo_dxtj` VALUES ('1339160157606674520', '王明阳', '2019-11-06 00:00:00', '6', '18034596970', '1988-12-15 00:00:00', '北京市朝阳区奥运村街道亚运村小区', '18034596972', '王亮', '1');
|
|
|
|
|
|
|
|
|
|
-- ----------------------------
|
|
|
|
|
-- Table structure for rep_demo_employee
|
|
|
|
|
-- ----------------------------
|
|
|
|
|
DROP TABLE IF EXISTS `rep_demo_employee`;
|
|
|
|
|
CREATE TABLE `rep_demo_employee` (
|
|
|
|
|
`id` varchar(10) CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL COMMENT '主键',
|
|
|
|
|
`num` varchar(50) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '编号',
|
|
|
|
|
`name` varchar(100) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '姓名',
|
|
|
|
|
`sex` varchar(10) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '性别',
|
|
|
|
|
`birthday` datetime NULL DEFAULT NULL COMMENT '出生日期',
|
|
|
|
|
`nation` varchar(30) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '民族',
|
|
|
|
|
`political` varchar(30) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '政治面貌',
|
|
|
|
|
`native_place` varchar(30) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '籍贯',
|
|
|
|
|
`height` varchar(30) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '身高',
|
|
|
|
|
`weight` varchar(30) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '体重',
|
|
|
|
|
`health` varchar(30) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '健康状况',
|
|
|
|
|
`id_card` varchar(80) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '身份证号',
|
|
|
|
|
`education` varchar(30) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '学历',
|
|
|
|
|
`school` varchar(80) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '毕业学校',
|
|
|
|
|
`major` varchar(80) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '专业',
|
|
|
|
|
`address` varchar(100) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '联系地址',
|
|
|
|
|
`zip_code` varchar(30) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '邮编',
|
|
|
|
|
`email` varchar(30) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT 'Email',
|
|
|
|
|
`phone` varchar(30) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '手机号',
|
|
|
|
|
`foreign_language` varchar(30) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '外语语种',
|
|
|
|
|
`foreign_language_level` varchar(30) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '外语水平',
|
|
|
|
|
`computer_level` varchar(30) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '计算机水平',
|
|
|
|
|
`graduation_time` datetime NULL DEFAULT NULL COMMENT '毕业时间',
|
|
|
|
|
`arrival_time` datetime NULL DEFAULT NULL COMMENT '到职时间',
|
|
|
|
|
`positional_titles` varchar(30) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '职称',
|
|
|
|
|
`education_experience` text CHARACTER SET utf8 COLLATE utf8_general_ci NULL COMMENT '教育经历',
|
|
|
|
|
`work_experience` text CHARACTER SET utf8 COLLATE utf8_general_ci NULL COMMENT '工作经历',
|
|
|
|
|
`create_by` varchar(32) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '创建人',
|
|
|
|
|
`create_time` datetime NULL DEFAULT NULL COMMENT '创建时间',
|
|
|
|
|
`update_by` varchar(32) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '修改人',
|
|
|
|
|
`update_time` datetime NULL DEFAULT NULL COMMENT '修改时间',
|
|
|
|
|
`del_flag` tinyint(1) NULL DEFAULT NULL COMMENT '删除标识0-正常,1-已删除',
|
|
|
|
|
PRIMARY KEY (`id`) USING BTREE
|
2022-12-07 13:22:18 +00:00
|
|
|
|
) ENGINE = InnoDB CHARACTER SET = utf8 COLLATE = utf8_general_ci ROW_FORMAT = DYNAMIC;
|
2021-06-23 03:13:11 +00:00
|
|
|
|
|
|
|
|
|
-- ----------------------------
|
|
|
|
|
-- Records of rep_demo_employee
|
|
|
|
|
-- ----------------------------
|
|
|
|
|
INSERT INTO `rep_demo_employee` VALUES ('1', '001', '张三', '男', '2000-02-04 13:36:19', '汉族', '团员', '北京', '170', '65', '良好', '110101200002044853', '大专', '北京科技', '计算机', '北京朝阳区', '1001', 'zhang@163.com', '18011111111', '英语', '三级', '三级', '2019-02-04 13:41:17', '2020-02-04 13:41:31', '项目经理', '2018年9月—2019年7月:北京语言文化大学比较文学研究所攻读博士学位,获得比较文学博士学位', '2019年5月---至今 XX公司 网络系统工程师 \n2019年5月---至今 XX公司 网络系统工程师', NULL, '2020-02-04 15:18:03', NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `rep_demo_employee` VALUES ('2', '002', '王红', '女', '2000-02-04 13:36:19', '汉族', '团员', '北京', '170', '65', '良好', '110101200002044853', '大专', '北京科技', '计算机', '北京朝阳区', '1001', 'zhang@163.com', '18011111111', '英语', '三级', '三级', '2019-02-04 13:41:17', '2020-02-04 13:41:31', '项目经理', '2018年9月—2019年7月:北京语言文化大学比较文学研究所攻读博士学位,获得比较文学博士学位', '2019年5月---至今 XX公司 网络系统工程师 \n2019年5月---至今 XX公司 网络系统工程师', NULL, '2020-02-04 18:39:27', NULL, NULL, NULL);
|
|
|
|
|
|
|
|
|
|
-- ----------------------------
|
|
|
|
|
-- Table structure for rep_demo_gongsi
|
|
|
|
|
-- ----------------------------
|
|
|
|
|
DROP TABLE IF EXISTS `rep_demo_gongsi`;
|
|
|
|
|
CREATE TABLE `rep_demo_gongsi` (
|
|
|
|
|
`id` int(11) NOT NULL AUTO_INCREMENT,
|
|
|
|
|
`gname` varchar(125) CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL COMMENT '货品名称',
|
|
|
|
|
`gdata` varchar(255) CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL COMMENT '返利',
|
|
|
|
|
`tdata` varchar(125) CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL COMMENT '备注',
|
|
|
|
|
`didian` varchar(255) CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL,
|
|
|
|
|
`zhaiyao` varchar(255) CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL,
|
|
|
|
|
`num` varchar(255) CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL,
|
|
|
|
|
PRIMARY KEY (`id`) USING BTREE
|
2022-12-07 13:22:18 +00:00
|
|
|
|
) ENGINE = InnoDB AUTO_INCREMENT = 3 CHARACTER SET = utf8 COLLATE = utf8_general_ci ROW_FORMAT = DYNAMIC;
|
2021-06-23 03:13:11 +00:00
|
|
|
|
|
|
|
|
|
-- ----------------------------
|
|
|
|
|
-- Records of rep_demo_gongsi
|
|
|
|
|
-- ----------------------------
|
|
|
|
|
INSERT INTO `rep_demo_gongsi` VALUES (1, '北京天山海世界', '2020-02-30 11:12:25', '2020-02-25', '天山大厦', '1', '2399845661');
|
|
|
|
|
INSERT INTO `rep_demo_gongsi` VALUES (2, 'dd天山海世界', '2020-02-30 11:12:25', '2020-02-25', '天山大厦', '1', '2399845661');
|
|
|
|
|
|
|
|
|
|
-- ----------------------------
|
|
|
|
|
-- Table structure for rep_demo_jianpiao
|
|
|
|
|
-- ----------------------------
|
|
|
|
|
DROP TABLE IF EXISTS `rep_demo_jianpiao`;
|
|
|
|
|
CREATE TABLE `rep_demo_jianpiao` (
|
|
|
|
|
`id` int(11) NOT NULL AUTO_INCREMENT,
|
|
|
|
|
`bnum` varchar(125) CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL,
|
|
|
|
|
`ftime` varchar(125) CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL,
|
|
|
|
|
`sfkong` varchar(125) CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL,
|
|
|
|
|
`kaishi` varchar(125) CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL,
|
|
|
|
|
`jieshu` varchar(125) CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL,
|
|
|
|
|
`hezairen` varchar(125) CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL,
|
|
|
|
|
`jpnum` varchar(125) CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL,
|
|
|
|
|
`shihelv` varchar(125) CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL,
|
|
|
|
|
`s_id` int(11) NOT NULL,
|
|
|
|
|
PRIMARY KEY (`id`) USING BTREE
|
2022-12-07 13:22:18 +00:00
|
|
|
|
) ENGINE = InnoDB AUTO_INCREMENT = 87 CHARACTER SET = utf8 COLLATE = utf8_general_ci ROW_FORMAT = DYNAMIC;
|
2021-06-23 03:13:11 +00:00
|
|
|
|
|
|
|
|
|
-- ----------------------------
|
|
|
|
|
-- Records of rep_demo_jianpiao
|
|
|
|
|
-- ----------------------------
|
|
|
|
|
INSERT INTO `rep_demo_jianpiao` VALUES (1, 'K7725', '21:13', '否', '秦皇岛', '邯郸', '300', '258', '86', 1);
|
|
|
|
|
INSERT INTO `rep_demo_jianpiao` VALUES (2, 'k99', '16:55', '否', '包头', '广州', '800', '700', '88', 1);
|
|
|
|
|
INSERT INTO `rep_demo_jianpiao` VALUES (3, 'G6737', '05:34', '否', '北京西', '邯郸东', '500', '256', '51', 1);
|
|
|
|
|
INSERT INTO `rep_demo_jianpiao` VALUES (4, 'K7705', '07:03', '否', '北京', '邯郸', '400', '200', '50', 1);
|
|
|
|
|
INSERT INTO `rep_demo_jianpiao` VALUES (5, 'G437', '06:27', '否', '北京西', '兰州西', '800', '586', '73', 1);
|
|
|
|
|
INSERT INTO `rep_demo_jianpiao` VALUES (6, 'G673', '06:32', '否', '北京西', '邯郸东', '300', '289', '87', 1);
|
|
|
|
|
INSERT INTO `rep_demo_jianpiao` VALUES (7, 'G507', '06:43', '否', '北京西', '邯郸东', '300', '200', '67', 1);
|
|
|
|
|
INSERT INTO `rep_demo_jianpiao` VALUES (8, 'G89', '06:53', '否', '北京西', '成都东', '800', '500', '62', 1);
|
|
|
|
|
INSERT INTO `rep_demo_jianpiao` VALUES (9, 'K7712', '09:43', '否', '北京西', '西安北', '400', '200', '50', 1);
|
|
|
|
|
INSERT INTO `rep_demo_jianpiao` VALUES (10, 'G405', '10:05', '否', '北京西', '昆明南', '300', '200', '67', 1);
|
|
|
|
|
INSERT INTO `rep_demo_jianpiao` VALUES (11, 'G6701', '10:38', '否', '北京西', '石家庄', '300', '200', '67', 1);
|
|
|
|
|
INSERT INTO `rep_demo_jianpiao` VALUES (12, 'G487', '10:52', '否', '北京西', '南昌西', '800', '700', '88', 1);
|
|
|
|
|
INSERT INTO `rep_demo_jianpiao` VALUES (13, 'G607', '11:14', '否', '北京西', '太原南', '400', '200', '50', 1);
|
|
|
|
|
INSERT INTO `rep_demo_jianpiao` VALUES (14, 'G667', '11:19', '否', '北京西', '西安北', '400', '200', '50', 1);
|
|
|
|
|
INSERT INTO `rep_demo_jianpiao` VALUES (15, 'Z49', '11:28', '否', '北京西', '成都', '400', '200', '50', 1);
|
|
|
|
|
INSERT INTO `rep_demo_jianpiao` VALUES (16, 'Z49', '11:28', '否', '北京西', '上海', '300', '200', '80', 1);
|
|
|
|
|
INSERT INTO `rep_demo_jianpiao` VALUES (17, 'Z49', '11:56', '否', '北京西', '上海', '200', '180', '95', 1);
|
|
|
|
|
INSERT INTO `rep_demo_jianpiao` VALUES (18, 'Z49', '11:36', '否', '北京南', '大晒', '200', '180', '96', 1);
|
|
|
|
|
INSERT INTO `rep_demo_jianpiao` VALUES (19, 'Z123', '12:00', '否', '北京南', '重庆', '1000', '1000', '100', 1);
|
|
|
|
|
INSERT INTO `rep_demo_jianpiao` VALUES (20, 'G78', '13:56', '否', '北京东', '厦门北', '800', '700', '90', 1);
|
|
|
|
|
INSERT INTO `rep_demo_jianpiao` VALUES (21, 'G56', '18:36', '否', '上海西', '深圳', '800', '700', '90', 1);
|
|
|
|
|
INSERT INTO `rep_demo_jianpiao` VALUES (22, 'H78', '12:00', '否', '上海', '北京西', '800', '700', '90', 1);
|
|
|
|
|
INSERT INTO `rep_demo_jianpiao` VALUES (23, 'H78', '12:00', '否', '上海', '北京西', '800', '700', '90', 1);
|
|
|
|
|
INSERT INTO `rep_demo_jianpiao` VALUES (24, 'H78', '12:00', '否', '上海', '北京西', '800', '700', '90', 1);
|
|
|
|
|
INSERT INTO `rep_demo_jianpiao` VALUES (25, 'H78', '12:00', '否', '北京西', '南昌', '800', '700', '90', 1);
|
|
|
|
|
INSERT INTO `rep_demo_jianpiao` VALUES (26, 'G70', '7:23', '是', '北京西', '厦门', '500', '450', '95', 1);
|
|
|
|
|
INSERT INTO `rep_demo_jianpiao` VALUES (27, 'G14', '9:50', '是', '北京西', '上海', '800', '700', '95', 1);
|
|
|
|
|
INSERT INTO `rep_demo_jianpiao` VALUES (28, 'G90', '8:30', '是', '北京南', '武昌', '1000', '1000', '100', 1);
|
|
|
|
|
INSERT INTO `rep_demo_jianpiao` VALUES (29, 'G25', '7:56', '是', '厦门北', '福州', '500', '100', '20', 1);
|
|
|
|
|
INSERT INTO `rep_demo_jianpiao` VALUES (30, 'G50', '14:23', '否', '北京西', '深圳', '500', '100', '20', 1);
|
|
|
|
|
INSERT INTO `rep_demo_jianpiao` VALUES (31, 'G10', '13:00', '否', '北京西', '深圳', '500', '100', '20', 1);
|
|
|
|
|
INSERT INTO `rep_demo_jianpiao` VALUES (32, 'G10', '13:00', '否', '北京西', '深圳', '500', '100', '20', 1);
|
|
|
|
|
INSERT INTO `rep_demo_jianpiao` VALUES (33, 'G10', '13:00', '否', '北京西', '深圳', '200', '100', '50', 1);
|
|
|
|
|
INSERT INTO `rep_demo_jianpiao` VALUES (34, 'G10', '13:00', '否', '北京西', '深圳', '200', '100', '50', 1);
|
|
|
|
|
INSERT INTO `rep_demo_jianpiao` VALUES (35, 'G10', '13:00', '否', '北京西', '深圳', '200', '100', '50', 1);
|
|
|
|
|
INSERT INTO `rep_demo_jianpiao` VALUES (36, 'G10', '13:00', '否', '北京西', '深圳', '200', '100', '50', 1);
|
|
|
|
|
INSERT INTO `rep_demo_jianpiao` VALUES (37, 'G10', '13:00', '否', '北京西', '深圳', '200', '100', '50', 1);
|
|
|
|
|
INSERT INTO `rep_demo_jianpiao` VALUES (38, 'G10', '13:00', '否', '北京西', '深圳', '200', '100', '50', 1);
|
|
|
|
|
INSERT INTO `rep_demo_jianpiao` VALUES (39, 'G10', '13:00', '否', '北京西', '深圳', '200', '100', '50', 1);
|
|
|
|
|
INSERT INTO `rep_demo_jianpiao` VALUES (40, 'G10', '13:00', '否', '北京西', '深圳', '200', '100', '50', 1);
|
|
|
|
|
INSERT INTO `rep_demo_jianpiao` VALUES (41, 'G10', '13:00', '否', '北京西', '深圳', '200', '100', '50', 1);
|
|
|
|
|
INSERT INTO `rep_demo_jianpiao` VALUES (42, 'G10', '13:00', '否', '北京西', '深圳', '200', '100', '50', 1);
|
|
|
|
|
INSERT INTO `rep_demo_jianpiao` VALUES (43, 'G10', '13:00', '否', '北京西', '深圳', '200', '100', '50', 1);
|
|
|
|
|
INSERT INTO `rep_demo_jianpiao` VALUES (44, 'G10', '13:00', '否', '北京西', '深圳', '200', '100', '50', 1);
|
|
|
|
|
INSERT INTO `rep_demo_jianpiao` VALUES (45, 'G10', '13:00', '否', '北京西', '深圳', '200', '100', '50', 1);
|
|
|
|
|
INSERT INTO `rep_demo_jianpiao` VALUES (46, 'G10', '13:00', '否', '北京西', '深圳', '200', '100', '50', 1);
|
|
|
|
|
INSERT INTO `rep_demo_jianpiao` VALUES (47, 'G10', '13:00', '否', '北京西', '深圳', '200', '100', '50', 1);
|
|
|
|
|
INSERT INTO `rep_demo_jianpiao` VALUES (48, 'G10', '13:00', '否', '北京西', '深圳', '200', '100', '50', 1);
|
|
|
|
|
INSERT INTO `rep_demo_jianpiao` VALUES (49, 'G10', '13:00', '否', '北京西', '深圳', '200', '100', '50', 1);
|
|
|
|
|
INSERT INTO `rep_demo_jianpiao` VALUES (50, 'G10', '13:00', '否', '北京西', '深圳', '200', '100', '50', 1);
|
|
|
|
|
INSERT INTO `rep_demo_jianpiao` VALUES (51, 'G10', '13:00', '否', '北京西', '深圳', '200', '100', '50', 1);
|
|
|
|
|
INSERT INTO `rep_demo_jianpiao` VALUES (52, 'G10', '13:00', '否', '北京西', '深圳', '200', '100', '50', 1);
|
|
|
|
|
INSERT INTO `rep_demo_jianpiao` VALUES (53, 'G10', '13:00', '否', '北京西', '深圳', '200', '100', '50', 1);
|
|
|
|
|
INSERT INTO `rep_demo_jianpiao` VALUES (54, 'G10', '13:00', '否', '北京西', '深圳', '200', '100', '50', 1);
|
|
|
|
|
INSERT INTO `rep_demo_jianpiao` VALUES (55, 'G10', '13:00', '否', '北京西', '深圳', '200', '100', '50', 1);
|
|
|
|
|
INSERT INTO `rep_demo_jianpiao` VALUES (56, 'G10', '13:00', '否', '北京西', '深圳', '200', '100', '50', 1);
|
|
|
|
|
INSERT INTO `rep_demo_jianpiao` VALUES (57, 'G10', '13:00', '否', '北京西', '深圳', '200', '100', '50', 1);
|
|
|
|
|
INSERT INTO `rep_demo_jianpiao` VALUES (58, 'G10', '13:00', '否', '北京西', '深圳', '200', '100', '50', 1);
|
|
|
|
|
INSERT INTO `rep_demo_jianpiao` VALUES (59, 'G10', '13:00', '否', '北京西', '深圳', '200', '100', '50', 1);
|
|
|
|
|
INSERT INTO `rep_demo_jianpiao` VALUES (60, 'G10', '13:00', '否', '北京西', '深圳', '200', '100', '50', 1);
|
|
|
|
|
INSERT INTO `rep_demo_jianpiao` VALUES (61, 'G10', '13:00', '否', '北京西', '深圳', '200', '100', '50', 1);
|
|
|
|
|
INSERT INTO `rep_demo_jianpiao` VALUES (62, 'G10', '13:00', '否', '北京西', '深圳', '200', '100', '50', 1);
|
|
|
|
|
INSERT INTO `rep_demo_jianpiao` VALUES (63, 'G10', '13:00', '否', '北京西', '深圳', '200', '100', '50', 1);
|
|
|
|
|
INSERT INTO `rep_demo_jianpiao` VALUES (64, 'G10', '13:00', '否', '北京西', '深圳', '200', '100', '50', 1);
|
|
|
|
|
INSERT INTO `rep_demo_jianpiao` VALUES (65, 'G10', '13:00', '否', '北京西', '深圳', '200', '100', '50', 1);
|
|
|
|
|
INSERT INTO `rep_demo_jianpiao` VALUES (66, 'G10', '13:00', '否', '北京西', '深圳', '200', '100', '50', 1);
|
|
|
|
|
INSERT INTO `rep_demo_jianpiao` VALUES (67, 'G10', '13:00', '否', '北京西', '深圳', '200', '100', '50', 1);
|
|
|
|
|
INSERT INTO `rep_demo_jianpiao` VALUES (68, 'G10', '13:00', '否', '北京西', '深圳', '200', '100', '50', 1);
|
|
|
|
|
INSERT INTO `rep_demo_jianpiao` VALUES (69, 'G10', '13:00', '否', '北京西', '深圳', '200', '100', '50', 1);
|
|
|
|
|
INSERT INTO `rep_demo_jianpiao` VALUES (70, 'G10', '13:00', '否', '北京西', '深圳', '200', '100', '50', 1);
|
|
|
|
|
INSERT INTO `rep_demo_jianpiao` VALUES (71, 'G10', '13:00', '否', '北京西', '深圳', '200', '100', '50', 1);
|
|
|
|
|
INSERT INTO `rep_demo_jianpiao` VALUES (72, 'G10', '13:00', '否', '北京西', '深圳', '200', '100', '50', 1);
|
|
|
|
|
INSERT INTO `rep_demo_jianpiao` VALUES (73, 'G10', '13:00', '否', '北京西', '深圳', '200', '100', '50', 1);
|
|
|
|
|
INSERT INTO `rep_demo_jianpiao` VALUES (74, 'G10', '13:00', '否', '北京西', '深圳', '200', '100', '50', 1);
|
|
|
|
|
INSERT INTO `rep_demo_jianpiao` VALUES (75, 'G10', '13:00', '否', '北京西', '深圳', '200', '100', '50', 1);
|
|
|
|
|
INSERT INTO `rep_demo_jianpiao` VALUES (76, 'G10', '13:00', '否', '北京西', '深圳', '200', '100', '50', 1);
|
|
|
|
|
INSERT INTO `rep_demo_jianpiao` VALUES (77, 'G10', '13:00', '否', '北京西', '深圳', '200', '100', '50', 1);
|
|
|
|
|
INSERT INTO `rep_demo_jianpiao` VALUES (78, 'G10', '13:00', '否', '北京西', '深圳', '200', '100', '50', 1);
|
|
|
|
|
INSERT INTO `rep_demo_jianpiao` VALUES (79, 'G10', '13:00', '否', '北京西', '深圳', '200', '100', '50', 1);
|
|
|
|
|
INSERT INTO `rep_demo_jianpiao` VALUES (80, 'G10', '13:00', '否', '北京西', '深圳', '200', '100', '50', 1);
|
|
|
|
|
INSERT INTO `rep_demo_jianpiao` VALUES (81, 'G10', '13:00', '否', '北京西', '深圳', '200', '100', '50', 1);
|
|
|
|
|
INSERT INTO `rep_demo_jianpiao` VALUES (82, 'G10', '13:00', '否', '北京西', '深圳', '200', '100', '50', 1);
|
|
|
|
|
INSERT INTO `rep_demo_jianpiao` VALUES (83, 'G10', '13:00', '否', '北京西', '深圳', '200', '100', '50', 1);
|
|
|
|
|
INSERT INTO `rep_demo_jianpiao` VALUES (84, 'G10', '13:00', '否', '北京西', '深圳', '200', '100', '50', 1);
|
|
|
|
|
INSERT INTO `rep_demo_jianpiao` VALUES (85, 'G10', '13:00', '否', '北京西', '深圳', '200', '100', '50', 1);
|
|
|
|
|
INSERT INTO `rep_demo_jianpiao` VALUES (86, 'G10', '13:00', '否', '北京西', '深圳', '200', '100', '50', 1);
|
|
|
|
|
|
2022-12-07 13:22:18 +00:00
|
|
|
|
-- ----------------------------
|
|
|
|
|
-- Table structure for rep_demo_xiaoshou
|
|
|
|
|
-- ----------------------------
|
|
|
|
|
DROP TABLE IF EXISTS `rep_demo_xiaoshou`;
|
|
|
|
|
CREATE TABLE `rep_demo_xiaoshou` (
|
|
|
|
|
`id` int(11) NOT NULL AUTO_INCREMENT,
|
|
|
|
|
`hnum` varchar(125) CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL COMMENT '货品编码',
|
|
|
|
|
`hname` varchar(125) CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL COMMENT '货品名称',
|
|
|
|
|
`xinghao` varchar(125) CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL COMMENT '单位',
|
|
|
|
|
`fahuocangku` varchar(125) CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL COMMENT '数量',
|
|
|
|
|
`danwei` varchar(125) CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL COMMENT '单价',
|
|
|
|
|
`num` int(11) NOT NULL COMMENT '返利',
|
|
|
|
|
`danjia` varchar(125) CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL COMMENT '备注',
|
|
|
|
|
`zhekoulv` int(11) NOT NULL,
|
|
|
|
|
`xiaoshoujine` varchar(125) CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL,
|
|
|
|
|
`beizhu` varchar(125) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL,
|
|
|
|
|
`s_id` varchar(11) CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL,
|
|
|
|
|
PRIMARY KEY (`id`) USING BTREE
|
2023-09-08 16:18:56 +00:00
|
|
|
|
) ENGINE = InnoDB AUTO_INCREMENT = 19 CHARACTER SET = utf8 COLLATE = utf8_general_ci ROW_FORMAT = DYNAMIC;
|
2022-12-07 13:22:18 +00:00
|
|
|
|
|
|
|
|
|
-- ----------------------------
|
|
|
|
|
-- Records of rep_demo_xiaoshou
|
|
|
|
|
-- ----------------------------
|
|
|
|
|
INSERT INTO `rep_demo_xiaoshou` VALUES (1, '5896', '冰箱', 'H2563', '上海', '件', 300, '1', 20, '1000', '晚上送', '1');
|
|
|
|
|
INSERT INTO `rep_demo_xiaoshou` VALUES (2, '4596', '空调', 'M79', '上海', '件', 800, '2', 10, '2560', '上门安装', '1');
|
|
|
|
|
INSERT INTO `rep_demo_xiaoshou` VALUES (3, '3695', '洗衣机', 'H90', '杭州', '件', 500, '3', 50, '259', '', '1');
|
|
|
|
|
INSERT INTO `rep_demo_xiaoshou` VALUES (4, '1258', '微波炉', 'J89', '广州', '件', 400, '4', 20, '259', '多个排水管', '1');
|
|
|
|
|
INSERT INTO `rep_demo_xiaoshou` VALUES (5, '1258', '烤箱', 'K56', '广州', '件', 800, '5', 50, '368', '', '1');
|
|
|
|
|
INSERT INTO `rep_demo_xiaoshou` VALUES (6, '5623', '电饼铛', 'H56', '上海', '件', 300, '6', 40, '456', '中午送', '1');
|
|
|
|
|
INSERT INTO `rep_demo_xiaoshou` VALUES (7, '5894', '早餐机', 'K67', '杭州', '件', 300, '7', 30, '147', '', '1');
|
|
|
|
|
INSERT INTO `rep_demo_xiaoshou` VALUES (8, '4578', '电饭锅', 'M45', '广州', '件', 800, '8', 50, '148', '', '1');
|
|
|
|
|
INSERT INTO `rep_demo_xiaoshou` VALUES (9, '2589', '豆浆机', 'H56', '上海', '件', 400, '9', 20, '258', '', '1');
|
|
|
|
|
INSERT INTO `rep_demo_xiaoshou` VALUES (10, '1456', '榨汁机', 'H45', '杭州', '件', 300, '10', 10, '456', '', '1');
|
|
|
|
|
INSERT INTO `rep_demo_xiaoshou` VALUES (11, '2578', '热水壶', 'U78', '广州', '件', 300, '11', 50, '258', '', '1');
|
|
|
|
|
INSERT INTO `rep_demo_xiaoshou` VALUES (12, '1369', '热水器', 'J78', '上海', '件', 800, '12', 80, '158', '', '1');
|
|
|
|
|
INSERT INTO `rep_demo_xiaoshou` VALUES (13, '5642', '吸尘器', 'R45', '上海', '件', 400, '13', 90, '125', '', '1');
|
|
|
|
|
INSERT INTO `rep_demo_xiaoshou` VALUES (14, '1356', '挂烫机', 'U67', '上海', '件', 400, '14', 50, '120', '', '1');
|
|
|
|
|
INSERT INTO `rep_demo_xiaoshou` VALUES (15, '2587', '破壁机', 'H56', '杭州', '件', 400, '15', 15, '258', '', '1');
|
|
|
|
|
INSERT INTO `rep_demo_xiaoshou` VALUES (16, '2578', '热水壶11', 'U78', '广州', '件', 300, '11', 50, '258', '', '1');
|
|
|
|
|
INSERT INTO `rep_demo_xiaoshou` VALUES (17, '2578', '热水壶22', 'U78', '广州', '件', 300, '11', 50, '258', '', '1');
|
|
|
|
|
INSERT INTO `rep_demo_xiaoshou` VALUES (18, '2589', '电脑', 'XXP', '北京', '台', 56, '1220', 20, '1000', '', '1');
|
|
|
|
|
|
2021-06-23 03:13:11 +00:00
|
|
|
|
-- ----------------------------
|
|
|
|
|
-- Table structure for tmp_report_data_1
|
|
|
|
|
-- ----------------------------
|
|
|
|
|
DROP TABLE IF EXISTS `tmp_report_data_1`;
|
|
|
|
|
CREATE TABLE `tmp_report_data_1` (
|
|
|
|
|
`monty` varchar(255) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '月份',
|
|
|
|
|
`main_income` decimal(10, 2) NULL DEFAULT NULL,
|
|
|
|
|
`total` decimal(10, 2) NULL DEFAULT NULL,
|
|
|
|
|
`his_lowest` decimal(10, 2) NULL DEFAULT NULL,
|
|
|
|
|
`his_average` decimal(10, 2) NULL DEFAULT NULL,
|
|
|
|
|
`his_highest` decimal(10, 2) NULL DEFAULT NULL
|
2022-12-07 13:22:18 +00:00
|
|
|
|
) ENGINE = InnoDB CHARACTER SET = utf8 COLLATE = utf8_general_ci ROW_FORMAT = DYNAMIC;
|
2021-06-23 03:13:11 +00:00
|
|
|
|
|
|
|
|
|
-- ----------------------------
|
|
|
|
|
-- Records of tmp_report_data_1
|
|
|
|
|
-- ----------------------------
|
|
|
|
|
INSERT INTO `tmp_report_data_1` VALUES ('1月', 483834.66, 483834.66, 57569.77, 216797.62, 483834.66);
|
|
|
|
|
INSERT INTO `tmp_report_data_1` VALUES ('2月', 11666578.65, 12150413.31, 22140.00, 4985361.57, 11666578.65);
|
|
|
|
|
INSERT INTO `tmp_report_data_1` VALUES ('3月', 27080982.08, 39231395.39, 73106.29, 16192642.30, 27080982.08);
|
|
|
|
|
INSERT INTO `tmp_report_data_1` VALUES ('4月', 0.00, 39231395.39, 73106.29, 8513415.34, 17428381.40);
|
|
|
|
|
INSERT INTO `tmp_report_data_1` VALUES ('5月', 0.00, 39231395.39, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `tmp_report_data_1` VALUES ('6月', 0.00, 39231395.39, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `tmp_report_data_1` VALUES ('7月', 0.00, 39231395.39, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `tmp_report_data_1` VALUES ('8月', 0.00, 39231395.39, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `tmp_report_data_1` VALUES ('9月', 0.00, 39231395.39, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `tmp_report_data_1` VALUES ('10月', 0.00, 39231395.39, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `tmp_report_data_1` VALUES ('11月', 0.00, 39231395.39, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `tmp_report_data_1` VALUES ('12月', 0.00, 39231395.39, NULL, NULL, NULL);
|
|
|
|
|
|
|
|
|
|
-- ----------------------------
|
|
|
|
|
-- Table structure for tmp_report_data_income
|
|
|
|
|
-- ----------------------------
|
|
|
|
|
DROP TABLE IF EXISTS `tmp_report_data_income`;
|
|
|
|
|
CREATE TABLE `tmp_report_data_income` (
|
|
|
|
|
`biz_income` varchar(100) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL,
|
|
|
|
|
`bx_jj_yongjin` decimal(10, 2) NULL DEFAULT NULL,
|
|
|
|
|
`bx_zx_money` decimal(10, 2) NULL DEFAULT NULL,
|
|
|
|
|
`chengbao_gz_money` decimal(10, 2) NULL DEFAULT NULL,
|
|
|
|
|
`bx_gg_moeny` decimal(10, 2) NULL DEFAULT NULL,
|
|
|
|
|
`tb_zx_money` decimal(10, 2) NULL DEFAULT NULL,
|
|
|
|
|
`neikong_zx_money` decimal(10, 2) NULL DEFAULT NULL,
|
|
|
|
|
`total` decimal(10, 2) NULL DEFAULT NULL
|
2022-12-07 13:22:18 +00:00
|
|
|
|
) ENGINE = InnoDB CHARACTER SET = utf8 COLLATE = utf8_general_ci ROW_FORMAT = DYNAMIC;
|
2021-06-23 03:13:11 +00:00
|
|
|
|
|
|
|
|
|
-- ----------------------------
|
|
|
|
|
-- Records of tmp_report_data_income
|
|
|
|
|
-- ----------------------------
|
|
|
|
|
INSERT INTO `tmp_report_data_income` VALUES ('中国石油全资(集团所属)', 37134.58, 1099273.32, 0.00, 0.00, 0.00, 226415.09, 38460270.57);
|
|
|
|
|
INSERT INTO `tmp_report_data_income` VALUES ('中国石油全资(股份所属)', 227595.77, 0.00, 0.00, 0.00, 0.00, 0.00, 227595.77);
|
|
|
|
|
INSERT INTO `tmp_report_data_income` VALUES ('中石油控股或有控股权', 310628.11, 369298.64, 0.00, 0.00, 0.00, 0.00, 679926.75);
|
|
|
|
|
INSERT INTO `tmp_report_data_income` VALUES ('中石油参股', 72062.45, 0.00, 0.00, 0.00, 0.00, 0.00, 72062.75);
|
|
|
|
|
INSERT INTO `tmp_report_data_income` VALUES ('非中石油', 1486526.90, 212070.72, 0.00, 0.00, 0.00, 226415.09, 1698597.62);
|
|
|
|
|
|
2023-09-08 16:18:56 +00:00
|
|
|
|
-- ----------------------------
|
|
|
|
|
-- Procedure structure for proc_jmdemo
|
|
|
|
|
-- ----------------------------
|
|
|
|
|
DROP PROCEDURE IF EXISTS `proc_jmdemo`;
|
|
|
|
|
delimiter ;;
|
|
|
|
|
CREATE PROCEDURE `proc_jmdemo`(IN pageNo INT,IN pageSize INT)
|
|
|
|
|
BEGIN
|
|
|
|
|
DECLARE begin_no INT;
|
|
|
|
|
SET begin_no = (pageNo-1)*pageSize;
|
|
|
|
|
|
|
|
|
|
-- 分页查询列表
|
|
|
|
|
SELECT * FROM rep_demo_dxtj
|
|
|
|
|
WHERE id >= (
|
|
|
|
|
SELECT id FROM rep_demo_dxtj
|
|
|
|
|
ORDER BY id ASC
|
|
|
|
|
LIMIT begin_no,1
|
|
|
|
|
)
|
|
|
|
|
ORDER BY id ASC
|
|
|
|
|
LIMIT pageSize;
|
|
|
|
|
|
|
|
|
|
END
|
|
|
|
|
;;
|
|
|
|
|
delimiter ;
|
|
|
|
|
|
2021-06-23 03:13:11 +00:00
|
|
|
|
SET FOREIGN_KEY_CHECKS = 1;
|