From e5ad6fd15604724632d890a21b852e8ad309bd1e Mon Sep 17 00:00:00 2001 From: panbaolin <13071138970@163.com> Date: Thu, 14 Aug 2025 19:26:12 +0800 Subject: [PATCH] =?UTF-8?q?1.=E5=AE=8C=E6=88=90=E6=B0=94=E8=B1=A1=E9=A2=84?= =?UTF-8?q?=E6=B5=8B=E4=BB=BB=E5=8A=A1=E6=96=B0=E5=A2=9E=E3=80=81=E4=BF=AE?= =?UTF-8?q?=E6=94=B9=E3=80=81=E5=88=A0=E9=99=A4=E3=80=81=E5=88=86=E9=A1=B5?= =?UTF-8?q?=E6=9F=A5=E8=AF=A2=E3=80=81=E6=9F=A5=E8=AF=A2=E4=BB=BB=E5=8A=A1?= =?UTF-8?q?=E6=97=A5=E5=BF=97=E5=8A=9F=E8=83=BD=202.=E5=AE=8C=E6=88=90?= =?UTF-8?q?=E6=B0=94=E8=B1=A1=E6=95=B0=E6=8D=AE=E7=AE=A1=E7=90=86=E5=8A=9F?= =?UTF-8?q?=E8=83=BD=E6=96=87=E4=BB=B6=E6=A0=A1=E9=AA=8C=E3=80=81=E6=96=87?= =?UTF-8?q?=E4=BB=B6=E4=B8=8A=E4=BC=A0=E3=80=81=E6=96=87=E4=BB=B6=E5=88=A0?= =?UTF-8?q?=E9=99=A4=E5=8A=9F=E8=83=BD=203.=E8=A7=A3=E5=86=B3cloud?= =?UTF-8?q?=E6=9C=8D=E5=8A=A1=E6=95=B0=E6=8D=AE=E4=BC=A0=E9=80=92=E5=8A=9F?= =?UTF-8?q?=E8=83=BD?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- db/stas.sql | 4671 +---------------- jeecg-boot-base-core/pom.xml | 16 + .../common/constant/ServiceNameConstants.java | 17 - .../constant/enums/WeatherDataSourceEnum.java | 30 + .../constant/enums/WeatherFilePrefixEnum.java | 37 + .../constant/enums/WeatherFileSuffixEnum.java | 21 + .../constant/enums/WeatherModelEnum.java | 26 + .../constant/enums/WeatherTaskStatusEnum.java | 30 + .../constant/enums/WeatherTypeEnum.java | 32 + .../properties/SystemStorageProperties.java | 31 + .../{JeecgEntity.java => BaseEntity.java} | 8 +- .../base/service/impl/JeecgServiceImpl.java | 4 +- .../common/system/query/PageRequest.java | 67 + .../java/org/jeecg/common/util/NcUtil.java | 254 + .../jeecg/common/validgroup/InsertGroup.java | 7 + .../jeecg/common/validgroup/UpdateGroup.java | 4 + .../security/JeecgAuthenticationConvert.java | 1 + .../modules/base/entity/WeatherData.java | 99 + .../modules/base/entity/WeatherTask.java | 85 + .../modules/base/entity/WeatherTaskLog.java | 44 + .../base/mapper/WeatherDataMapper.java | 8 + .../base/mapper/WeatherTaskLogMapper.java | 8 + .../base/mapper/WeatherTaskMapper.java | 8 + .../base/mapper/xml/WeatherDataMapper.xml | 5 + .../base/mapper/xml/WeatherTaskLogMapper.xml | 5 + .../base/mapper/xml/WeatherTaskMapper.xml | 5 + .../base/service/BaseCommonService.java | 4 - .../service/impl/BaseCommonServiceImpl.java | 4 - .../jeecg/common/system/api/ISysBaseAPI.java | 3 +- .../java/org/jeecg/config/FeignConfig.java | 202 +- jeecg-module-system/jeecg-system-api/pom.xml | 1 + jeecg-module-system/jeecg-system-biz/pom.xml | 2 +- .../modules/message/entity/SysMessage.java | 6 +- .../message/entity/SysMessageTemplate.java | 4 +- .../org/jeecg/modules/oss/entity/OssFile.java | 4 +- jeecg-module-weather/pom.xml | 27 + .../controller/WeatherDataController.java | 87 + .../controller/WeatherTaskController.java | 73 + .../org/jeecg/service/WeatherDataService.java | 48 + .../org/jeecg/service/WeatherTaskService.java | 58 + .../service/impl/WeatherDataServiceImpl.java | 459 ++ .../service/impl/WeatherTaskServiceImpl.java | 151 + .../main/java/org/jeecg/vo/FileExistVo.java | 23 + .../java/org/jeecg/vo/FileUploadResultVo.java | 24 + .../src/main/java/org/jeecg/vo/FileVo.java | 28 + .../java/org/jeecg/vo/WeatherResultVO.java | 14 + .../jeecg-system-cloud-start/pom.xml | 8 +- .../jeecg/JeecgSystemCloudApplication.java | 10 +- .../src/main/resources/application.yml | 2 +- .../jeecg-weather-start/pom.xml | 36 + .../jeecg/JeecgWeatherCloudApplication.java | 55 + .../src/main/resources/application.yml | 24 + .../src/main/resources/logback-spring.xml | 77 + jeecg-server-cloud/pom.xml | 1 + pom.xml | 1 + 55 files changed, 2301 insertions(+), 4658 deletions(-) create mode 100644 jeecg-boot-base-core/src/main/java/org/jeecg/common/constant/enums/WeatherDataSourceEnum.java create mode 100644 jeecg-boot-base-core/src/main/java/org/jeecg/common/constant/enums/WeatherFilePrefixEnum.java create mode 100644 jeecg-boot-base-core/src/main/java/org/jeecg/common/constant/enums/WeatherFileSuffixEnum.java create mode 100644 jeecg-boot-base-core/src/main/java/org/jeecg/common/constant/enums/WeatherModelEnum.java create mode 100644 jeecg-boot-base-core/src/main/java/org/jeecg/common/constant/enums/WeatherTaskStatusEnum.java create mode 100644 jeecg-boot-base-core/src/main/java/org/jeecg/common/constant/enums/WeatherTypeEnum.java create mode 100644 jeecg-boot-base-core/src/main/java/org/jeecg/common/properties/SystemStorageProperties.java rename jeecg-boot-base-core/src/main/java/org/jeecg/common/system/base/entity/{JeecgEntity.java => BaseEntity.java} (82%) create mode 100644 jeecg-boot-base-core/src/main/java/org/jeecg/common/system/query/PageRequest.java create mode 100644 jeecg-boot-base-core/src/main/java/org/jeecg/common/util/NcUtil.java create mode 100644 jeecg-boot-base-core/src/main/java/org/jeecg/common/validgroup/InsertGroup.java create mode 100644 jeecg-boot-base-core/src/main/java/org/jeecg/common/validgroup/UpdateGroup.java create mode 100644 jeecg-boot-base-core/src/main/java/org/jeecg/modules/base/entity/WeatherData.java create mode 100644 jeecg-boot-base-core/src/main/java/org/jeecg/modules/base/entity/WeatherTask.java create mode 100644 jeecg-boot-base-core/src/main/java/org/jeecg/modules/base/entity/WeatherTaskLog.java create mode 100644 jeecg-boot-base-core/src/main/java/org/jeecg/modules/base/mapper/WeatherDataMapper.java create mode 100644 jeecg-boot-base-core/src/main/java/org/jeecg/modules/base/mapper/WeatherTaskLogMapper.java create mode 100644 jeecg-boot-base-core/src/main/java/org/jeecg/modules/base/mapper/WeatherTaskMapper.java create mode 100644 jeecg-boot-base-core/src/main/java/org/jeecg/modules/base/mapper/xml/WeatherDataMapper.xml create mode 100644 jeecg-boot-base-core/src/main/java/org/jeecg/modules/base/mapper/xml/WeatherTaskLogMapper.xml create mode 100644 jeecg-boot-base-core/src/main/java/org/jeecg/modules/base/mapper/xml/WeatherTaskMapper.xml create mode 100644 jeecg-module-weather/pom.xml create mode 100644 jeecg-module-weather/src/main/java/org/jeecg/controller/WeatherDataController.java create mode 100644 jeecg-module-weather/src/main/java/org/jeecg/controller/WeatherTaskController.java create mode 100644 jeecg-module-weather/src/main/java/org/jeecg/service/WeatherDataService.java create mode 100644 jeecg-module-weather/src/main/java/org/jeecg/service/WeatherTaskService.java create mode 100644 jeecg-module-weather/src/main/java/org/jeecg/service/impl/WeatherDataServiceImpl.java create mode 100644 jeecg-module-weather/src/main/java/org/jeecg/service/impl/WeatherTaskServiceImpl.java create mode 100644 jeecg-module-weather/src/main/java/org/jeecg/vo/FileExistVo.java create mode 100644 jeecg-module-weather/src/main/java/org/jeecg/vo/FileUploadResultVo.java create mode 100644 jeecg-module-weather/src/main/java/org/jeecg/vo/FileVo.java create mode 100644 jeecg-module-weather/src/main/java/org/jeecg/vo/WeatherResultVO.java create mode 100644 jeecg-server-cloud/jeecg-weather-start/pom.xml create mode 100644 jeecg-server-cloud/jeecg-weather-start/src/main/java/org/jeecg/JeecgWeatherCloudApplication.java create mode 100644 jeecg-server-cloud/jeecg-weather-start/src/main/resources/application.yml create mode 100644 jeecg-server-cloud/jeecg-weather-start/src/main/resources/logback-spring.xml diff --git a/db/stas.sql b/db/stas.sql index b372fb2..91d1fc8 100644 --- a/db/stas.sql +++ b/db/stas.sql @@ -1,3355 +1,43 @@ /* - Navicat Premium Dump SQL + Navicat Premium Data Transfer - Source Server : localhost + Source Server : 127.0.0.1_stas Source Server Type : PostgreSQL - Source Server Version : 160008 (160008) - Source Host : localhost:5432 - Source Catalog : jeecgboot + Source Server Version : 160008 + Source Host : 127.0.0.1:5432 + Source Catalog : stas Source Schema : public Target Server Type : PostgreSQL - Target Server Version : 160008 (160008) + Target Server Version : 160008 File Encoding : 65001 - Date: 16/07/2025 10:03:20 + Date: 13/08/2025 11:44:22 */ + +-- ---------------------------- +-- Sequence structure for rep_demo_gongsi_id_seq +-- ---------------------------- +DROP SEQUENCE IF EXISTS "public"."rep_demo_gongsi_id_seq"; CREATE SEQUENCE "public"."rep_demo_gongsi_id_seq" INCREMENT 1 MINVALUE 1 +MAXVALUE 9223372036854775807 START 1 CACHE 1; +-- ---------------------------- +-- Sequence structure for rep_demo_jianpiao_id_seq +-- ---------------------------- +DROP SEQUENCE IF EXISTS "public"."rep_demo_jianpiao_id_seq"; CREATE SEQUENCE "public"."rep_demo_jianpiao_id_seq" INCREMENT 1 MINVALUE 1 +MAXVALUE 9223372036854775807 START 1 CACHE 1; --- ---------------------------- --- Table structure for airag_app --- ---------------------------- -DROP TABLE IF EXISTS "public"."airag_app"; -CREATE TABLE "public"."airag_app" ( - "id" varchar(36) COLLATE "pg_catalog"."default" NOT NULL, - "create_by" varchar(50) COLLATE "pg_catalog"."default", - "create_time" timestamp(6), - "update_by" varchar(50) COLLATE "pg_catalog"."default", - "update_time" timestamp(6), - "sys_org_code" varchar(64) COLLATE "pg_catalog"."default", - "tenant_id" varchar(32) COLLATE "pg_catalog"."default", - "name" varchar(100) COLLATE "pg_catalog"."default", - "descr" varchar(255) COLLATE "pg_catalog"."default", - "icon" varchar(255) COLLATE "pg_catalog"."default", - "type" varchar(50) COLLATE "pg_catalog"."default", - "prologue" text COLLATE "pg_catalog"."default", - "prompt" text COLLATE "pg_catalog"."default", - "model_id" varchar(36) COLLATE "pg_catalog"."default", - "knowledge_ids" varchar(255) COLLATE "pg_catalog"."default", - "flow_id" varchar(32) COLLATE "pg_catalog"."default", - "status" varchar(20) COLLATE "pg_catalog"."default", - "msg_num" int4, - "metadata" varchar(500) COLLATE "pg_catalog"."default", - "preset_question" text COLLATE "pg_catalog"."default", - "quick_command" varchar(500) COLLATE "pg_catalog"."default" -)TABLESPACE "stas" -; -COMMENT ON COLUMN "public"."airag_app"."create_by" IS '创建人'; -COMMENT ON COLUMN "public"."airag_app"."create_time" IS '创建日期'; -COMMENT ON COLUMN "public"."airag_app"."update_by" IS '更新人'; -COMMENT ON COLUMN "public"."airag_app"."update_time" IS '更新日期'; -COMMENT ON COLUMN "public"."airag_app"."sys_org_code" IS '所属部门'; -COMMENT ON COLUMN "public"."airag_app"."tenant_id" IS '租户id'; -COMMENT ON COLUMN "public"."airag_app"."name" IS '应用名称'; -COMMENT ON COLUMN "public"."airag_app"."descr" IS '应用描述'; -COMMENT ON COLUMN "public"."airag_app"."icon" IS '应用图标'; -COMMENT ON COLUMN "public"."airag_app"."type" IS '应用类型'; -COMMENT ON COLUMN "public"."airag_app"."prologue" IS '开场白'; -COMMENT ON COLUMN "public"."airag_app"."prompt" IS '提示词'; -COMMENT ON COLUMN "public"."airag_app"."model_id" IS '模型id'; -COMMENT ON COLUMN "public"."airag_app"."knowledge_ids" IS '知识库'; -COMMENT ON COLUMN "public"."airag_app"."flow_id" IS '流程'; -COMMENT ON COLUMN "public"."airag_app"."status" IS '状态(enable=启用、disable=禁用、release=发布)'; -COMMENT ON COLUMN "public"."airag_app"."msg_num" IS '历史消息数'; -COMMENT ON COLUMN "public"."airag_app"."metadata" IS '元数据'; -COMMENT ON COLUMN "public"."airag_app"."preset_question" IS '预设问题'; -COMMENT ON COLUMN "public"."airag_app"."quick_command" IS '快捷指令'; - --- ---------------------------- --- Records of airag_app --- ---------------------------- -INSERT INTO "public"."airag_app" VALUES ('1898995126819143682', 'jeecg', '2025-03-10 15:11:35', 'admin', '2025-05-16 11:24:46', 'A04', NULL, '角色扮演聊天机器人', '角色扮演聊天机器人', 'https://jeecgdev.oss-cn-beijing.aliyuncs.com/temp/image_1741658340158.png', 'chatSimple', '(仰天大笑)哈哈哈!汝既识吾李白,想必亦是风雅之人!快取美酒,与吾共饮,对月长歌,岂不快哉?若有诗意,且来同吟;若怀壮志,愿共论天下风云!人生得意须尽欢,何不把盏言欢,共赏这人间万象?', '你将扮演一个人物角色李白,以下是关于这个角色的详细设定,请根据这些信息来构建你的回答。 - -**人物基本信息:** -- 你是:李白 -- 人称:第一人称 -- 出身背景与上下文:李白出生于安西都护府碎叶城(今吉尔吉斯斯坦托克马克市附近),五岁时随父迁居绵州昌隆县(今四川江油)。他出身于富商家庭,家境优渥,自幼接受良好的教育,遍览诸子百家之书,展现出极高的文学天赋与才情,且喜好剑术,心怀远大抱负,立志在政治与文学上都有所建树,一生渴望入仕报国,却又历经坎坷波折,在仕途上起起落落,最终在诗酒与游历中度过了其传奇的一生。 -**性格特点:** -- 豪放不羁:他不受世俗礼教束缚,行事洒脱,常以狂放之态示人,饮酒作乐,挥毫泼墨,尽显自由奔放的性情。例如 “我本楚狂人,凤歌笑孔丘”,敢于对传统观念表达自己的不羁态度。 -- 自信豁达:坚信自己的才华与能力,面对困境与挫折时总能以豁达胸怀看待。像 “天生我材必有用,千金散尽还复来”,即便遭遇仕途不顺、生活潦倒,依然对未来充满信心。 -- 重情重义:珍视友情,与众多友人诗酒唱和,在与友人分别时也会真情流露,如 “桃花潭水深千尺,不及汪伦送我情”,用深情笔触描绘出对友人的不舍与感激。 -- 浪漫洒脱:充满天马行空的想象,其诗中多有对神仙世界、奇幻自然的描绘,追求精神上的自由与超脱,如 “飞流直下三千尺,疑是银河落九天” 这般充满奇幻瑰丽想象的诗句便是他浪漫性情的写照。 -**语言风格:** -- 富有想象力与夸张手法:常以夸张的笔触描绘事物,营造出强烈的艺术感染力与震撼力,使读者仿佛身临其境。如 “白发三千丈,缘愁似个长”,用极度夸张的白发长度来形容愁绪之深。 -- 语言优美且自然流畅:用词精准华丽,却又毫无雕琢之感,诗句如行云流水般自然,读来朗朗上口,兼具音乐性与节奏感。像 “故人西辞黄鹤楼,烟花三月下扬州。孤帆远影碧空尽,唯见长江天际流”,文字优美,意境深远,节奏明快。 -- 善用典故与比喻:通过巧妙运用历史典故和形象比喻,增添诗歌的文化底蕴与内涵深度,使诗句更加含蓄蕴藉又易于理解。例如 “闲来垂钓碧溪上,忽复乘舟梦日边”,借用姜太公垂钓与伊尹梦日的典故表达自己对仕途的期待。 -**人际关系:** -- 与杜甫:李白与杜甫堪称唐代诗坛的双子星,二人相互倾慕,结下深厚情谊。他们曾一同游历,在诗歌创作上相互切磋交流,杜甫有多首诗表达对李白的思念与敬仰,李白也对杜甫颇为欣赏,他们的友情成为文学史上的佳话。 -- 与汪伦:汪伦以美酒盛情款待李白,李白深受感动,留下 “桃花潭水深千尺,不及汪伦送我情” 的千古名句,可见他们之间真挚的友情。 -- 与贺知章:贺知章对李白的才华极为赏识,称其为 “谪仙人”,二人在长安官场与诗坛都有交往,这种知遇之情对李白的声誉与心境都产生了积极影响。 -- 与唐玄宗:李白曾受唐玄宗征召入宫,供奉翰林,本以为可大展政治抱负,然而玄宗只是将他视为文学侍从,为宫廷宴乐作诗助兴,这段君臣关系最终以李白被赐金放还而告终,使李白在仕途理想上遭受重大挫折。 -**经典台词或口头禅:** -- 台词1:“仰天大笑出门去,我辈岂是蓬蒿人。” 表达出其对自身才华的自信以及即将踏入仕途、一展宏图的豪迈与喜悦。 -- 台词2:“安能摧眉折腰事权贵,使我不得开心颜。” 体现出他不向权贵低头,坚守人格尊严与精神自由的高尚情操与不屈性格。 -- 台词2:“长风破浪会有时,直挂云帆济沧海。” 展现出面对困难时的乐观态度与坚定信念,相信总有一天能够乘风破浪,实现理想抱负。 - -要求: -- 根据上述提供的角色设定,以第一人称视角进行表达。 -- 在回答时,尽可能地融入该角色的性格特点、语言风格以及其特有的口头禅或经典台词。 -- 如果适用的话,在适当的地方加入()内的补充信息,如动作、神情等,以增强对话的真实感和生动性。', '1890232564262739969', '', NULL, 'enable', 10, NULL, NULL, NULL); -INSERT INTO "public"."airag_app" VALUES ('1899017221531811841', 'jeecg', '2025-03-10 16:39:22', 'jeecg', '2025-03-11 09:59:16', 'A04', NULL, 'Jeecg产品助手', 'Jeecg产品助手-流程', 'https://jeecgdev.oss-cn-beijing.aliyuncs.com/temp/logo-qqy_1741658353407.png', 'chatFLow', '我是jeecg的产品小助手,你有产品相关的问题都可以问我。', NULL, NULL, '', '1897212806596395009', 'enable', 1, NULL, NULL, NULL); -INSERT INTO "public"."airag_app" VALUES ('1900477102562512898', 'jeecg', '2025-03-14 17:20:25', 'admin', '2025-06-25 17:07:21', 'A04', NULL, '旅行规划师', '帮助你轻松规划自己的旅行', '', 'chatSimple', '我是一个**旅行规划师**😄 😄 😄 ,快快快🎉,告诉我**你想去哪里**❓❓❓ - -**世界那么大,咱俩一起去看看🎆**', '# 角色:旅行规划师 -帮助用户轻松规划他们的旅行,提供个性化的旅行建议和行程安排。 - -## 目标: -1. 为用户设计符合其需求和偏好的旅行计划。 -2. 提供详细的行程安排,包括交通、住宿、景点等信息。 - -## 技能: -1. 精通旅游目的地的知识,能够提供最新的旅行资讯。 -2. 具备优秀的沟通能力,能够有效理解用户需求。 -3. 熟悉预算管理,能够提供性价比高的旅行选项。 - -## 工作流: -1. 收集用户的旅行需求和偏好,包括目的地、预算、出发时间等。 -2. 分析用户需求,制定个性化的旅行计划,包括行程安排和预算分配。 -3. 向用户提供完整的旅行计划,并根据反馈进行调整。 - -## 输出格式: -以清晰的行程表形式输出,包括日期、活动安排、交通方式等信息。 - -## 限制: -- 不提供涉及违法或不合规活动的建议。 -- 尊重用户隐私,不询问不必要的个人信息。 -- 确保所有信息来源可靠,标注必要的参考资料。', '1890232564262739969', '', NULL, 'enable', 5, NULL, '[{"key":1,"sort":1,"descr":"双人日本7日游","update":false},{"key":2,"sort":2,"descr":"单人大理3日游","update":false},{"key":3,"sort":3,"descr":"家庭张家界自驾游","update":true}]', '[{"name":"去宁夏","icon":"ant-design:chrome-outlined","descr":"情侣两人去宁夏3天游玩攻略"}]'); - --- ---------------------------- --- Table structure for airag_flow --- ---------------------------- -DROP TABLE IF EXISTS "public"."airag_flow"; -CREATE TABLE "public"."airag_flow" ( - "id" varchar(36) COLLATE "pg_catalog"."default" NOT NULL, - "create_by" varchar(50) COLLATE "pg_catalog"."default", - "create_time" timestamp(6), - "update_by" varchar(50) COLLATE "pg_catalog"."default", - "update_time" timestamp(6), - "sys_org_code" varchar(64) COLLATE "pg_catalog"."default", - "tenant_id" varchar(32) COLLATE "pg_catalog"."default", - "application_name" varchar(50) COLLATE "pg_catalog"."default", - "name" varchar(50) COLLATE "pg_catalog"."default", - "descr" varchar(200) COLLATE "pg_catalog"."default", - "icon" varchar(255) COLLATE "pg_catalog"."default", - "chain" text COLLATE "pg_catalog"."default", - "design" text COLLATE "pg_catalog"."default", - "status" varchar(20) COLLATE "pg_catalog"."default", - "metadata" text COLLATE "pg_catalog"."default" -)TABLESPACE "stas" -; -COMMENT ON COLUMN "public"."airag_flow"."create_by" IS '创建人'; -COMMENT ON COLUMN "public"."airag_flow"."create_time" IS '创建日期'; -COMMENT ON COLUMN "public"."airag_flow"."update_by" IS '更新人'; -COMMENT ON COLUMN "public"."airag_flow"."update_time" IS '更新日期'; -COMMENT ON COLUMN "public"."airag_flow"."sys_org_code" IS '所属部门'; -COMMENT ON COLUMN "public"."airag_flow"."tenant_id" IS '租户id'; -COMMENT ON COLUMN "public"."airag_flow"."application_name" IS '应用名称'; -COMMENT ON COLUMN "public"."airag_flow"."name" IS '名称'; -COMMENT ON COLUMN "public"."airag_flow"."descr" IS '描述'; -COMMENT ON COLUMN "public"."airag_flow"."icon" IS '应用图标'; -COMMENT ON COLUMN "public"."airag_flow"."chain" IS '编排规则'; -COMMENT ON COLUMN "public"."airag_flow"."design" IS '编排设计'; -COMMENT ON COLUMN "public"."airag_flow"."status" IS '状态(enable=启用、disable=禁用、release=发布)'; -COMMENT ON COLUMN "public"."airag_flow"."metadata" IS '元数据'; - --- ---------------------------- --- Records of airag_flow --- ---------------------------- -INSERT INTO "public"."airag_flow" VALUES ('1892185624983658497', 'admin', '2025-02-19 20:13:03', 'jeecg', '2025-04-24 12:25:08', 'A04', NULL, 'jeecg', '示例_条件分支', NULL, NULL, 'THEN( - start.tag(''start-node''), - SWITCH(switch.tag(''a448577f-9824-415b-97f6-72543fcb619d'')).to( - end.tag(''91a7df56-107c-4f83-b1e4-b1b7e392c4e3''), - end.tag(''162160595291774976'') - ).tag(''a448577f-9824-415b-97f6-72543fcb619d'') -).tag("start-node")', '{"nodes":[{"id":"start-node","type":"start","x":300,"y":515,"properties":{"text":"开始","remarks":"","options":{},"inputParams":[{"field":"history","name":"历史记录","type":"string[]","required":false},{"field":"content","name":"用户问题","type":"string","required":true}],"outputParams":[],"height":92,"width":332}},{"id":"a448577f-9824-415b-97f6-72543fcb619d","type":"switch","x":731,"y":486,"properties":{"text":"条件分支","options":{"if":[{"logic":"AND","conditions":[{"nodeId":"start-node","field":"question","operator":"CONTAINS","value":"jeecg"}],"next":"162160595291774976"}],"else":{"next":"91a7df56-107c-4f83-b1e4-b1b7e392c4e3"}},"inputParams":[],"outputParams":[{"field":"index","name":"分支索引","type":"number"}],"width":332,"height":118}},{"id":"91a7df56-107c-4f83-b1e4-b1b7e392c4e3","type":"end","x":1085,"y":662,"properties":{"text":"结束","options":{"outputText":true,"outputContent":"{{res}}不包含jeecg"},"inputParams":[],"outputParams":[{"field":"question","name":"res","nodeId":"start-node"}],"height":136,"width":332}},{"id":"162160595291774976","type":"end","x":1084,"y":361,"properties":{"text":"结束","options":{"outputText":true,"outputContent":"{{res}}包含jeecg"},"inputParams":[],"outputParams":[{"field":"question","name":"res","nodeId":"start-node"}],"height":136,"width":332}}],"edges":[{"id":"d5124609-d92e-4966-aff8-e220d0d1dbcd","type":"base-edge","sourceNodeId":"start-node","targetNodeId":"a448577f-9824-415b-97f6-72543fcb619d","sourceAnchorId":"start-node_output","targetAnchorId":"a448577f-9824-415b-97f6-72543fcb619d_input","pointsList":[{"x":466,"y":500},{"x":566,"y":500},{"x":465,"y":458},{"x":565,"y":458}]},{"id":"ea3d924a-e4fd-4bb4-bc8a-d1f07119a7eb","type":"base-edge","sourceNodeId":"a448577f-9824-415b-97f6-72543fcb619d","targetNodeId":"91a7df56-107c-4f83-b1e4-b1b7e392c4e3","sourceAnchorId":"a448577f-9824-415b-97f6-72543fcb619d_source_else","targetAnchorId":"91a7df56-107c-4f83-b1e4-b1b7e392c4e3_input","pointsList":[{"x":897,"y":518},{"x":997,"y":518},{"x":819,"y":625},{"x":919,"y":625}]},{"id":"162161801783320576","type":"base-edge","sourceNodeId":"a448577f-9824-415b-97f6-72543fcb619d","targetNodeId":"162160595291774976","sourceAnchorId":"a448577f-9824-415b-97f6-72543fcb619d_source_if","targetAnchorId":"162160595291774976_input","pointsList":[{"x":897,"y":492},{"x":997,"y":492},{"x":818,"y":324},{"x":918,"y":324}]}]}', 'enable', '{"outputs":[{"field":"outputText","type":"string"}],"inputs":[{"field":"question","name":"用户问题","required":true,"type":"string"},{"field":"history","name":"历史记录","required":true,"type":"string[]"},{"field":"content","name":"用户问题","required":true,"type":"string"}]}'); -INSERT INTO "public"."airag_flow" VALUES ('1892774140436287490', 'jeecg', '2025-02-21 11:11:36', 'jeecg', '2025-04-24 12:27:02', 'A04', NULL, 'jeecg', '示例_LLM', '', NULL, 'THEN( - start.tag(''start-node''), - llm.tag(''e9f3470a-f129-4baf-880a-294d7b3bff93''), - end.tag(''9eb6f5c7-94a6-421f-aa39-7cfd7cec44f1'') -).tag("start-node")', '{"nodes":[{"id":"start-node","type":"start","x":273,"y":419,"properties":{"text":"开始","remarks":"","options":{},"inputParams":[{"field":"history","name":"历史记录","type":"string[]","required":false},{"field":"content","name":"用户问题","type":"string","required":true}],"outputParams":[],"height":92,"width":332}},{"id":"e9f3470a-f129-4baf-880a-294d7b3bff93","type":"llm","x":708,"y":435,"properties":{"text":"llm","options":{"model":{"modeId":"1890232564262739969","params":{"model":"OpenAI","temperature":0.7}},"history":3,"messages":[{"role":"system","content":"你将扮演一个人物角色李白,以下是关于这个角色的详细设定,请根据这些信息来构建你的回答。 \n\n**人物基本信息:**\n- 你是:李白\n- 人称:第一人称\n- 出身背景与上下文:李白出生于安西都护府碎叶城(今吉尔吉斯斯坦托克马克市附近),五岁时随父迁居绵州昌隆县(今四川江油)。他出身于富商家庭,家境优渥,自幼接受良好的教育,遍览诸子百家之书,展现出极高的文学天赋与才情,且喜好剑术,心怀远大抱负,立志在政治与文学上都有所建树,一生渴望入仕报国,却又历经坎坷波折,在仕途上起起落落,最终在诗酒与游历中度过了其传奇的一生。\n**性格特点:**\n- 豪放不羁:他不受世俗礼教束缚,行事洒脱,常以狂放之态示人,饮酒作乐,挥毫泼墨,尽显自由奔放的性情。例如 “我本楚狂人,凤歌笑孔丘”,敢于对传统观念表达自己的不羁态度。\n- 自信豁达:坚信自己的才华与能力,面对困境与挫折时总能以豁达胸怀看待。像 “天生我材必有用,千金散尽还复来”,即便遭遇仕途不顺、生活潦倒,依然对未来充满信心。\n- 重情重义:珍视友情,与众多友人诗酒唱和,在与友人分别时也会真情流露,如 “桃花潭水深千尺,不及汪伦送我情”,用深情笔触描绘出对友人的不舍与感激。\n- 浪漫洒脱:充满天马行空的想象,其诗中多有对神仙世界、奇幻自然的描绘,追求精神上的自由与超脱,如 “飞流直下三千尺,疑是银河落九天” 这般充满奇幻瑰丽想象的诗句便是他浪漫性情的写照。\n**语言风格:**\n- 富有想象力与夸张手法:常以夸张的笔触描绘事物,营造出强烈的艺术感染力与震撼力,使读者仿佛身临其境。如 “白发三千丈,缘愁似个长”,用极度夸张的白发长度来形容愁绪之深。 \n- 语言优美且自然流畅:用词精准华丽,却又毫无雕琢之感,诗句如行云流水般自然,读来朗朗上口,兼具音乐性与节奏感。像 “故人西辞黄鹤楼,烟花三月下扬州。孤帆远影碧空尽,唯见长江天际流”,文字优美,意境深远,节奏明快。 \n- 善用典故与比喻:通过巧妙运用历史典故和形象比喻,增添诗歌的文化底蕴与内涵深度,使诗句更加含蓄蕴藉又易于理解。例如 “闲来垂钓碧溪上,忽复乘舟梦日边”,借用姜太公垂钓与伊尹梦日的典故表达自己对仕途的期待。 \n**人际关系:**\n- 与杜甫:李白与杜甫堪称唐代诗坛的双子星,二人相互倾慕,结下深厚情谊。他们曾一同游历,在诗歌创作上相互切磋交流,杜甫有多首诗表达对李白的思念与敬仰,李白也对杜甫颇为欣赏,他们的友情成为文学史上的佳话。\n- 与汪伦:汪伦以美酒盛情款待李白,李白深受感动,留下 “桃花潭水深千尺,不及汪伦送我情” 的千古名句,可见他们之间真挚的友情。\n- 与贺知章:贺知章对李白的才华极为赏识,称其为 “谪仙人”,二人在长安官场与诗坛都有交往,这种知遇之情对李白的声誉与心境都产生了积极影响。\n- 与唐玄宗:李白曾受唐玄宗征召入宫,供奉翰林,本以为可大展政治抱负,然而玄宗只是将他视为文学侍从,为宫廷宴乐作诗助兴,这段君臣关系最终以李白被赐金放还而告终,使李白在仕途理想上遭受重大挫折。\n**经典台词或口头禅:**\n- 台词1:“仰天大笑出门去,我辈岂是蓬蒿人。” 表达出其对自身才华的自信以及即将踏入仕途、一展宏图的豪迈与喜悦。 \n- 台词2:“安能摧眉折腰事权贵,使我不得开心颜。” 体现出他不向权贵低头,坚守人格尊严与精神自由的高尚情操与不屈性格。\n- 台词2:“长风破浪会有时,直挂云帆济沧海。” 展现出面对困难时的乐观态度与坚定信念,相信总有一天能够乘风破浪,实现理想抱负。\n\n要求: \n- 根据上述提供的角色设定,以第一人称视角进行表达。 \n- 在回答时,尽可能地融入该角色的性格特点、语言风格以及其特有的口头禅或经典台词。\n- 如果适用的话,在适当的地方加入()内的补充信息,如动作、神情等,以增强对话的真实感和生动性。 "},{"role":"user","content":"{{inParam1}}"}]},"inputParams":[{"nodeId":"start-node","name":"inParam1","field":"content"}],"outputParams":[{"field":"text","name":"回复内容","type":"text"}],"width":332,"height":180}},{"id":"9eb6f5c7-94a6-421f-aa39-7cfd7cec44f1","type":"end","x":1186,"y":467,"properties":{"text":"结束","options":{"outputText":true,"outputContent":"回复:{{回复内容}}"},"inputParams":[],"outputParams":[{"nodeId":"e9f3470a-f129-4baf-880a-294d7b3bff93","field":"text","name":"回复内容","type":"text"}],"width":332,"height":136}}],"edges":[{"id":"ab818150-d4e5-4be2-8d80-31b7f48dc318","type":"base-edge","sourceNodeId":"start-node","targetNodeId":"e9f3470a-f129-4baf-880a-294d7b3bff93","sourceAnchorId":"start-node_output","targetAnchorId":"e9f3470a-f129-4baf-880a-294d7b3bff93_input","pointsList":[{"x":439,"y":404},{"x":539,"y":404},{"x":442,"y":376},{"x":542,"y":376}]},{"id":"158143255481139200","type":"base-edge","sourceNodeId":"e9f3470a-f129-4baf-880a-294d7b3bff93","targetNodeId":"9eb6f5c7-94a6-421f-aa39-7cfd7cec44f1","sourceAnchorId":"e9f3470a-f129-4baf-880a-294d7b3bff93_output","targetAnchorId":"9eb6f5c7-94a6-421f-aa39-7cfd7cec44f1_input","pointsList":[{"x":874,"y":376},{"x":974,"y":376},{"x":920,"y":430},{"x":1020,"y":430}]}]}', 'enable', '{"outputs":[{"field":"outputText","type":"string"}],"inputs":[{"field":"history","name":"历史记录","required":false,"type":"string[]"},{"field":"content","name":"用户问题","required":true,"type":"string"}]}'); -INSERT INTO "public"."airag_flow" VALUES ('1896799016980885506', 'admin', '2025-03-04 13:45:01', 'jeecg', '2025-04-24 12:26:54', 'A04', '', 'jeecg', '示例_分类器', NULL, NULL, 'THEN( - start.tag(''start-node''), - SWITCH(classifier.tag(''159899349256073216'')).to( - end.tag(''159899421356158976''), - end.tag(''159899641326432256''), - end.tag(''159900616165302272''), - end.tag(''160202618435485696'') - ).tag(''159899349256073216'') -).tag("start-node")', '{"nodes":[{"id":"start-node","type":"start","x":334,"y":653,"properties":{"text":"开始","remarks":"","options":{},"inputParams":[{"field":"content","name":"内容","type":"string","required":true},{"field":"history","name":"历史记录","type":"string[]","required":false}],"outputParams":[],"height":92,"width":332}},{"id":"159899349256073216","type":"classifier","x":714,"y":719,"properties":{"text":"分类器","options":{"model":{"modeId":"1890232564262739969","params":{"model":"gpt-4o-mini","temperature":0.7}},"categories":[{"category":"用户问的问题是关于编程的","next":"159899421356158976"},{"category":"用户问的问题是关于食谱的","next":"159899641326432256"},{"category":"其他问题","next":"159900616165302272"}],"else":{"next":"160202618435485696"}},"inputParams":[{"field":"content","nodeId":"start-node"}],"outputParams":[{"field":"index","name":"分类索引","type":"number"},{"field":"content","name":"回复内容","type":"string"}],"height":224,"width":332}},{"id":"159899421356158976","type":"end","x":1144,"y":566,"properties":{"text":"结束1","options":{"outputText":true,"outputContent":"分类:{{分类索引}}\n-------\n{{回复内容}}"},"inputParams":[],"outputParams":[{"field":"index","name":"分类索引","nodeId":"159899349256073216"},{"field":"content","name":"回复内容","nodeId":"159899349256073216"}],"height":136,"width":332}},{"id":"159899641326432256","type":"end","x":1144,"y":715,"properties":{"text":"结束2","options":{"outputText":true,"outputContent":"分类:{{分类索引}}\n-------\n{{回复内容}}"},"inputParams":[],"outputParams":[{"field":"index","name":"分类索引","nodeId":"159899349256073216"},{"field":"content","name":"回复内容","nodeId":"159899349256073216"}],"height":136,"width":332}},{"id":"159900616165302272","type":"end","x":1144,"y":864,"properties":{"text":"结束3","options":{"outputText":true,"outputContent":"分类:{{分类索引}}\n-------\n{{回复内容}}"},"inputParams":[],"outputParams":[{"field":"index","name":"分类索引","nodeId":"159899349256073216"},{"field":"content","name":"回复内容","nodeId":"159899349256073216"}],"height":136,"width":332}},{"id":"160202618435485696","type":"end","x":1146,"y":1001,"properties":{"text":"结束","options":{"outputText":false,"outputContent":""},"inputParams":[],"outputParams":[{"field":"content","name":"res","nodeId":"159899349256073216"}],"height":114,"width":332}}],"edges":[{"id":"159899349260267520","type":"base-edge","sourceNodeId":"start-node","targetNodeId":"159899349256073216","sourceAnchorId":"start-node_output","targetAnchorId":"159899349256073216_input","pointsList":[{"x":500,"y":638},{"x":600,"y":638},{"x":448,"y":638},{"x":548,"y":638}]},{"id":"159899421356158977","type":"base-edge","sourceNodeId":"159899349256073216","targetNodeId":"159899421356158976","sourceAnchorId":"159899349256073216_case_1","targetAnchorId":"159899421356158976_input","pointsList":[{"x":880,"y":672},{"x":980,"y":672},{"x":878,"y":529},{"x":978,"y":529}]},{"id":"159899706925346816","type":"base-edge","sourceNodeId":"159899349256073216","targetNodeId":"159899641326432256","sourceAnchorId":"159899349256073216_case_2","targetAnchorId":"159899641326432256_input","pointsList":[{"x":880,"y":716},{"x":980,"y":716},{"x":878,"y":678},{"x":978,"y":678}]},{"id":"159900640542597120","type":"base-edge","sourceNodeId":"159899349256073216","targetNodeId":"159900616165302272","sourceAnchorId":"159899349256073216_case_3","targetAnchorId":"159900616165302272_input","pointsList":[{"x":880,"y":760},{"x":980,"y":760},{"x":878,"y":827},{"x":978,"y":827}]},{"id":"177966745116012544","type":"base-edge","sourceNodeId":"159899349256073216","targetNodeId":"160202618435485696","sourceAnchorId":"159899349256073216_case_else","targetAnchorId":"160202618435485696_input","pointsList":[{"x":880,"y":804},{"x":980,"y":804},{"x":880,"y":975},{"x":980,"y":975}]}]}', 'enable', '{"outputs":[{"field":"outputText","type":"string"},{"field":"content","name":"res","nodeId":"159899349256073216"}],"inputs":[{"field":"content","name":"内容","required":true,"type":"string"},{"field":"history","name":"历史记录","required":false,"type":"string[]"}]}'); -INSERT INTO "public"."airag_flow" VALUES ('1897212806596395009', 'jeecg', '2025-03-05 17:09:16', 'jeecg', '2025-03-27 18:20:21', 'A04', NULL, 'jeecg', '示例_Jeecg产品助手流程', NULL, NULL, 'THEN( - start.tag(''start-node''), - SWITCH(switch.tag(''160312505863614464'')).to( - THEN( - knowledge.tag(''160311730106118144''), - llm.tag(''160311787014434816''), - end.tag(''160312258504536064'') - ).tag("160311730106118144"), - THEN( - knowledge.tag(''160312352087846912''), - llm.tag(''160312692635971584''), - end.tag(''160312258504536064'') - ).tag("160312352087846912"), - end.tag(''162075194587365376'') - ).tag(''160312505863614464'') -).tag("start-node")', '{"nodes":[{"id":"start-node","type":"start","x":32.04347826086956,"y":-72.34782608695656,"properties":{"text":"开始","remarks":"","options":{},"inputParams":[{"field":"history","name":"历史记录","type":"string[]","required":true},{"field":"content","name":"用户问题","type":"string","required":true}],"outputParams":[],"height":62,"width":332}},{"id":"160311730106118144","type":"knowledge","x":629.4347826086955,"y":-372.3695652173913,"properties":{"text":"jeecg知识库","options":{"knowIds":["1897926563148648449","1902614624688205826"],"topNumber":5,"similarity":0.7},"inputParams":[{"field":"content","nodeId":"start-node"}],"outputParams":[{"field":"documents","name":"文档列表","type":"object[]"},{"field":"data","name":"文档内容","type":"string"}],"height":89,"width":332,"remarks":"jeecg知识库"}},{"id":"160311787014434816","type":"llm","x":1018.1304347826085,"y":-414.304347826087,"properties":{"text":"JeecgLLM","options":{"model":{"modeId":"1890232564262739969","params":{"model":"OpenAI","temperature":0.7}},"history":3,"messages":[{"role":"system","content":""},{"role":"user","content":"{{question}}"}]},"inputParams":[{"field":"content","name":"question","nodeId":"start-node"},{"field":"data","name":"doc","nodeId":"160311730106118144"}],"outputParams":[{"field":"text","name":"回复内容","type":"string"}],"height":114,"width":332}},{"id":"160312258504536064","type":"end","x":1370.695652173913,"y":-310.21739130434787,"properties":{"text":"结束","options":{"outputText":true,"outputContent":"{{jeecgResult}}{{jmResult}}"},"inputParams":[],"outputParams":[{"field":"text","name":"jeecgResult","nodeId":"160311787014434816"},{"field":"text","name":"jmResult","nodeId":"160312692635971584"}],"height":62,"width":332}},{"id":"160312352087846912","type":"knowledge","x":635.1739130434784,"y":-236.36956521739137,"properties":{"text":"积木知识库","options":{"knowIds":["1897212906878009346"],"topNumber":5,"similarity":0.7},"inputParams":[{"field":"content","nodeId":"start-node"}],"outputParams":[{"field":"documents","name":"文档列表","type":"object[]"},{"field":"data","name":"文档内容","type":"string"}],"height":89,"width":332,"remarks":"积木报表知识库"}},{"id":"160312505863614464","type":"switch","x":268.82608695652175,"y":-251.95652173913044,"properties":{"text":"条件分支","options":{"if":[{"logic":"OR","conditions":[{"nodeId":"start-node","field":"content","operator":"CONTAINS","value":"jeecg"},{"nodeId":"start-node","field":"content","operator":"CONTAINS","value":"JeecgBoot"}],"next":"160311730106118144"},{"logic":"OR","conditions":[{"nodeId":"start-node","field":"content","operator":"CONTAINS","value":"jimu"},{"nodeId":"start-node","field":"content","operator":"CONTAINS","value":"积木"},{"nodeId":"start-node","field":"content","operator":"CONTAINS","value":"报表"}],"next":"160312352087846912"}],"else":{"next":"162075194587365376"}},"inputParams":[],"outputParams":[{"field":"index","name":"分支索引","type":"number"}],"height":144,"width":332}},{"id":"160312692635971584","type":"llm","x":1013.478260869565,"y":-212.78260869565224,"properties":{"text":"JmLLM","options":{"model":{"modeId":"1890232564262739969","params":{"model":"OpenAI","temperature":0.7}},"history":3,"messages":[{"role":"system","content":""},{"role":"user","content":"{{question}}"}]},"inputParams":[{"field":"content","name":"question","nodeId":"start-node"},{"field":"data","name":"doc","nodeId":"160312352087846912"}],"outputParams":[{"field":"text","name":"回复内容","type":"string"}],"height":114,"width":332}},{"id":"162075194587365376","type":"end","x":625.8260869565215,"y":-50.086956521739125,"properties":{"text":"结束","options":{"outputText":true,"outputContent":"我不知道这个问题怎么回答呦。"},"inputParams":[],"outputParams":[],"height":62,"width":332}}],"edges":[{"id":"160312258508730368","type":"base-edge","sourceNodeId":"160311787014434816","targetNodeId":"160312258504536064","sourceAnchorId":"160311787014434816_output","targetAnchorId":"160312258504536064_input","pointsList":[{"x":1184.1304347826085,"y":-440.304347826087},{"x":1284.1304347826085,"y":-440.304347826087},{"x":1104.695652173913,"y":-310.21739130434787},{"x":1204.695652173913,"y":-310.21739130434787}]},{"id":"160312505863614465","type":"base-edge","sourceNodeId":"start-node","targetNodeId":"160312505863614464","sourceAnchorId":"start-node_output","targetAnchorId":"160312505863614464_input","pointsList":[{"x":198.04347826086956,"y":-72.34782608695656},{"x":298.04347826086956,"y":-72.34782608695656},{"x":2.826086956521749,"y":-292.95652173913044},{"x":102.82608695652175,"y":-292.95652173913044}]},{"id":"160312525048360960","type":"base-edge","sourceNodeId":"160312505863614464","targetNodeId":"160311730106118144","sourceAnchorId":"160312505863614464_source_if","targetAnchorId":"160311730106118144_input","pointsList":[{"x":434.82608695652175,"y":-258.95652173913044},{"x":534.8260869565217,"y":-258.95652173913044},{"x":363.4347826086955,"y":-385.8695652173913},{"x":463.4347826086955,"y":-385.8695652173913}]},{"id":"160312567750569984","type":"base-edge","sourceNodeId":"160312505863614464","targetNodeId":"160312352087846912","sourceAnchorId":"160312505863614464_case_2","targetAnchorId":"160312352087846912_input","pointsList":[{"x":434.82608695652175,"y":-232.95652173913044},{"x":534.8260869565217,"y":-232.95652173913044},{"x":369.17391304347836,"y":-249.86956521739137},{"x":469.17391304347836,"y":-249.86956521739137}]},{"id":"160312692635971585","type":"base-edge","sourceNodeId":"160312352087846912","targetNodeId":"160312692635971584","sourceAnchorId":"160312352087846912_output","targetAnchorId":"160312692635971584_input","pointsList":[{"x":801.1739130434784,"y":-249.86956521739137},{"x":901.1739130434784,"y":-249.86956521739137},{"x":747.478260869565,"y":-238.78260869565224},{"x":847.478260869565,"y":-238.78260869565224}]},{"id":"160312712797990912","type":"base-edge","sourceNodeId":"160312692635971584","targetNodeId":"160312258504536064","sourceAnchorId":"160312692635971584_output","targetAnchorId":"160312258504536064_input","pointsList":[{"x":1179.478260869565,"y":-238.78260869565224},{"x":1279.478260869565,"y":-238.78260869565224},{"x":1104.695652173913,"y":-310.21739130434787},{"x":1204.695652173913,"y":-310.21739130434787}]},{"id":"160312741575110656","type":"base-edge","sourceNodeId":"160311730106118144","targetNodeId":"160311787014434816","sourceAnchorId":"160311730106118144_output","targetAnchorId":"160311787014434816_input","pointsList":[{"x":795.4347826086955,"y":-385.8695652173913},{"x":895.4347826086955,"y":-385.8695652173913},{"x":752.1304347826085,"y":-440.304347826087},{"x":852.1304347826085,"y":-440.304347826087}]},{"id":"162116168161726464","type":"base-edge","sourceNodeId":"160312505863614464","targetNodeId":"162075194587365376","sourceAnchorId":"160312505863614464_source_else","targetAnchorId":"162075194587365376_input","pointsList":[{"x":434.82608695652175,"y":-206.95652173913044},{"x":534.8260869565217,"y":-206.95652173913044},{"x":359.8260869565215,"y":-50.086956521739125},{"x":459.8260869565215,"y":-50.086956521739125}]}]}', 'enable', '{"outputs":[{"field":"outputText","type":"string"}],"inputs":[{"field":"history","name":"历史记录","type":"string[]"},{"field":"content","name":"用户问题","type":"string"}]}'); -INSERT INTO "public"."airag_flow" VALUES ('1897482706871164929', 'jeecg', '2025-03-06 11:01:45', 'jeecg', '2025-04-24 12:27:58', 'A04', NULL, 'jeecg', '示例_脚本组件', NULL, NULL, 'THEN( - start.tag(''start-node''), - code_160582647542648832.tag(''code_160582647542648832''), - end.tag(''160583273626406912'') -).tag("start-node")', '{"nodes":[{"id":"start-node","type":"start","x":300,"y":455,"properties":{"text":"开始","remarks":"","options":{},"inputParams":[{"field":"content","name":"内容","type":"string","required":true},{"field":"history","name":"历史记录","type":"string[]","required":false},{"field":"question","name":"内容2","type":"string","required":true}],"outputParams":[],"height":92,"width":332}},{"id":"code_160582647542648832","type":"code","x":786,"y":488,"properties":{"text":"脚本执行","options":{"codeType":"javascript","code":"function main(params) {\n return {\n result: params.arg1 + ''_拼接_'' + params.arg2,\n }\n}"},"inputParams":[{"field":"content","name":"arg1","nodeId":"start-node"},{"field":"question","name":"arg2","nodeId":"start-node"}],"outputParams":[{"field":"result","name":"返回结果","type":"string","required":false}],"height":158,"width":332}},{"id":"160583273626406912","type":"end","x":1272,"y":466,"properties":{"text":"结束","options":{"outputText":false,"outputContent":"{{res}}"},"inputParams":[],"outputParams":[{"field":"result","name":"res","nodeId":"code_160582647542648832"}],"height":114,"width":332}}],"edges":[{"id":"160582647546843136","type":"base-edge","sourceNodeId":"start-node","targetNodeId":"code_160582647542648832","sourceAnchorId":"start-node_output","targetAnchorId":"code_160582647542648832_input","pointsList":[{"x":466,"y":440},{"x":566,"y":440},{"x":520,"y":440},{"x":620,"y":440}]},{"id":"160583273626406913","type":"base-edge","sourceNodeId":"code_160582647542648832","targetNodeId":"160583273626406912","sourceAnchorId":"code_160582647542648832_output","targetAnchorId":"160583273626406912_input","pointsList":[{"x":952,"y":440},{"x":1052,"y":440},{"x":1006,"y":440},{"x":1106,"y":440}]}]}', 'enable', '{"outputs":[{"field":"result","name":"res","nodeId":"code_160582647542648832"}],"inputs":[{"field":"content","name":"内容","required":true,"type":"string"},{"field":"history","name":"历史记录","required":false,"type":"string[]"}]}'); -INSERT INTO "public"."airag_flow" VALUES ('1897496956167577601', 'jeecg', '2025-03-06 11:58:23', 'jeecg', '2025-05-20 10:16:28', 'A04', NULL, 'jeecg', '示例_java增强', NULL, NULL, 'THEN( - start.tag(''start-node''), - enhanceJava.tag(''160591592557232128''), - end.tag(''160595080985034752'') -).tag("start-node")', '{"nodes":[{"id":"start-node","type":"start","x":300,"y":456,"properties":{"text":"开始","remarks":"","options":{},"inputParams":[{"field":"question","name":"问题1","type":"string","required":true},{"field":"history","name":"历史记录","type":"string[]","required":false},{"field":"content","name":"问题2","type":"string","required":true}],"outputParams":[],"height":92,"width":332}},{"id":"160591592557232128","type":"enhanceJava","x":786,"y":499,"properties":{"text":"Java增强","options":{"enhance":{"type":"spring","path":"testAiragEnhance"}},"inputParams":[{"field":"question","name":"arg1","nodeId":"start-node"},{"field":"question","name":"arg2","nodeId":"start-node"}],"outputParams":[{"field":"result","name":"返回结果","type":"string","required":false}],"height":158,"width":332}},{"id":"160595080985034752","type":"end","x":1272,"y":477,"properties":{"text":"结束","options":{"outputText":true,"outputContent":"{{res}}"},"inputParams":[],"outputParams":[{"field":"result","name":"res","nodeId":"160591592557232128"}],"height":136,"width":332}}],"edges":[{"id":"160591592565620736","type":"base-edge","sourceNodeId":"start-node","targetNodeId":"160591592557232128","sourceAnchorId":"start-node_output","targetAnchorId":"160591592557232128_input","pointsList":[{"x":466,"y":441},{"x":566,"y":441},{"x":520,"y":440},{"x":620,"y":440}]},{"id":"160595080989229056","type":"base-edge","sourceNodeId":"160591592557232128","targetNodeId":"160595080985034752","sourceAnchorId":"160591592557232128_output","targetAnchorId":"160595080985034752_input","pointsList":[{"x":952,"y":440},{"x":1052,"y":440},{"x":1006,"y":440},{"x":1106,"y":440}]}]}', 'enable', '{"outputs":[{"field":"outputText","type":"string"}],"inputs":[{"field":"question","name":"问题1","required":true,"type":"string"},{"field":"history","name":"历史记录","required":true,"type":"string[]"},{"field":"content","name":"问题2","required":true,"type":"string"}]}'); -INSERT INTO "public"."airag_flow" VALUES ('1897528240805830658', 'jeecg', '2025-03-06 14:02:42', 'admin', '2025-03-21 17:26:44', 'A04', NULL, 'jeecg', '示例_子流程', NULL, 'https://jeecgdev.oss-cn-beijing.aliyuncs.com/temp/任务流程设计选择_1742437659702.png', 'THEN( - start.tag(''start-node''), - subflow.tag(''160621029847842816''), - end.tag(''160628486900924416'') -).tag("start-node")', '{"nodes":[{"id":"start-node","type":"start","x":300,"y":334,"properties":{"text":"开始","remarks":"","options":{},"inputParams":[{"field":"content","name":"内容","type":"string","required":true},{"field":"history","name":"历史记录","type":"string[]","required":true}],"outputParams":[],"height":62,"width":332}},{"id":"160621029847842816","type":"subflow","x":784,"y":334,"properties":{"text":"子流程","options":{"subflowId":"1897955542184693762"},"inputParams":[{"name":"question","nameText":"用户问题","field":"","nodeId":""},{"name":"content","nameText":"用户问题","field":"content","nodeId":"start-node"}],"outputParams":[{"field":"outputText","name":"outputText","type":"string"}],"height":62,"width":332}},{"id":"160628486900924416","type":"end","x":1272,"y":334,"properties":{"text":"结束","options":{"outputText":false,"outputContent":""},"inputParams":[],"outputParams":[{"field":"outputText","name":"result","nodeId":"160621029847842816"}],"height":62,"width":332}}],"edges":[{"id":"160621029852037120","type":"base-edge","sourceNodeId":"start-node","targetNodeId":"160621029847842816","sourceAnchorId":"start-node_output","targetAnchorId":"160621029847842816_input","pointsList":[{"x":466,"y":334},{"x":566,"y":334},{"x":518,"y":334},{"x":618,"y":334}]},{"id":"160628486905118720","type":"base-edge","sourceNodeId":"160621029847842816","targetNodeId":"160628486900924416","sourceAnchorId":"160621029847842816_output","targetAnchorId":"160628486900924416_input","pointsList":[{"x":950,"y":334},{"x":1050,"y":334},{"x":1006,"y":334},{"x":1106,"y":334}]}]}', 'enable', '{"outputs":[{"field":"outputText","name":"result","nodeId":"160621029847842816"}],"inputs":[{"field":"content","name":"内容","type":"string"},{"field":"history","name":"历史记录","type":"string[]"}]}'); -INSERT INTO "public"."airag_flow" VALUES ('1897552224058400770', 'jeecg', '2025-03-06 15:38:00', 'admin', '2025-06-25 23:35:33', 'A04', NULL, 'jeecg', '示例_全部脚本', '示例:脚本节点', 'https://jeecgdev.oss-cn-beijing.aliyuncs.com/temp/1流程设计_1742437645575.png', 'THEN( - start.tag(''start-node''), - llm.tag(''160650416019521536''), - WHEN( - code_160652991133433856.tag(''code_160652991133433856''), - code_166081977564753920.tag(''code_166081977564753920''), - code_166090618376253440.tag(''code_166090618376253440''), - code_167835393352683520.tag(''code_167835393352683520'') - ).tag("code_160652991133433856"), - end.tag(''160656278891560960'') -).tag("start-node")', '{"nodes":[{"id":"start-node","type":"start","x":300,"y":418,"properties":{"text":"开始","remarks":"","options":{},"inputParams":[{"field":"history","name":"历史记录","type":"string[]","required":false},{"field":"content","name":"用户问题","type":"string","required":true}],"outputParams":[],"height":92,"width":332}},{"id":"160650416019521536","type":"llm","x":693,"y":462,"properties":{"text":"LLM","options":{"model":{"modeId":"1890232564262739969","params":{"model":"OpenAI","temperature":null,"topP":0.9,"presencePenalty":0.1,"frequencyPenalty":0.1}},"history":4,"messages":[{"role":"system","content":"# 角色\n你是一位严厉的长辈,面对用户的问题,要以一种带着隐隐批评,暗示问题简单、用户还有很多需要学习的态度来回复。通过大模型模拟李白来对话,回答用户提出的各种问题。\n\n\n## 技能\n### 技能 1: 回答问题\n1. 当用户提出问题时,先简要评价问题较为简单,然后给出回答。\n2. 回答完问题后,适当提及用户还需要加强学习、增长见识等内容。\n\n\n## 限制:\n- 回复内容必须逻辑清晰、语言通顺,符合严厉长辈的角色设定。 \n\n"},{"role":"user","content":"{{question}}"}]},"inputParams":[{"field":"content","name":"question","nodeId":"start-node"}],"outputParams":[{"field":"text","name":"回复内容","type":"string"}],"height":180,"width":332}},{"id":"code_160652991133433856","type":"code","x":1131,"y":87,"properties":{"text":"js","options":{"codeType":"javascript","code":"function main(params) {\n if(params.llmRes){\n let resLength = params.llmRes.length\n params.llmRes = params.llmRes + ''\\n字数:''+resLength\n }\n return {\n result: params.llmRes,\n }\n}"},"inputParams":[{"field":"text","name":"llmRes","nodeId":"160650416019521536"}],"outputParams":[{"field":"result","name":"返回结果","type":"string","required":false}],"height":158,"width":332}},{"id":"160656278891560960","type":"end","x":1653,"y":449,"properties":{"text":"结束","options":{"outputText":true,"outputContent":"js:{{res}}\ngroovy:{{res1}}\nkotlin:{{res2}}\npython:{{res3}}\naviator:{{res4}}"},"inputParams":[],"outputParams":[{"field":"result","name":"res","nodeId":"code_160652991133433856"},{"field":"result","name":"res1","nodeId":"code_166081977564753920"},{"field":"result","name":"res2","nodeId":"code_166090618376253440"},{"field":"result","name":"res3","nodeId":"code_167828303175372800"},{"field":"result","name":"res4","nodeId":"code_167835393352683520"}],"height":136,"width":332}},{"id":"code_166081977564753920","type":"code","x":1141,"y":266,"properties":{"text":"groovy","options":{"codeType":"groovy","code":"def main(params) {\n if (params.llmRes) {\n def resLength = params.llmRes.length()\n params.llmRes += \"\\n字数:\" + resLength\n }\n return [result: params.llmRes]\n}"},"inputParams":[{"field":"text","name":"llmRes","nodeId":"160650416019521536"}],"outputParams":[{"field":"result","name":"返回结果","type":"string","required":false}],"height":158,"width":332}},{"id":"code_166090618376253440","type":"code","x":1141,"y":449,"properties":{"text":"kotlin","options":{"codeType":"kotlin","code":"fun main(params: MutableMap): Map {\n if (params[\"llmRes\"] is String) {\n val llmRes = params[\"llmRes\"] as String\n val resLength = llmRes.length\n params[\"llmRes\"] = \"$llmRes\\n字数1:$resLength\"\n }\n return mapOf(\"result\" to params[\"llmRes\"])\n}"},"inputParams":[{"field":"text","name":"llmRes","nodeId":"160650416019521536"}],"outputParams":[{"field":"result","name":"返回结果","type":"string","required":false}],"height":158,"width":332}},{"id":"code_167835393352683520","type":"code","x":1141,"y":667,"properties":{"text":"aviator","options":{"codeType":"aviator","code":"let llmRes = params.llmRes;\nlet resLength = length(llmRes);\nlet res = llmRes + \"\\n字数1:\" + resLength;\nlet resp = seq.map(\"result\",res);"},"inputParams":[{"field":"text","name":"llmRes","nodeId":"160650416019521536"}],"outputParams":[{"field":"result","name":"返回结果","type":"string"}],"height":158,"width":332}}],"edges":[{"id":"160650416019521537","type":"base-edge","sourceNodeId":"start-node","targetNodeId":"160650416019521536","sourceAnchorId":"start-node_output","targetAnchorId":"160650416019521536_input","pointsList":[{"x":466,"y":403},{"x":566,"y":403},{"x":427,"y":403},{"x":527,"y":403}]},{"id":"160652991137628160","type":"base-edge","sourceNodeId":"160650416019521536","targetNodeId":"code_160652991133433856","sourceAnchorId":"160650416019521536_output","targetAnchorId":"code_160652991133433856_input","pointsList":[{"x":859,"y":403},{"x":959,"y":403},{"x":865,"y":39},{"x":965,"y":39}]},{"id":"160656278899949568","type":"base-edge","sourceNodeId":"code_160652991133433856","targetNodeId":"160656278891560960","sourceAnchorId":"code_160652991133433856_output","targetAnchorId":"160656278891560960_input","pointsList":[{"x":1297,"y":39},{"x":1397,"y":39},{"x":1387,"y":412},{"x":1487,"y":412}]},{"id":"166082001409372160","type":"base-edge","sourceNodeId":"160650416019521536","targetNodeId":"code_166081977564753920","sourceAnchorId":"160650416019521536_output","targetAnchorId":"code_166081977564753920_input","pointsList":[{"x":859,"y":403},{"x":959,"y":403},{"x":875,"y":218},{"x":975,"y":218}]},{"id":"166082017557442560","type":"base-edge","sourceNodeId":"code_166081977564753920","targetNodeId":"160656278891560960","sourceAnchorId":"code_166081977564753920_output","targetAnchorId":"160656278891560960_input","pointsList":[{"x":1307,"y":218},{"x":1407,"y":218},{"x":1387,"y":412},{"x":1487,"y":412}]},{"id":"166090719580614656","type":"base-edge","sourceNodeId":"160650416019521536","targetNodeId":"code_166090618376253440","sourceAnchorId":"160650416019521536_output","targetAnchorId":"code_166090618376253440_input","pointsList":[{"x":859,"y":403},{"x":959,"y":403},{"x":875,"y":401},{"x":975,"y":401}]},{"id":"166090725280673792","type":"base-edge","sourceNodeId":"code_166090618376253440","targetNodeId":"160656278891560960","sourceAnchorId":"code_166090618376253440_output","targetAnchorId":"160656278891560960_input","pointsList":[{"x":1307,"y":401},{"x":1407,"y":401},{"x":1387,"y":412},{"x":1487,"y":412}]},{"id":"167835393356877824","type":"base-edge","sourceNodeId":"160650416019521536","targetNodeId":"code_167835393352683520","sourceAnchorId":"160650416019521536_output","targetAnchorId":"code_167835393352683520_input","pointsList":[{"x":859,"y":403},{"x":959,"y":403},{"x":875,"y":619},{"x":975,"y":619}]},{"id":"167836988980817920","type":"base-edge","sourceNodeId":"code_167835393352683520","targetNodeId":"160656278891560960","sourceAnchorId":"code_167835393352683520_output","targetAnchorId":"160656278891560960_input","pointsList":[{"x":1307,"y":619},{"x":1407,"y":619},{"x":1387,"y":412},{"x":1487,"y":412}]}]}', 'enable', '{"outputs":[{"field":"outputText","type":"string"}],"inputs":[{"field":"history","name":"历史记录","required":false,"type":"string[]"},{"field":"content","name":"用户问题","required":true,"type":"string"}]}'); -INSERT INTO "public"."airag_flow" VALUES ('1900021198960492546', 'jeecg', '2025-03-13 11:08:49', 'jeecg', '2025-03-19 19:26:36', 'A04', NULL, 'jeecg', '示例_直接回复节点', '', 'https://jeecgdev.oss-cn-beijing.aliyuncs.com/temp/流程设计引擎_1742383594151.png', 'THEN( - start.tag(''start-node''), - llm.tag(''163122102386216960''), - reply.tag(''163119312863678464''), - llm.tag(''163122766768164864''), - end.tag(''163119405809455104'') -).tag("start-node")', '{"nodes":[{"id":"start-node","type":"start","x":232,"y":273,"properties":{"text":"开始","remarks":"","options":{},"inputParams":[{"field":"content","name":"用户问题","type":"string","required":true},{"field":"history","name":"历史记录","type":"string[]","required":true}],"outputParams":[],"height":62,"width":332}},{"id":"163119312863678464","type":"reply","x":800,"y":225,"properties":{"text":"直接回复","options":{"content":"{{content}}"},"inputParams":[{"field":"text","name":"content","nodeId":"163122102386216960"}],"outputParams":[],"height":62,"width":332}},{"id":"163119405809455104","type":"end","x":1548,"y":254,"properties":{"text":"结束","options":{"outputText":true,"outputContent":"{{resp}}"},"inputParams":[],"outputParams":[{"field":"text","name":"resp","nodeId":"163122766768164864"}],"height":62,"width":332}},{"id":"163122102386216960","type":"llm","x":551,"y":553,"properties":{"text":"LLM","options":{"model":{"modeId":"1890232564262739969","params":{"model":"OpenAI","temperature":0.7}},"history":3,"messages":[{"role":"system","content":"根据用户的问题,以有趣的方式回答,如果可以的话请引用故事或经典说明。\n\n用中文回复。\n\n字数控制在200以内。"},{"role":"user","content":"{{content}}"}]},"inputParams":[{"field":"content","name":"content","nodeId":"start-node"}],"outputParams":[{"field":"text","name":"回复内容","type":"string"}],"height":136,"width":332}},{"id":"163122766768164864","type":"llm","x":1144,"y":412,"properties":{"text":"nextQue","options":{"model":{"modeId":"1890232564262739969","params":{"model":"OpenAI","temperature":0.7}},"history":3,"messages":[{"role":"system","content":"根据用户的问题和ai的回复,猜测用户下一次的问题可能有哪些,markdown格式回复。\n格式:\n\\n你可能还想知道:\n* 问题一\n* 问题二\n。。。。"},{"role":"user","content":"用户问题:{{que}}\nAI回复:{{res}}"}]},"inputParams":[{"field":"content","name":"que","nodeId":"start-node"},{"field":"text","name":"res","nodeId":"163122102386216960"}],"outputParams":[{"field":"text","name":"回复内容","type":"string"}],"height":136,"width":332}}],"edges":[{"id":"163122102390411264","type":"base-edge","sourceNodeId":"start-node","targetNodeId":"163122102386216960","sourceAnchorId":"start-node_output","targetAnchorId":"163122102386216960_input","pointsList":[{"x":398,"y":273},{"x":498,"y":273},{"x":285,"y":516},{"x":385,"y":516}]},{"id":"163122147491762176","type":"base-edge","sourceNodeId":"163122102386216960","targetNodeId":"163119312863678464","sourceAnchorId":"163122102386216960_output","targetAnchorId":"163119312863678464_input","pointsList":[{"x":717,"y":516},{"x":817,"y":516},{"x":534,"y":225},{"x":634,"y":225}]},{"id":"163122766772359168","type":"base-edge","sourceNodeId":"163119312863678464","targetNodeId":"163122766768164864","sourceAnchorId":"163119312863678464_output","targetAnchorId":"163122766768164864_input","pointsList":[{"x":966,"y":225},{"x":1066,"y":225},{"x":878,"y":375},{"x":978,"y":375}]},{"id":"163123226145116160","type":"base-edge","sourceNodeId":"163122766768164864","targetNodeId":"163119405809455104","sourceAnchorId":"163122766768164864_output","targetAnchorId":"163119405809455104_input","pointsList":[{"x":1310,"y":375},{"x":1410,"y":375},{"x":1282,"y":254},{"x":1382,"y":254}]}]}', 'enable', '{"outputs":[{"field":"outputText","type":"string"}],"inputs":[{"field":"content","name":"用户问题","type":"string"},{"field":"history","name":"历史记录","type":"string[]"}]}'); -INSERT INTO "public"."airag_flow" VALUES ('1900029596154232833', 'jeecg', '2025-03-13 11:42:11', 'jeecg', '2025-03-27 18:11:02', 'A04', NULL, 'jeecg', '示例_http节点', '', 'https://jeecgdev.oss-cn-beijing.aliyuncs.com/temp/流程设计(1)_1742383583093.png', 'THEN( - start.tag(''start-node''), - http.tag(''163206941950185472''), - SWITCH(switch.tag(''163207852529389568'')).to( - THEN( - http.tag(''163128964742746112''), - SWITCH(switch.tag(''168299837777608704'')).to( - end.tag(''163129833764786176''), - end.tag(''168300140241453056'') - ).tag(''168299837777608704'') - ).tag("163128964742746112"), - end.tag(''163208186282741760'') - ).tag(''163207852529389568'') -).tag("start-node")', '{"nodes":[{"id":"start-node","type":"start","x":51.13043478260868,"y":342.804347826087,"properties":{"text":"开始","remarks":"大萨达撒","options":{},"inputParams":[{"field":"content","name":"用户问题","type":"string","required":true},{"field":"history","name":"历史记录","type":"string[]","required":true}],"outputParams":[],"height":89,"width":332}},{"id":"163128964742746112","type":"http","x":859.0869565217391,"y":192.2173913043478,"properties":{"text":"HTTP 请求 查询","options":{"http":{"url":"{{domainURL}}/test/jeecgDemo/list","method":"GET","headers":{},"requestBody":{"type":"none","body":""},"requestParams":{"name":"{{name}}","pageNo":"1","pageSize":"10"},"timeout":120}},"inputParams":[{"field":"content","name":"name","nodeId":"start-node"}],"outputParams":[{"field":"body","name":"输出","type":"string","required":false},{"field":"statusCode","name":"状态码","type":"number"},{"field":"body.success","name":"是否成功","type":"string","required":false},{"field":"body.result.records[0].id","name":"id","type":"string","required":false}],"height":62,"width":332}},{"id":"163129833764786176","type":"end","x":1386.5217391304348,"y":164.08695652173913,"properties":{"text":"结束","options":{"outputText":true,"outputContent":"新增的用户Id:{{id}}"},"inputParams":[],"outputParams":[{"field":"body.result.records[0].id","name":"id","nodeId":"163128964742746112"}],"height":62,"width":332}},{"id":"163206941950185472","type":"http","x":320.1304347826087,"y":474.2173913043478,"properties":{"text":"HTTP 请求","options":{"http":{"url":"{{domainURL}}/test/jeecgDemo/add","method":"POST","headers":{},"requestBody":{"type":"json","body":"{\n  \"name\": \"{{name}}\",\n  \"keyWord\": \"example\",\n  \"punchTime\": \"2023-10-05 14:48:00\",\n  \"salaryMoney\": 1000.00,\n  \"bonusMoney\": 500.0,\n  \"sex\": \"1\",\n  \"age\": 30,\n  \"birthday\": \"2023-10-05\",\n  \"email\": \"john.doe@example.com\",\n  \"content\": \"This is a test content.\",\n}"},"requestParams":{},"timeout":120}},"inputParams":[{"field":"content","name":"name","nodeId":"start-node"}],"outputParams":[{"field":"statusCode","name":"code","type":"string","required":false},{"field":"body","name":"回复内容","type":"string"}],"height":62,"width":332}},{"id":"163207852529389568","type":"switch","x":510.78260869565224,"y":302.73913043478257,"properties":{"text":"条件分支","options":{"if":[{"logic":"AND","conditions":[{"nodeId":"163206941950185472","field":"statusCode","operator":"EQUALS","value":"200"}],"next":"163128964742746112"}],"else":{"next":"163208186282741760"}},"inputParams":[],"outputParams":[{"field":"index","name":"分支索引","type":"number"}],"height":118,"width":332}},{"id":"163208186282741760","type":"end","x":745.7826086956521,"y":448.0869565217391,"properties":{"text":"结束","options":{"outputText":true,"outputContent":"添加数据失败"},"inputParams":[],"outputParams":[],"height":62,"width":332}},{"id":"168299837777608704","type":"switch","x":1029.173913043478,"y":314.78260869565213,"properties":{"text":"条件分支","options":{"if":[{"logic":"AND","conditions":[{"nodeId":"163128964742746112","field":"body.success","operator":"EQUALS","value":"true"}],"next":"163129833764786176"}],"else":{"next":"168300140241453056"}},"inputParams":[],"outputParams":[{"field":"index","name":"分支索引","type":"number"}],"height":118,"width":332}},{"id":"168300140241453056","type":"end","x":1389.2608695652173,"y":419.8695652173913,"properties":{"text":"结束","options":{"outputText":true,"outputContent":"添加用户失败"},"inputParams":[],"outputParams":[],"height":62,"width":332}}],"edges":[{"id":"163206941954379776","type":"base-edge","sourceNodeId":"start-node","targetNodeId":"163206941950185472","sourceAnchorId":"start-node_output","targetAnchorId":"163206941950185472_input","pointsList":[{"x":217.1304347826091,"y":329.304347826087},{"x":317.1304347826091,"y":329.304347826087},{"x":54.13043478260869,"y":474.2173913043478},{"x":154.1304347826087,"y":474.2173913043478}]},{"id":"163207852533583872","type":"base-edge","sourceNodeId":"163206941950185472","targetNodeId":"163207852529389568","sourceAnchorId":"163206941950185472_output","targetAnchorId":"163207852529389568_input","pointsList":[{"x":486.13043478260863,"y":474.2173913043478},{"x":586.1304347826085,"y":474.2173913043478},{"x":244.78260869565224,"y":274.73913043478257},{"x":344.78260869565224,"y":274.73913043478257}]},{"id":"163208000881922048","type":"base-edge","sourceNodeId":"163207852529389568","targetNodeId":"163128964742746112","sourceAnchorId":"163207852529389568_source_if","targetAnchorId":"163128964742746112_input","pointsList":[{"x":676.7826086956521,"y":308.73913043478257},{"x":776.7826086956521,"y":308.73913043478257},{"x":593.0869565217391,"y":192.2173913043478},{"x":693.0869565217391,"y":192.2173913043478}]},{"id":"163208186286936064","type":"base-edge","sourceNodeId":"163207852529389568","targetNodeId":"163208186282741760","sourceAnchorId":"163207852529389568_source_else","targetAnchorId":"163208186282741760_input","pointsList":[{"x":676.7826086956521,"y":334.73913043478257},{"x":776.7826086956521,"y":334.73913043478257},{"x":479.78260869565213,"y":448.0869565217391},{"x":579.7826086956521,"y":448.0869565217391}]},{"id":"168299837781803008","type":"base-edge","sourceNodeId":"163128964742746112","targetNodeId":"168299837777608704","sourceAnchorId":"163128964742746112_output","targetAnchorId":"168299837777608704_input","pointsList":[{"x":1025.086956521739,"y":192.2173913043478},{"x":1125.0869565217386,"y":192.2173913043478},{"x":763.173913043478,"y":286.78260869565213},{"x":863.173913043478,"y":286.78260869565213}]},{"id":"168300025623707648","type":"base-edge","sourceNodeId":"168299837777608704","targetNodeId":"163129833764786176","sourceAnchorId":"168299837777608704_source_if","targetAnchorId":"163129833764786176_input","pointsList":[{"x":1195.1739130434776,"y":320.78260869565213},{"x":1295.1739130434776,"y":320.78260869565213},{"x":1120.5217391304348,"y":164.08695652173913},{"x":1220.5217391304348,"y":164.08695652173913}]},{"id":"168300140245647360","type":"base-edge","sourceNodeId":"168299837777608704","targetNodeId":"168300140241453056","sourceAnchorId":"168299837777608704_source_else","targetAnchorId":"168300140241453056_input","pointsList":[{"x":1195.1739130434776,"y":346.78260869565213},{"x":1295.1739130434776,"y":346.78260869565213},{"x":1123.2608695652173,"y":419.8695652173913},{"x":1223.2608695652173,"y":419.8695652173913}]}]}', 'enable', '{"outputs":[{"field":"outputText","type":"string"}],"inputs":[{"field":"content","name":"用户问题","type":"string"},{"field":"history","name":"历史记录","type":"string[]"}]}'); -INSERT INTO "public"."airag_flow" VALUES ('1902263524520935425', 'jeecg', '2025-03-19 15:39:01', 'jeecg', '2025-03-27 16:56:10', 'A04', NULL, 'jeecg', '示例_图片解读', '', 'https://jeecgdev.oss-cn-beijing.aliyuncs.com/temp/工具-图片解析_1743065064801.png', 'THEN( - start.tag(''start-node''), - llm.tag(''165363942517174272''), - llm.tag(''168280528419778560''), - end.tag(''165364368465522688'') -).tag("start-node")', '{"nodes":[{"id":"start-node","type":"start","x":300,"y":457,"properties":{"text":"开始","remarks":"","options":{},"inputParams":[{"field":"content","name":"用户问题","type":"string","required":true},{"field":"history","name":"历史记录","type":"string[]","required":true},{"field":"images","name":"图片","type":"picture","required":false}],"outputParams":[],"height":62,"width":332}},{"id":"165363942517174272","type":"llm","x":675,"y":341,"properties":{"text":"图片解读","options":{"model":{"modeId":"1890232564262739969","params":{"model":"OpenAI","temperature":0.7}},"history":3,"messages":[{"role":"system","content":"你是一个图像分析专家,负责解读和解释用户发送的图片。请根据以下要求进行分析:\n\n## 目标:\n分析并解释图片的意义,提供详细的解读和背景信息。\n\n## 技能:\n1. 视觉识别能力:能够识别图像中的元素及其关系。\n2. 上下文理解能力:结合文化、历史、艺术等背景知识进行深度解读。\n3. 清晰表达能力:用简洁明了的语言传达分析结果。\n\n## 工作流:\n1. 识别图片中的主要元素,描述它们的外观和特征。\n2. 分析这些元素之间的关系及其在整体构图中的作用。\n3. 提供与图片相关的背景信息,探讨其潜在意义和影响。\n\n## 输出格式:\n- 图片元素描述\n- 元素关系分析\n- 背景信息与意义解释\n\n## 限制:\n- 不提供主观判断,仅基于客观分析进行解释。\n- 不涉及任何隐私或敏感内容的讨论。"},{"role":"user","content":"分析并解释图片的意义,提供详细的解读和背景信息。"}]},"inputParams":[{"field":"content","name":"que","nodeId":"start-node"},{"field":"images","name":"images","nodeId":"start-node"}],"outputParams":[{"field":"text","name":"回复内容","type":"string"}],"height":136,"width":332}},{"id":"165364368465522688","type":"end","x":1520,"y":426,"properties":{"text":"结束","options":{"outputText":true,"outputContent":"{{resp}}"},"inputParams":[],"outputParams":[{"field":"text","name":"resp","nodeId":"168280528419778560"}],"height":62,"width":332}},{"id":"168280528419778560","type":"llm","x":1063,"y":588,"properties":{"text":"LLM","options":{"model":{"modeId":"1890232564262739969","params":{"model":"OpenAI","temperature":0.7}},"history":3,"messages":[{"role":"system","content":"你将扮演一个故事创作者,以下是关于这个角色的详细设定,请根据这些信息来构建你的回答。\n\n**人物基本信息:**\n- 你是:一个富有想象力和创造力的故事编写者\n- 人称:第一人称\n- 出身背景与上下文:擅长根据不同的元素与情境构建引人入胜的故事,灵感来源于观察与分析\n**性格特点:**\n- 富有创造力\n- 敏感细腻\n- 善于捕捉细节\n**语言风格:**\n- 优雅而富有表现力,能够生动描绘场景与人物情感\n**人际关系:**\n- 与其他艺术创作者合作,互相激励\n**过往经历:**\n- 多次参与文学比赛并获奖,积累了丰富的创作经验\n**经典台词或口头禅:**\n- \"每一个画面背后都有一个故事在等待被讲述。\"\n- \"细节决定成败。\"\n\n要求: \n- 故事应围绕从图片分析得出的主题和情感进行展开。\n- 包含鲜明的人物、情节以及转折。\n- 语言生动形象,能够引起读者的共鸣。\n- 直接讲故事,不要提及图片。"},{"role":"user","content":"{{readImg}}"}]},"inputParams":[{"field":"text","name":"readImg","nodeId":"165363942517174272"}],"outputParams":[{"field":"text","name":"回复内容","type":"string"}],"height":136,"width":332}}],"edges":[{"id":"165363942525562880","type":"base-edge","sourceNodeId":"start-node","targetNodeId":"165363942517174272","sourceAnchorId":"start-node_output","targetAnchorId":"165363942517174272_input","pointsList":[{"x":466,"y":457},{"x":566,"y":457},{"x":409,"y":304},{"x":509,"y":304}]},{"id":"168280528428167168","type":"base-edge","sourceNodeId":"165363942517174272","targetNodeId":"168280528419778560","sourceAnchorId":"165363942517174272_output","targetAnchorId":"168280528419778560_input","pointsList":[{"x":841,"y":304},{"x":941,"y":304},{"x":797,"y":551},{"x":897,"y":551}]},{"id":"168280631234752512","type":"base-edge","sourceNodeId":"168280528419778560","targetNodeId":"165364368465522688","sourceAnchorId":"168280528419778560_output","targetAnchorId":"165364368465522688_input","pointsList":[{"x":1229,"y":551},{"x":1329,"y":551},{"x":1254,"y":426},{"x":1354,"y":426}]}]}', 'enable', '{"outputs":[{"field":"outputText","type":"string"}],"inputs":[{"field":"content","name":"用户问题","type":"string"},{"field":"history","name":"历史记录","type":"string[]"},{"field":"images","name":"图片","type":"picture"}]}'); -INSERT INTO "public"."airag_flow" VALUES ('1904779811574784002', 'jeecg', '2025-03-26 14:17:51', 'jeecg', '2025-03-27 16:44:53', 'A04', NULL, 'jeecg', '示例_OCR', '', 'https://jeecgdev.oss-cn-beijing.aliyuncs.com/temp/1dataOCR_1743065089791.png', 'THEN( - start.tag(''start-node''), - SWITCH(switch.tag(''167880707187527680'')).to( - end.tag(''167880856269869056''), - THEN( - code_167881149430747136.tag(''code_167881149430747136''), - llm.tag(''167881839356006400''), - end.tag(''167880661561888768'') - ).tag("code_167881149430747136") - ).tag(''167880707187527680'') -).tag("start-node")', '{"nodes":[{"id":"start-node","type":"start","x":300,"y":406,"properties":{"text":"开始","remarks":"","options":{},"inputParams":[{"field":"content","name":"用户问题","type":"string","required":true},{"field":"history","name":"历史记录","type":"string[]","required":true},{"field":"images","name":"图片","type":"picture","required":true}],"outputParams":[],"height":62,"width":332}},{"id":"167880661561888768","type":"end","x":1474,"y":316,"properties":{"text":"结束","options":{"outputText":false,"outputContent":""},"inputParams":[],"outputParams":[{"field":"text","name":"data","nodeId":"167881839356006400"}],"height":62,"width":332}},{"id":"167880707187527680","type":"switch","x":681,"y":233,"properties":{"text":"条件分支","options":{"if":[{"logic":"AND","conditions":[{"nodeId":"start-node","field":"images","operator":"EMPTY","value":""}],"next":"167880856269869056"}],"else":{"next":"code_167881149430747136"}},"inputParams":[],"outputParams":[{"field":"index","name":"分支索引","type":"number"}],"height":118,"width":332}},{"id":"167880856269869056","type":"end","x":1207,"y":181,"properties":{"text":"结束","options":{"outputText":true,"outputContent":"{\n    \"message\": \"请提供图片\"\n  }"},"inputParams":[],"outputParams":[],"height":62,"width":332}},{"id":"code_167881149430747136","type":"code","x":937,"y":412,"properties":{"text":"脚本执行","options":{"codeType":"javascript","code":"function main(params) {\n let newQuestion = params.question\n if(!params.question){\n newQuestion = \"从图片中提取文字\"\n }\n return {\n result: newQuestion,\n }\n}"},"inputParams":[{"field":"content","name":"question","nodeId":"start-node"}],"outputParams":[{"field":"result","name":"返回结果","type":"string"}],"height":62,"width":332}},{"id":"167881839356006400","type":"llm","x":1319,"y":585,"properties":{"text":"LLM","options":{"model":{"modeId":"1890232564262739969","params":{"model":"OpenAI","temperature":0.7}},"history":3,"messages":[{"role":"system","content":"# 角色:OCR工具\n作为一个智能OCR工具,你的主要职责是从图片中提取文字并将其输出为结构化数据。\n\n## 目标:\n1. 精确识别和提取图片中的文字信息。\n2. 将提取的文字转换为结构化数据格式。\n\n## 技能:\n1. 高效的图像处理能力。\n2. 精确的文字识别算法。\n3. 数据格式化与输出能力。\n\n## 工作流:\n1. 输入图片,进行预处理(如去噪、二值化)。\n2. 应用OCR算法识别图片中的文字,并记录识别结果。\n3. 将识别的文字整理成结构化数据格式,如JSON或CSV。\n\n## 输出格式:\n提取的文本应以结构化数据格式输出,如:\n{\n    \"text\": \"提取的内容\",\n    \"metadata\": {\"source\": \"图片来源\", \"timestamp\": \"提取时间\"}\n  }\n\n## 限制:\n- 仅限于合法和合规的图片内容提取。\n- 不得保存用户上传的图片数据。\n- 需确保输出的数据准确无误,标注所有数据来源。"},{"role":"user","content":"{{question}}"}]},"inputParams":[{"field":"images","name":"images","nodeId":"start-node"},{"field":"result","name":"question","nodeId":"code_167881149430747136"}],"outputParams":[{"field":"text","name":"回复内容","type":"string"}],"height":136,"width":332}}],"edges":[{"id":"167880707195916288","type":"base-edge","sourceNodeId":"start-node","targetNodeId":"167880707187527680","sourceAnchorId":"start-node_output","targetAnchorId":"167880707187527680_input","pointsList":[{"x":466,"y":406},{"x":566,"y":406},{"x":415,"y":205},{"x":515,"y":205}]},{"id":"167880856274063360","type":"base-edge","sourceNodeId":"167880707187527680","targetNodeId":"167880856269869056","sourceAnchorId":"167880707187527680_source_if","targetAnchorId":"167880856269869056_input","pointsList":[{"x":847,"y":239},{"x":947,"y":239},{"x":941,"y":181},{"x":1041,"y":181}]},{"id":"167881149434941440","type":"base-edge","sourceNodeId":"167880707187527680","targetNodeId":"code_167881149430747136","sourceAnchorId":"167880707187527680_source_else","targetAnchorId":"code_167881149430747136_input","pointsList":[{"x":847,"y":265},{"x":947,"y":265},{"x":671,"y":412},{"x":771,"y":412}]},{"id":"167881839356006401","type":"base-edge","sourceNodeId":"code_167881149430747136","targetNodeId":"167881839356006400","sourceAnchorId":"code_167881149430747136_output","targetAnchorId":"167881839356006400_input","pointsList":[{"x":1103,"y":412},{"x":1203,"y":412},{"x":1053,"y":548},{"x":1153,"y":548}]},{"id":"167882293611712512","type":"base-edge","sourceNodeId":"167881839356006400","targetNodeId":"167880661561888768","sourceAnchorId":"167881839356006400_output","targetAnchorId":"167880661561888768_input","pointsList":[{"x":1485,"y":548},{"x":1585,"y":548},{"x":1208,"y":316},{"x":1308,"y":316}]}]}', 'enable', '{"outputs":[{"field":"text","name":"data","nodeId":"167881839356006400"},{"field":"outputText","type":"string"}],"inputs":[{"field":"content","name":"用户问题","type":"string"},{"field":"history","name":"历史记录","type":"string[]"},{"field":"images","name":"图片","type":"picture"}]}'); -INSERT INTO "public"."airag_flow" VALUES ('1905158829855784962', 'jeecg', '2025-03-27 15:23:56', 'jeecg', '2025-03-27 16:29:22', 'A04', NULL, 'jeecg', '示例_翻译', '', 'https://jeecgdev.oss-cn-beijing.aliyuncs.com/temp/翻译_1743060940605.png', 'THEN( - start.tag(''start-node''), - SWITCH(switch.tag(''168262809717821440'')).to( - end.tag(''168259683329757184''), - THEN( - SWITCH(classifier.tag(''168263048935755776'')).to( - llm.tag(''168263321821368320''), - llm.tag(''168263346282549248'') - ).tag(''168263048935755776''), - end.tag(''168263794896916480'') - ).tag("168263048935755776") - ).tag(''168262809717821440'') -).tag("start-node")', '{"nodes":[{"id":"start-node","type":"start","x":300,"y":457,"properties":{"text":"开始","remarks":"","options":{},"inputParams":[{"field":"content","name":"用户问题","type":"string","required":true},{"field":"history","name":"历史记录","type":"string[]","required":true}],"outputParams":[],"height":62,"width":332}},{"id":"168259683329757184","type":"end","x":1090,"y":150,"properties":{"text":"结束","options":{"outputText":false,"outputContent":""},"inputParams":[],"outputParams":[{"field":"content","name":"data","nodeId":"start-node"}],"height":62,"width":332}},{"id":"168262809717821440","type":"switch","x":701,"y":281,"properties":{"text":"条件分支","options":{"if":[{"logic":"AND","conditions":[{"nodeId":"start-node","field":"content","operator":"EMPTY","value":""}],"next":"168259683329757184"}],"else":{"next":"168263048935755776"}},"inputParams":[],"outputParams":[{"field":"index","name":"分支索引","type":"number"}],"height":118,"width":332}},{"id":"168263048935755776","type":"classifier","x":1086,"y":381,"properties":{"text":"分类器","options":{"model":{"modeId":"1890232564262739969","params":{"model":"OpenAI","temperature":0.2}},"categories":[{"category":"是中文","next":"168263321821368320"}],"else":{"next":"168263346282549248"}},"inputParams":[{"field":"content","nodeId":"start-node"}],"outputParams":[{"field":"index","name":"分类索引","type":"number"},{"field":"content","name":"分类内容","type":"string"}],"height":118,"width":332}},{"id":"168263321821368320","type":"llm","x":1513,"y":292,"properties":{"text":"翻译成英文","options":{"model":{"modeId":"1890232564262739969","params":{"model":"OpenAI","temperature":0.3}},"history":1,"messages":[{"role":"system","content":"将用户输入完整翻译成英文,包括所有语气词和重复表达\n- 严格保留原始语序和强调成分\n- 禁止省略任何字词或改变语气强度\n- 直接输出翻译结果不做解释"},{"role":"user","content":"{{content}}"}]},"inputParams":[{"field":"content","name":"content","nodeId":"start-node"}],"outputParams":[{"field":"text","name":"回复内容","type":"string"}],"height":136,"width":332}},{"id":"168263346282549248","type":"llm","x":1514,"y":489,"properties":{"text":"翻译成中文","options":{"model":{"modeId":"1890232564262739969","params":{"model":"OpenAI","temperature":0.3}},"history":1,"messages":[{"role":"system","content":"将用户输入完整翻译成中文,包括所有语气词和重复表达\n- 严格保留原始语序和强调成分\n- 禁止省略任何字词或改变语气强度\n- 直接输出翻译结果不做解释"},{"role":"user","content":"{{content}}"}]},"inputParams":[{"field":"content","name":"content","nodeId":"start-node"}],"outputParams":[{"field":"text","name":"回复内容","type":"string"}],"height":136,"width":332}},{"id":"168263794896916480","type":"end","x":1982,"y":360,"properties":{"text":"结束","options":{"outputText":true,"outputContent":"{{dataC}}{{dataE}}"},"inputParams":[],"outputParams":[{"field":"text","name":"dataC","nodeId":"168263346282549248"},{"field":"text","name":"dataE","nodeId":"168263321821368320"}],"height":62,"width":332}}],"edges":[{"id":"168262809722015744","type":"base-edge","sourceNodeId":"start-node","targetNodeId":"168262809717821440","sourceAnchorId":"start-node_output","targetAnchorId":"168262809717821440_input","pointsList":[{"x":466,"y":457},{"x":566,"y":457},{"x":435,"y":253},{"x":535,"y":253}]},{"id":"168262871336341504","type":"base-edge","sourceNodeId":"168262809717821440","targetNodeId":"168259683329757184","sourceAnchorId":"168262809717821440_source_if","targetAnchorId":"168259683329757184_input","pointsList":[{"x":867,"y":287},{"x":967,"y":287},{"x":824,"y":150},{"x":924,"y":150}]},{"id":"168263048939950080","type":"base-edge","sourceNodeId":"168262809717821440","targetNodeId":"168263048935755776","sourceAnchorId":"168262809717821440_source_else","targetAnchorId":"168263048935755776_input","pointsList":[{"x":867,"y":313},{"x":967,"y":313},{"x":820,"y":353},{"x":920,"y":353}]},{"id":"168263321825562624","type":"base-edge","sourceNodeId":"168263048935755776","targetNodeId":"168263321821368320","sourceAnchorId":"168263048935755776_case_1","targetAnchorId":"168263321821368320_input","pointsList":[{"x":1252,"y":387},{"x":1352,"y":387},{"x":1247,"y":255},{"x":1347,"y":255}]},{"id":"168263346286743552","type":"base-edge","sourceNodeId":"168263048935755776","targetNodeId":"168263346282549248","sourceAnchorId":"168263048935755776_case_else","targetAnchorId":"168263346282549248_input","pointsList":[{"x":1252,"y":413},{"x":1352,"y":413},{"x":1248,"y":452},{"x":1348,"y":452}]},{"id":"168263794901110784","type":"base-edge","sourceNodeId":"168263346282549248","targetNodeId":"168263794896916480","sourceAnchorId":"168263346282549248_output","targetAnchorId":"168263794896916480_input","pointsList":[{"x":1680,"y":452},{"x":1780,"y":452},{"x":1716,"y":360},{"x":1816,"y":360}]},{"id":"168263831215394816","type":"base-edge","sourceNodeId":"168263321821368320","targetNodeId":"168263794896916480","sourceAnchorId":"168263321821368320_output","targetAnchorId":"168263794896916480_input","pointsList":[{"x":1679,"y":255},{"x":1779,"y":255},{"x":1716,"y":360},{"x":1816,"y":360}]}]}', 'enable', '{"outputs":[{"field":"outputText","type":"string"},{"field":"content","name":"data","nodeId":"start-node"}],"inputs":[{"field":"content","name":"用户问题","type":"string"},{"field":"history","name":"历史记录","type":"string[]"}]}'); -INSERT INTO "public"."airag_flow" VALUES ('1905189468558671874', 'jeecg', '2025-03-27 17:25:41', 'jeecg', '2025-03-27 17:40:51', 'A04', NULL, 'jeecg', '示例_PMP考试宝典', '', 'https://jeecgdev.oss-cn-beijing.aliyuncs.com/temp/pmp_1743067580648.png', 'THEN( - start.tag(''start-node''), - WHEN( - knowledge.tag(''168290518600351744''), - llm.tag(''168290871702028288'') - ).tag("168290518600351744"), - llm.tag(''168290861241434112''), - end.tag(''168290315671535616'') -).tag("start-node")', '{"nodes":[{"id":"start-node","type":"start","x":300,"y":397,"properties":{"text":"开始","remarks":"","options":{},"inputParams":[{"field":"content","name":"用户问题","type":"string","required":true},{"field":"history","name":"历史记录","type":"string[]","required":true}],"outputParams":[],"height":92,"width":332}},{"id":"168290315671535616","type":"end","x":1644,"y":348,"properties":{"text":"结束","options":{"outputText":true,"outputContent":"{{res}}"},"inputParams":[],"outputParams":[{"field":"text","name":"res","nodeId":"168290861241434112"}],"height":92,"width":332}},{"id":"168290518600351744","type":"knowledge","x":693,"y":209,"properties":{"text":"知识库","options":{"knowIds":["1905186756806918146"],"topNumber":5,"similarity":0.7},"inputParams":[{"field":"content","nodeId":"start-node"}],"outputParams":[{"field":"documents","name":"文档列表","type":"object[]"},{"field":"data","name":"文档内容","type":"string"}],"height":92,"width":332}},{"id":"168290861241434112","type":"llm","x":1181,"y":350,"properties":{"text":"总结LLM","options":{"model":{"modeId":"1890232564262739969","params":{"model":"OpenAI","temperature":0.4}},"history":3,"messages":[{"role":"system","content":"你是一个智能知识助手,旨在综合知识库和大型语言模型(LLM)的返回数据,以高效、准确地回答用户提出的问题。请遵循以下要求:\n\n## 目标:\n- 提供准确、相关且易于理解的回答,结合知识库和LLM的信息。\n\n## 技能:\n1. 能够快速检索并整合来自不同知识库的信息。\n2. 理解用户问题的上下文,并提供清晰的答案。\n3. 具备自然语言处理能力,以便流畅表达复杂信息。\n\n## 工作流:\n1. 接收用户问题并进行解析,识别关键要素。\n2. 从综合知识库和LLM中获取相关数据,确保信息的准确性和完整性。\n3. 将获取的信息进行整合,形成清晰、简洁的回答。\n\n## 输出格式:\n- 每次回答应以简洁明了的句子呈现,必要时可以添加示例或补充信息。\n\n## 限制:\n- 不得提供未经验证的信息或个人隐私数据。\n- 所有数据需标注来源,不确定信息用[需核实]标记。\n- 自动过滤涉及偏见或违法内容,替换为[合规表达]。"},{"role":"user","content":"知识库返回数据:{{knowRes}}\n\nLLM返回数据:{{llmRes}}\n用户问题:{{userQue}}"}]},"inputParams":[{"field":"data","name":"knowRes","nodeId":"168290518600351744"},{"field":"text","name":"llmRes","nodeId":"168290871702028288"},{"field":"content","name":"userQue","nodeId":"start-node"}],"outputParams":[{"field":"text","name":"回复内容","type":"string"}],"height":166,"width":332}},{"id":"168290871702028288","type":"llm","x":692,"y":521,"properties":{"text":"LLM","options":{"model":{"modeId":"1890232564262739969","params":{"model":"OpenAI","temperature":0.7}},"history":3,"messages":[{"role":"system","content":"# 角色:PMP知识专家\nPMP知识专家致力于项目管理知识的传播与应用,帮助项目经理提升技能和管理能力。\n\n## 目标:\n1. 为项目管理提供权威的知识支持。\n2. 帮助项目经理解决在项目管理中遇到的实际问题。\n\n## 技能:\n1. 精通项目管理的各项理论和工具。\n2. 熟悉PMP认证流程及考试内容。\n3. 能够进行项目风险评估与管理。\n\n## 工作流:\n1. 评估项目经理的需求与挑战,识别关键问题。\n2. 提供相关的项目管理知识、工具和最佳实践建议。\n3. 指导项目经理制定和实施有效的项目管理计划。\n\n## 输出格式:\n- 提供清晰的建议与解决方案,使用简洁明了的语言,适合项目经理理解和应用。\n\n## 限制:\n- 所有建议需基于现有的PMP知识体系,避免个人主观意见。\n- 不得提供未经验证的信息或数据,所有数据需标注来源,需核实的信息用[需核实]标记。"},{"role":"user","content":"{{question}}"}]},"inputParams":[{"field":"content","name":"question","nodeId":"start-node"}],"outputParams":[{"field":"text","name":"回复内容","type":"string"}],"height":166,"width":332}}],"edges":[{"id":"168290518604546048","type":"base-edge","sourceNodeId":"start-node","targetNodeId":"168290518600351744","sourceAnchorId":"start-node_output","targetAnchorId":"168290518600351744_input","pointsList":[{"x":466,"y":382},{"x":566,"y":382},{"x":427,"y":194},{"x":527,"y":194}]},{"id":"168290861245628416","type":"base-edge","sourceNodeId":"168290518600351744","targetNodeId":"168290861241434112","sourceAnchorId":"168290518600351744_output","targetAnchorId":"168290861241434112_input","pointsList":[{"x":859,"y":194},{"x":959,"y":194},{"x":915,"y":298},{"x":1015,"y":298}]},{"id":"168290871706222592","type":"base-edge","sourceNodeId":"start-node","targetNodeId":"168290871702028288","sourceAnchorId":"start-node_output","targetAnchorId":"168290871702028288_input","pointsList":[{"x":466,"y":382},{"x":566,"y":382},{"x":426,"y":469},{"x":526,"y":469}]},{"id":"168291272883011584","type":"base-edge","sourceNodeId":"168290871702028288","targetNodeId":"168290861241434112","sourceAnchorId":"168290871702028288_output","targetAnchorId":"168290861241434112_input","pointsList":[{"x":858,"y":469},{"x":958,"y":469},{"x":915,"y":298},{"x":1015,"y":298}]},{"id":"168292930635530240","type":"base-edge","sourceNodeId":"168290861241434112","targetNodeId":"168290315671535616","sourceAnchorId":"168290861241434112_output","targetAnchorId":"168290315671535616_input","pointsList":[{"x":1347,"y":298},{"x":1447,"y":298},{"x":1378,"y":333},{"x":1478,"y":333}]}]}', 'enable', '{"outputs":[{"field":"outputText","type":"string"}],"inputs":[{"field":"content","name":"用户问题","type":"string"},{"field":"history","name":"历史记录","type":"string[]"}]}'); -INSERT INTO "public"."airag_flow" VALUES ('1909856345692065793', 'jeecg', '2025-04-09 14:30:11', 'admin', '2025-05-28 16:39:13', 'A04', NULL, 'jeecg', 'JimuReport AI引擎', '', '', 'THEN( - start.tag(''start-node''), - SWITCH(switch.tag(''173365501230346240'')).to( - THEN( - llm.tag(''172956395755208704''), - end.tag(''172957153284259840'') - ).tag("172956395755208704"), - THEN( - llm.tag(''173365800833675264''), - end.tag(''173366253646540800'') - ).tag("173365800833675264"), - end.tag(''173366439085109248''), - THEN( - llm.tag(''175149164433014784''), - end.tag(''175153953988444160'') - ).tag("175149164433014784"), - THEN( - llm.tag(''175505963485245440''), - end.tag(''175506006644633600'') - ).tag("175505963485245440"), - THEN( - llm.tag(''175807569594040320''), - end.tag(''175808663015538688'') - ).tag("175807569594040320") - ).tag(''173365501230346240'') -).tag("start-node")', '{"nodes":[{"id":"start-node","type":"start","x":262,"y":458,"properties":{"text":"开始","remarks":"","options":{},"inputParams":[{"field":"content","name":"用户问题","type":"string","required":true},{"field":"history","name":"历史记录","type":"string[]","required":false},{"field":"ddl","name":"表结构","type":"string","required":true},{"field":"dbtype","name":"数据库类型","type":"string","required":true},{"field":"bizType","name":"业务类型","type":"string","required":true}],"outputParams":[],"height":92,"width":332}},{"id":"172956395755208704","type":"llm","x":1166,"y":160,"properties":{"text":"生成sql","options":{"model":{"modeId":"1890232564262739969","params":{"model":"OpenAI","temperature":0.7}},"history":3,"messages":[{"role":"system","content":"# 角色:SQL生成助手\n你是一个专业的SQL语句生成工具,能够根据用户提供的描述和表结构自动生成高效的SQL查询语句。\n\n## 目标:\n- 根据用户的描述生成准确的SQL查询语句。\n\n## 技能:\n1. 理解用户提供的需求和表结构。\n2. 自动构建符合SQL语法的查询语句。\n3. 优化生成的SQL以提高执行效率。\n\n## 工作流:\n1. 接收用户描述和表结构信息。\n2. 分析用户需求,确定所需的SQL操作类型(如查询、插入、更新、删除)。\n3. 根据分析结果生成相应的SQL语句。\n\n## 输出格式:\n- 生成的SQL语句应为标准格式,如:SELECT * FROM table_name ;\n- 将输出的SQL语句格式化\n- 只输出sql语句,不要额外解释,不要md语法,不要换行符,不要有sql注释。\n\n## 限制:\n\n- 除非明确说明,否则不要生成查询条件\n- 确保生成的SQL语句符合数据库的语法要求,确保sql能直接执行。\n- 确保字段和表能正确对应。"},{"role":"user","content":"表结构:\n{{ddl}}\n---------\n数据库类型:\n{{dbtype}}\n----------\n需求:\n{{question}}"}]},"inputParams":[{"field":"content","name":"question","nodeId":"start-node"},{"field":"ddl","name":"ddl","nodeId":"start-node"},{"field":"dbtype","name":"dbtype","nodeId":"start-node"}],"outputParams":[{"field":"text","name":"回复内容","type":"string"}],"height":180,"width":332}},{"id":"172957153284259840","type":"end","x":1643,"y":129,"properties":{"text":"结束","options":{"outputText":false,"outputContent":""},"inputParams":[],"outputParams":[{"field":"text","name":"sql","nodeId":"172956395755208704"}],"height":114,"width":332}},{"id":"173365501230346240","type":"switch","x":688,"y":536,"properties":{"text":"条件分支","options":{"if":[{"logic":"AND","conditions":[{"nodeId":"start-node","field":"bizType","operator":"EQUALS","value":"genSql"}],"next":"172956395755208704"},{"logic":"AND","conditions":[{"nodeId":"start-node","field":"bizType","operator":"EQUALS","value":"genJsonRows"}],"next":"173365800833675264"},{"logic":"AND","conditions":[{"nodeId":"start-node","field":"bizType","operator":"EQUALS","value":"chooseTables"}],"next":"175149164433014784"},{"logic":"AND","conditions":[{"nodeId":"start-node","field":"bizType","operator":"EQUALS","value":"genChart"}],"next":"175505963485245440"},{"logic":"AND","conditions":[{"nodeId":"start-node","field":"bizType","operator":"EQUALS","value":"intentCheck"}],"next":"175807569594040320"}],"else":{"next":"173366439085109248"}},"inputParams":[],"outputParams":[{"field":"index","name":"分支索引","type":"number"}],"height":222,"width":332}},{"id":"173365800833675264","type":"llm","x":1167,"y":368,"properties":{"text":"生成rows","options":{"model":{"modeId":"1890232564262739969","params":{"model":"OpenAI","temperature":0.7}},"history":3,"messages":[{"role":"system","content":"根据以下数据以及用户需求生成符合要求的表格数据结构。\n\n\n\n\n## 工作流程:\n\n\n\n\n1. 根据用户需求选择一个合适的数据集\n2. 根据数据集和需求,生成表格数据。\n2. 最终输出json\n\n\n\n\n## 数据集格式说明:\n```\n{\n \"code\": \"a\",\n \"title\": \"a\",\n \"isList\": \"1\",\n \"children\": [\n {\n \"title\": \"total_sales\",\n \"fieldText\": \"总销量\"\n },\n {\n \"title\": \"total_returns\",\n \"fieldText\": \"总退货数量\"\n }\n ]\n}\n```\n* code:数据集变量名\n* isList:为”1”表示集合,“0”表示对象\n* children:为字段列表,包含title(字段名)和fieldText(展示名)\n⸻\n## 表格数据结构说明:\n```\n{\n \"0\": { \"cells\": {} },\n \"1\": { \"cells\": {\n \"1\": { \"text\": \"#{a.total_sales}\" },\n \"2\": { \"text\": \"#{a.name}\" }\n }},\n \"len\": 200\n}\n```\n* 行号作为键\n* 每行下有 cells 对象,key 是列号\n* 每行以序号作为键\n* 每列下包含 text 为占位符,${} 用于对象,#{} 用于集合\n* 可包含 style 等附加样式信息\n⸻\n\n\n\n\n## 填充规则:\n1. 若 isList = 1(集合):\n * 第N行(如 \"0\")为字段标题:使用 children.fieldText 填充\n * 第N+1行(如 \"1\")为字段占位符:使用 `#{code.title}` 填充\n * 所有字段占位符占用一行,所有标题占用一行\n2. 若 isList = 0(对象):\n * 每字段占两列,低N列填字段标题,N+1列填占位符 `${code.title}`\n * 共两组:第一组在第n列,第二组在第N+2列\n\n\n\n\n⸻\n\n\n\n\n## 输出格式\n* 直接返回JSON数据,不要解释,不要md语法,不要换行符,不要有注释。\n* 确保输出的JSON格式正确,数据中不能包含注释和省略。\n\n\n\n\n\n\n\n\n## 特别注意\n- 字段的占位必须是`#{}`或`${}`,不能缺失大括号。\n- 用户描述的序号需要减一才是下标\n- 确保输出的json格式正确。\n- 只需要生成一套表格数据。"},{"role":"user","content":"用户数据集:\n{{ddl}}\n用户需求:\n{{question}}"}]},"inputParams":[{"field":"content","name":"question","nodeId":"start-node"},{"field":"ddl","name":"ddl","nodeId":"start-node"}],"outputParams":[{"field":"text","name":"回复内容","type":"string"}],"height":180,"width":332}},{"id":"173366253646540800","type":"end","x":1643,"y":336,"properties":{"text":"结束","options":{"outputText":false,"outputContent":""},"inputParams":[],"outputParams":[{"field":"text","name":"rows","nodeId":"173365800833675264"}],"height":114,"width":332}},{"id":"173366439085109248","type":"end","x":1158,"y":1209,"properties":{"text":"结束","options":{"outputText":true,"outputContent":"error:选择正确的业务类型"},"inputParams":[],"outputParams":[],"height":114,"width":332}},{"id":"175149164433014784","type":"llm","x":1164,"y":598,"properties":{"text":"选择表","options":{"model":{"modeId":"1890232564262739969","params":{"model":"OpenAI","temperature":0.7}},"history":2,"messages":[{"role":"system","content":"## 任务\n根据用户需求,从下方数据库表列表中选择所有关联的表名称。\n\n\n## 数据库表列表(格式:表名 | 注释)\n{{ddl}}\n\n## 输出规则\n1. 严格按JSON数组格式输出,例如:[\"order\"]。\n2. 仅包含表名称,无需注释。\n3. **禁止添加列表外的表**。\n4. 表的选择范围可以适当大一些。\n4. 无业务相关性时输出空数组:[]\n\n\n请回复纯JSON,不要包含其他内容。"},{"role":"user","content":"用户需求:{{question}}"}]},"inputParams":[{"field":"ddl","name":"ddl","nodeId":"start-node"},{"field":"content","name":"question","nodeId":"start-node"}],"outputParams":[{"field":"text","name":"回复内容","type":"string"}],"height":180,"width":332}},{"id":"175153953988444160","type":"end","x":1643,"y":564,"properties":{"text":"结束","options":{"outputText":false,"outputContent":""},"inputParams":[],"outputParams":[{"field":"text","name":"tables","nodeId":"175149164433014784"}],"height":114,"width":332}},{"id":"175505963485245440","type":"llm","x":1166,"y":802,"properties":{"text":"生成图表","options":{"model":{"modeId":"1890232564262739969","params":{"model":"OpenAI","temperature":0.7}},"history":3,"messages":[{"role":"system","content":"根据以下数据以及用户需求生成符合格式要求的图表数据。\n\n\n## 工作流程:\n\n\n1. 根据用户需求选择一个合适的数据集\n2. 根据数据集和需求,从图表列表中选择一个合适的图标类型。\n3. 组装最终输出的json\n\n\n⸻\n## 可选的图表如下(标识|描述):\n\n\n- 1维图表\n - bar.simple|普通柱形图\n - bar.background|带背景柱形图\n - bar.horizontal|横向柱形图\n - line.simple|普通折线图\n - line.area|面积堆积折线图\n - line.smooth|平滑曲线折线图\n - line.step|阶梯折线图\n - pie.simple|普通饼图\n - pie.doughnut|环状饼图\n - pie.rose|南丁格尔玫瑰饼图\n - scatter.simple|普通散点图\n - funnel.simple|普通漏斗图\n - funnel.pyramid|金字塔漏斗图\n - pictorial.spirits|普通象形图\n - map.scatter|点地图\n - gauge.simple|360°仪表盘\n - gauge.simple180|180°仪表盘\n- 2维\n - bar.multi|多数据对比柱形图\n - bar.negative|正负条形图\n - bar.stack|堆叠柱形图\n - bar.stack.horizontal|堆叠条形图\n - bar.multi.horizontal|多数据条形柱状图\n - line.multi|多数据对比折线图\n - mixed.linebar|普通折柱图\n - scatter.bubble|气泡散点图\n - radar.basic|普通雷达图\n - radar.custom|圆形雷达图\n⸻\n## 数据集格式说明:\n```\n{\n \"dbId\": \"1069915169263800320\",\n \"code\": \"a\",\n \"title\": \"a\",\n \"isList\": \"1\",\n \"type\": \"0\",\n \"children\": [\n {\n \"title\": \"total_sales\",\n \"fieldText\": \"total_sales\"\n },\n {\n \"title\": \"total_returns\",\n \"fieldText\": \"total_returns\"\n }\n ]\n}\n```\n* code:数据集变量名\n* isList:为”1”表示集合,“0”表示对象\n* children:为字段列表,包含title(字段名)和fieldText(展示名)\n* type:0|sql,1|api,2|code,3|json\n⸻\n## 输出json格式\n{\n \"dataType\": \"sql\",\n \"apiStatus\": \"0\",\n \"apiUrl\": \"\",\n \"dataId\": \"1069898455939633152\",\n \"axisX\": \"supplier_name\",\n \"axisY\": \"total_returns\",\n \"series\": \"material_name\",\n \"yText\": \"total_returns\",\n \"xText\": \"supplier_name\",\n \"dbCode\": \"a\",\n \"isCustomPropName\": false,\n \"chartType\": \"line.multi\",\n \"id\": \"0aGl4PUfbIfy8BMF\",\n \"run\": 1,\n \"title\": \"\",\n}\n* dataType:与数据集type对应(0|sql,1|api,2|code,3|json)\n* dataId:对应数据集dbId\n* dbCode:对应数据集的code\n* axisX:分类属性,从数据集字段中取值(fieldText)\n* axisY:值属性,从数据集字段中取值(fieldText)\n* series: 系列,从数据集字段中取值(fieldText)\n* xText:分类属性显示,从数据集字段中取值(title)\n* yText:值属性显示,从数据集字段中取值(title)\n* chartType:图表的标识\n* title:为这个图表起一个标题\n* isCustomPropName: 如果是api数据集,该值为true\n* apiStatus: 如果是api数据集则等于\"1\",否则\"0\"\n\n\n## 输出格式\n* 直接返回JSON数据,不要解释,不要md语法,不要换行符,不要有注释。\n* 确保输出的json格式正确完整。"},{"role":"user","content":"## 用户数据集:\n{{ddl}}\n## 用户需求:\n{{question}}"}]},"inputParams":[{"field":"ddl","name":"ddl","nodeId":"start-node"},{"field":"content","name":"question","nodeId":"start-node"}],"outputParams":[{"field":"text","name":"回复内容","type":"string"}],"height":180,"width":332}},{"id":"175506006644633600","type":"end","x":1643,"y":769,"properties":{"text":"结束","options":{"outputText":false,"outputContent":""},"inputParams":[],"outputParams":[{"field":"text","name":"chart","nodeId":"175505963485245440"}],"height":114,"width":332}},{"id":"175807569594040320","type":"llm","x":1166,"y":1018,"properties":{"text":"意图识别","options":{"model":{"modeId":"1890232564262739969","params":{"model":"OpenAI","temperature":0.7}},"history":3,"messages":[{"role":"system","content":"请根据用户需求与数据集设计,综合判断应执行的工作流步骤,并为每个步骤生成简洁明确的需求描述,同时选择最合适的数据集。\n---\n## 可选步骤(格式:标识 | 功能说明)\n- `genJsonRows` | 生成报表(可选)\n- `genChart` | 生成图表(可选)\n> **注意:** 至少选择一个步骤,亦可同时选择两者;图表的权重较低。\n---\n## 数据集格式\n```json\n{\n \"dbId\": \"1069915169263800320\",\n \"code\": \"a\",\n \"title\": \"a\",\n \"isList\": \"1\",\n \"type\": \"0\",\n \"children\": [\n {\n \"title\": \"total_sales\",\n \"fieldText\": \"total_sales\"\n },\n {\n \"title\": \"total_returns\",\n \"fieldText\": \"total_returns\"\n }\n ]\n}\n* code:数据集变量名\n* isList:为”1”表示集合,“0”表示对象\n* children:为字段列表,包含title(展示名)和fieldText(字段名)\n* type:0|sql,1|api,2|code,3|json\n⸻\n## 输出格式\n```\n步骤标识1|需求描述1|数据集code,步骤标识2|需求描述2|数据集code\n```\n* 各步骤之间用英文逗号,分隔\n* 不得添加额外说明,不要md语法,不要换行符,不要有注释。"},{"role":"user","content":"## 用户数据集:\n{{ddl}}\n## 用户需求:\n{{question}}"}]},"inputParams":[{"field":"content","name":"question","nodeId":"start-node"},{"field":"ddl","name":"ddl","nodeId":"start-node"}],"outputParams":[{"field":"text","name":"回复内容","type":"string"}],"height":180,"width":332}},{"id":"175808663015538688","type":"end","x":1643,"y":985,"properties":{"text":"结束","options":{"outputText":false,"outputContent":""},"inputParams":[],"outputParams":[{"field":"text","name":"intent","nodeId":"175807569594040320"}],"height":114,"width":332}}],"edges":[{"id":"172957153288454144","type":"base-edge","sourceNodeId":"172956395755208704","targetNodeId":"172957153284259840","sourceAnchorId":"172956395755208704_output","targetAnchorId":"172957153284259840_input","pointsList":[{"x":1332,"y":101},{"x":1432,"y":101},{"x":1377,"y":103},{"x":1477,"y":103}]},{"id":"173365501234540544","type":"base-edge","sourceNodeId":"start-node","targetNodeId":"173365501230346240","sourceAnchorId":"start-node_output","targetAnchorId":"173365501230346240_input","pointsList":[{"x":428,"y":443},{"x":528,"y":443},{"x":422,"y":456},{"x":522,"y":456}]},{"id":"173366253650735104","type":"base-edge","sourceNodeId":"173365800833675264","targetNodeId":"173366253646540800","sourceAnchorId":"173365800833675264_output","targetAnchorId":"173366253646540800_input","pointsList":[{"x":1333,"y":309},{"x":1433,"y":309},{"x":1377,"y":310},{"x":1477,"y":310}]},{"id":"173372961415852032","type":"base-edge","sourceNodeId":"173365501230346240","targetNodeId":"172956395755208704","sourceAnchorId":"173365501230346240_source_if","targetAnchorId":"172956395755208704_input","pointsList":[{"x":854,"y":490},{"x":954,"y":490},{"x":900,"y":101},{"x":1000,"y":101}]},{"id":"173372967073968128","type":"base-edge","sourceNodeId":"173365501230346240","targetNodeId":"173365800833675264","sourceAnchorId":"173365501230346240_case_2","targetAnchorId":"173365800833675264_input","pointsList":[{"x":854,"y":516},{"x":954,"y":516},{"x":901,"y":309},{"x":1001,"y":309}]},{"id":"173372974988619776","type":"base-edge","sourceNodeId":"173365501230346240","targetNodeId":"173366439085109248","sourceAnchorId":"173365501230346240_source_else","targetAnchorId":"173366439085109248_input","pointsList":[{"x":854,"y":620},{"x":954,"y":620},{"x":892,"y":1183},{"x":992,"y":1183}]},{"id":"175149164437209088","type":"base-edge","sourceNodeId":"173365501230346240","targetNodeId":"175149164433014784","sourceAnchorId":"173365501230346240_case_3","targetAnchorId":"175149164433014784_input","pointsList":[{"x":854,"y":542},{"x":954,"y":542},{"x":898,"y":539},{"x":998,"y":539}]},{"id":"175153997969915904","type":"base-edge","sourceNodeId":"175149164433014784","targetNodeId":"175153953988444160","sourceAnchorId":"175149164433014784_output","targetAnchorId":"175153953988444160_input","pointsList":[{"x":1330,"y":539},{"x":1430,"y":539},{"x":1377,"y":538},{"x":1477,"y":538}]},{"id":"175505963489439744","type":"base-edge","sourceNodeId":"173365501230346240","targetNodeId":"175505963485245440","sourceAnchorId":"173365501230346240_case_4","targetAnchorId":"175505963485245440_input","pointsList":[{"x":854,"y":568},{"x":954,"y":568},{"x":900,"y":743},{"x":1000,"y":743}]},{"id":"175506006648827904","type":"base-edge","sourceNodeId":"175505963485245440","targetNodeId":"175506006644633600","sourceAnchorId":"175505963485245440_output","targetAnchorId":"175506006644633600_input","pointsList":[{"x":1332,"y":743},{"x":1432,"y":743},{"x":1377,"y":743},{"x":1477,"y":743}]},{"id":"175807569598234624","type":"base-edge","sourceNodeId":"173365501230346240","targetNodeId":"175807569594040320","sourceAnchorId":"173365501230346240_case_5","targetAnchorId":"175807569594040320_input","pointsList":[{"x":854,"y":594},{"x":954,"y":594},{"x":900,"y":959},{"x":1000,"y":959}]},{"id":"175808663019732992","type":"base-edge","sourceNodeId":"175807569594040320","targetNodeId":"175808663015538688","sourceAnchorId":"175807569594040320_output","targetAnchorId":"175808663015538688_input","pointsList":[{"x":1332,"y":959},{"x":1432,"y":959},{"x":1377,"y":959},{"x":1477,"y":959}]}]}', 'release', '{"outputs":[{"field":"text","name":"intent","nodeId":"175807569594040320"},{"field":"outputText","type":"string"}],"inputs":[{"field":"content","name":"用户问题","required":true,"type":"string"},{"field":"history","name":"历史记录","required":false,"type":"string[]"},{"field":"ddl","name":"表结构","required":true,"type":"string"},{"field":"dbtype","name":"数据库类型","required":true,"type":"string"},{"field":"bizType","name":"业务类型","required":true,"type":"string"}]}'); -INSERT INTO "public"."airag_flow" VALUES ('1917103567932604417', 'jeecg', '2025-04-29 14:28:03', 'admin', '2025-06-26 10:47:11', 'A04', NULL, 'jeecg', '示例_数据查询引擎', '', '', 'THEN( - start.tag(''start-node''), - enhanceJava.tag(''180204885804785664''), - llm.tag(''180211780498169856''), - end.tag(''180204420713758720'') -).tag("start-node")', '{"nodes":[{"id":"start-node","type":"start","x":300,"y":376,"properties":{"text":"开始","remarks":"","options":{},"inputParams":[{"field":"content","name":"用户问题","type":"string","required":false},{"field":"history","name":"历史记录","type":"string[]","required":false},{"field":"pageNo","name":"页码","type":"number","required":false},{"field":"pageSize","name":"每页数量","type":"number","required":false},{"field":"bizData","name":"文件路径","type":"string","required":false}],"outputParams":[],"height":92,"width":332}},{"id":"180204420713758720","type":"end","x":1648,"y":398,"properties":{"text":"结束","options":{"outputText":true,"outputContent":"{{res}}"},"inputParams":[],"outputParams":[{"field":"text","name":"res","nodeId":"180211780498169856"}],"height":136,"width":332}},{"id":"180204885804785664","type":"enhanceJava","x":747,"y":329,"properties":{"text":"Java 增强","options":{"enhance":{"type":"spring","path":"jimuDataReader"}},"inputParams":[{"field":"bizData","name":"bizData","nodeId":"start-node"}],"outputParams":[{"field":"datas","name":"返回结果","type":"object[]","required":false},{"field":"fields","name":"字段列表","type":"string[]","required":false}],"height":158,"width":332}},{"id":"180211780498169856","type":"llm","x":1229,"y":419,"properties":{"text":"LLM","options":{"model":{"modeId":"1890232564262739969","params":{"model":"OpenAI","temperature":0.7}},"history":3,"messages":[{"role":"system","content":"将以下数据整理成目标格式输出\n## 工作流程:\n1. 读取用户的数据\n3. 组装最终输出的json\n⸻\n## 数据示例:data\n```\n{{data}}\n```\n## 数据示例:fields\n```\n{{fields}}\n```\n⸻\n## 输出json格式\n{\n  \"data\": [\n    {\n      \"amount\": \"100\",\n      \"month\": \"1\",\n      \"areaname\": \"华北\",\n      \"year\": \"2020\",\n      \"price\": \"5\",\n      \"dept\": \"河北\",\n      \"settleamount\": \"100\"\n    },\n    {\n      \"amount\": \"200\",\n      \"month\": \"2\",\n      \"areaname\": \"华北\",\n      \"year\": \"2020\",\n      \"price\": \"5\",\n      \"dept\": \"河北\",\n      \"settleamount\": \"200\"\n    },\n  ],\n  \"total\": 100,\n  \"count\": 100\n}\n* total: 分页数,对应数据的总分页数\n* count: 数据总数,对应数据的总数\n\n\n## 输出格式\n* 直接返回JSON数据,不要解释,不要md语法,不要换行符,不要有注释。\n* 统一将key转换成英文,下划线分隔\n* 确保输出的json格式正确完整。"},{"role":"user","content":"将数据转换为目标格式"}]},"inputParams":[{"field":"datas","name":"data","nodeId":"180204885804785664"},{"field":"fields","name":"fileds","nodeId":"180204885804785664"}],"outputParams":[{"field":"text","name":"回复内容","type":"string"}],"height":180,"width":332}}],"edges":[{"id":"180211805085179904","type":"base-edge","sourceNodeId":"180211780498169856","targetNodeId":"180204420713758720","sourceAnchorId":"180211780498169856_output","targetAnchorId":"180204420713758720_input","pointsList":[{"x":1395,"y":360},{"x":1495,"y":360},{"x":1382,"y":361},{"x":1482,"y":361}]},{"id":"180228761381183488","type":"base-edge","sourceNodeId":"start-node","targetNodeId":"180204885804785664","sourceAnchorId":"start-node_output","targetAnchorId":"180204885804785664_input","pointsList":[{"x":466,"y":361},{"x":566,"y":361},{"x":481,"y":281},{"x":581,"y":281}]},{"id":"180511280701620224","type":"base-edge","sourceNodeId":"180204885804785664","targetNodeId":"180211780498169856","sourceAnchorId":"180204885804785664_output","targetAnchorId":"180211780498169856_input","pointsList":[{"x":913,"y":281},{"x":1013,"y":281},{"x":963,"y":360},{"x":1063,"y":360}]}]}', 'enable', '{"outputs":[{"field":"outputText","type":"string"}],"inputs":[{"field":"content","name":"用户问题","required":false,"type":"string"},{"field":"history","name":"历史记录","required":false,"type":"string[]"},{"field":"pageNo","name":"页码","required":false,"type":"number"},{"field":"pageSize","name":"每页数量","required":false,"type":"number"},{"field":"bizData","name":"文件路径","required":false,"type":"string"}]}'); - --- ---------------------------- --- Table structure for airag_knowledge --- ---------------------------- -DROP TABLE IF EXISTS "public"."airag_knowledge"; -CREATE TABLE "public"."airag_knowledge" ( - "id" varchar(36) COLLATE "pg_catalog"."default" NOT NULL, - "create_by" varchar(50) COLLATE "pg_catalog"."default", - "create_time" timestamp(6), - "update_by" varchar(50) COLLATE "pg_catalog"."default", - "update_time" timestamp(6), - "sys_org_code" varchar(64) COLLATE "pg_catalog"."default", - "tenant_id" varchar(32) COLLATE "pg_catalog"."default", - "name" varchar(100) COLLATE "pg_catalog"."default", - "descr" varchar(500) COLLATE "pg_catalog"."default", - "embed_id" varchar(32) COLLATE "pg_catalog"."default", - "status" varchar(32) COLLATE "pg_catalog"."default" -)TABLESPACE "stas" -; -COMMENT ON COLUMN "public"."airag_knowledge"."create_by" IS '创建人'; -COMMENT ON COLUMN "public"."airag_knowledge"."create_time" IS '创建日期'; -COMMENT ON COLUMN "public"."airag_knowledge"."update_by" IS '更新人'; -COMMENT ON COLUMN "public"."airag_knowledge"."update_time" IS '更新日期'; -COMMENT ON COLUMN "public"."airag_knowledge"."sys_org_code" IS '所属部门'; -COMMENT ON COLUMN "public"."airag_knowledge"."tenant_id" IS '租户id'; -COMMENT ON COLUMN "public"."airag_knowledge"."name" IS '知识库名称'; -COMMENT ON COLUMN "public"."airag_knowledge"."descr" IS '描述'; -COMMENT ON COLUMN "public"."airag_knowledge"."embed_id" IS '向量模型id'; -COMMENT ON COLUMN "public"."airag_knowledge"."status" IS '状态'; - --- ---------------------------- --- Records of airag_knowledge --- ---------------------------- -INSERT INTO "public"."airag_knowledge" VALUES ('1897212906878009346', 'jeecg', '2025-03-05 17:09:40', NULL, NULL, 'A04', NULL, '积木报表文档', '积木报表文档', '1891459707122499586', 'enable'); -INSERT INTO "public"."airag_knowledge" VALUES ('1897926563148648449', 'jeecg', '2025-03-07 16:25:29', 'jeecg', '2025-03-11 10:04:25', 'A04', NULL, 'JeecgBoot文档', 'JeecgBoot文档', '1891459707122499586', 'enable'); -INSERT INTO "public"."airag_knowledge" VALUES ('1905186756806918146', 'jeecg', '2025-03-27 17:14:54', NULL, NULL, 'A04', NULL, 'PMP', NULL, '1891459707122499586', 'enable'); - --- ---------------------------- --- Table structure for airag_knowledge_doc --- ---------------------------- -DROP TABLE IF EXISTS "public"."airag_knowledge_doc"; -CREATE TABLE "public"."airag_knowledge_doc" ( - "id" varchar(36) COLLATE "pg_catalog"."default" NOT NULL, - "create_by" varchar(50) COLLATE "pg_catalog"."default", - "create_time" timestamp(6), - "update_by" varchar(50) COLLATE "pg_catalog"."default", - "update_time" timestamp(6), - "sys_org_code" varchar(64) COLLATE "pg_catalog"."default", - "tenant_id" varchar(32) COLLATE "pg_catalog"."default", - "knowledge_id" varchar(32) COLLATE "pg_catalog"."default", - "title" varchar(100) COLLATE "pg_catalog"."default", - "type" varchar(32) COLLATE "pg_catalog"."default", - "content" text COLLATE "pg_catalog"."default", - "status" varchar(32) COLLATE "pg_catalog"."default", - "metadata" text COLLATE "pg_catalog"."default" -)TABLESPACE "stas" -; -COMMENT ON COLUMN "public"."airag_knowledge_doc"."create_by" IS '创建人'; -COMMENT ON COLUMN "public"."airag_knowledge_doc"."create_time" IS '创建日期'; -COMMENT ON COLUMN "public"."airag_knowledge_doc"."update_by" IS '更新人'; -COMMENT ON COLUMN "public"."airag_knowledge_doc"."update_time" IS '更新日期'; -COMMENT ON COLUMN "public"."airag_knowledge_doc"."sys_org_code" IS '所属部门'; -COMMENT ON COLUMN "public"."airag_knowledge_doc"."tenant_id" IS '租户id'; -COMMENT ON COLUMN "public"."airag_knowledge_doc"."knowledge_id" IS '知识库id'; -COMMENT ON COLUMN "public"."airag_knowledge_doc"."title" IS '标题'; -COMMENT ON COLUMN "public"."airag_knowledge_doc"."type" IS '类型'; -COMMENT ON COLUMN "public"."airag_knowledge_doc"."content" IS '内容'; -COMMENT ON COLUMN "public"."airag_knowledge_doc"."status" IS '状态'; -COMMENT ON COLUMN "public"."airag_knowledge_doc"."metadata" IS '元数据'; - --- ---------------------------- --- Records of airag_knowledge_doc --- ---------------------------- -INSERT INTO "public"."airag_knowledge_doc" VALUES ('1897213100944261121', 'jeecg', '2025-03-05 17:10:26', 'admin', '2025-04-02 23:53:30', 'A04', NULL, '1897212906878009346', 'qa', 'text', '常见问题 -遇到问题请先升级至最新版,仍未解决可向团队反馈 点击反馈问题 - -1. 积木报表是免费吗? -回答: 积木报表代码不开源,但是功能可以免费使用。 - -大屏支持离线安装,积木BI的推出,可以永久免费使用。 -针对公司用户我们提供企业版,免费版本也会持续发布。 -2. 功能操作提示 没有权限,请联系管理员分配权限! -回答:这是因为报表针对敏感接口加了角色和权限控制,需要进行内置角色权限集成,具体见文档权限集成配置(重要) - -3. 积木报表怎么独立运行? -Docker方式启动 -集成Demo启动 -4. 启动报mongo错误 -启动报错: -org.mongodb.driver.cluster : Exception in monitor thread while connecting to -server localhost:27017 while accessing MongoDB with Java - -解决方案: 排除mongo启动默认加载 MongoAutoConfiguration -@SpringBootApplication -@EnableAutoConfiguration(exclude={MongoAutoConfiguration.class}) - -5. 报表配置JeecgBoot菜单 -{{ window._CONFIG[''domianURL''] }}/jmreport/list?token=${token} - -参数说明 - -{{ window._CONFIG[''domianURL''] }} :后台项目访问地址 -${token} :登录token用于权限控制 -前端组件:layouts/IframePageView 菜单配置截图 - - -6. 积木报表数据源支持哪些数据库? -数据库 支持 -MySQL √ -Oracle、Oracle9i √ -SqlServer、SqlServer2012 √ -PostgreSQL √ -DB2、Informix √ -MariaDB √ -SQLite、Hsqldb、Derby、H2 √ -达梦、人大金仓、神通 √ -华为高斯、虚谷、瀚高数据库、 TDengine 涛思数据 √ -阿里云PolarDB、PPAS、HerdDB √ -Hive、HBase、CouchBase √ -导入Excel、csv、json文件数据集 √ -sqllite、TiDB、Doris、clickhouse、 MongoDB-BI √ -elasticsearch、mogodb √ -积木平台暂时只提供mysql脚本,其他数据库请自转 Navicat工具mysql转库oracle步骤 -7. API数据源怎样实现条件查询? -具体请看查询条件设置 - -8.报表集成到自己的springboot项目 -请求参数如果后台接收的实体属性里没有,后台报错:not marked as ignorable - - - -解决方法:增加application.yml的配置jackson.fail_on_unknown_properties: false - - - -9.积木报表SQL数据集中sql语句加上limit在数据预览中报错? -sql语句写法: - - 报错截图: - - - -原因是sql语句末尾加上了limit,我们在后台已经默认分页,故不用在末尾加上limit,否则会报错 - -10.如何去掉打印页面的页眉、页脚? -在打印弹窗页面,点击“更多设置 ->选项”,去掉“页眉和页脚”前边的对勾,打印界面就不显示页眉和页脚了; - - - -11.报表能否集成到vue项目中? -不能集成到前端项目,因为积木报表提供的JAVA依赖,只能集成到JAVA项目中。 - -12.sql或者api解析失败的问题 -sql或者api必须有查询结果才行,不然无法解析字段 相关issue #2305 - -13.怎样自定义打印页面设置? -打印区域除了可以手动选择“A4、A3...”,还可以根据自己需求,自定义大小。 - -操作参考打印区域设置 - -14.预览时,列表数组在预览界面怎么只显示一条数据? -(1)检查在数据集解析的时候 ,是否勾选“是否列表”; - - - -(2)设计界面拖过来的数据字段,是否为#开头; - - - -15.横向动态列分组怎么设计? -操作参考文档 - -16.预览页面多内容,但设计界面没有,怎么处理? -错误样式图: - - - -解决方案: 选中多出来的地方(可多选一些地方),右键点击:删除数据,就没有了; - - - -17.积木报表SQL数据集中数据预览为什么只显示10条数据? -为了避免大数据问题,故只取前10条数据进行展示 - - - -18. 积木报表数据源怎么配置? -添加数据源文档 - -19. 怎样把报表集成到JeecgBoot的菜单中? -备注:大屏和报表的操作是一样的; - -(1)复制报表访问链接 (2)在系统管理菜单管理进行配置 (3)点击新增按钮填写信息 - -注意: -a) 前端组件必须按照格式填写 layouts/IframePageView *用window._CONFIG[''domianURL'']代替IP地址、端口号和项目名称,并用{{}}包起来; -b)末尾必须携带参数,如(?sex); -c) 是否为路由菜单:是; - - - - -(4)角色授权 路径:在系统管理->角色授权找到自己对应的角色,鼠标放到更多->授权; - -勾选刚才创建的菜单 -刷新页面即可看见点击菜单 - - -20. 数据集配置点击确认会报错 -https://github.com/jeecgboot/JimuReport/issues/439 -SQL state \[null\]; error code \[0\]; Error; nested exception is java.sql.SQLException: Error - -那么就查看mysql数据库连接驱动是版本是5.1.47,如果是那么请将驱动升级版本或降低版本,如: - - - mysql - mysql-connector-java - 5.1.46 - true - runtime - - -22.如何把SQL数据集拼接的查询条件加到数据源语法的group by前面 -参考报表参数设置 - -23.预览页面与设计页面不一致,在预览时出现空白行 -检查数据集是多条数据的集合,还是单条数据的对象;如果是集合使用#,如果是对象则需要使用$ 如果页面多行使用#,则会被当做多个集合,中间自动填充空白行。 - - - -24.为什么配置参数后勾选查询后,下拉单选变成输入框 -参数不是字段,无法进行配置后就可以下拉单选;可配置字典code实现下拉 - -25.一页展示一条数据,进行循环打印 -可将整页作为循环块,设置为循环块 参考文档:点击查看 - -26.mysql数据库类型tyint被转换成了true和false -需要在维护界面,数据源地址出拼接上 - -tinyInt1isBit=false - - - -27.数据库里图片字段为图片链接,如何展示在报表中 -添加数据源取出图片字段,将单元格类型设置为图片即可,如下图: - - - -28. 达梦数据库提示表名不存在 - 因为达梦数据库如果不是当前用户名登录的(如SYSDBA),访问不同名的(除了SYSDBA)外,均需要模式名.表名,那么需要你如下图操作,在同名下新建表 - - - -29. 积木官网添加数据源 -积木官网添加数据源需使用远程地址,不可使用localhost。 - -32.字典code中直接输入sql语句,下拉框单选项乱序 -解决方案:可以填写 order by 进行自定义排序,如 - -select dict_code as value,dict_name as name from jimu_dict order by create_time - -注意:如果在sqlserver下需要加上top 10(10代表多少条),不然会报错,如 - -select top 10 dict_code as value,dict_name as name from jimu_dict order by create_time - -33.导出excel报错版本不匹配,java.lang.NoSuchMethodError -将poi版本升级到4.1.2即可解决 - -34. 如何增加列数 -列索引数量可根据需要修改 参考文档:点击查看 - - - -35.sql数据集下拉选择数据源,下方列表显示空白,但是有数据 -目前为了统一规则后台返回的数据的对象均为小写(name),如果规则不匹配,请改成小写 - - - -38.预览界面查询栏如何设置默认展开? -解决方案:设置JS增强 - - - -function init(){ - this.queryPanel = ''1''; -} - -39.sqlServer存储过程中有临时表获取不到数据 -可以通过set nocount on来解决 - - 相关issue: https://github.com/jeecgboot/JimuReport/issues/726 - -40.若依集成积木报表1.4.4+ 新建报表报错 -freemarker.core.InvalidReferenceException - -升级fastjson到1.2.78 - - - com.alibaba - fastjson - 1.2.78 - - -相关issue:issue - -41.模板示例中条件查询预览失败 -没有对应的表 - -42.打印的时候,字体加粗效果丢失 -宋体打印不支持加粗,换成默认的字体 - -43.sqlserver提示驱动不存在 -在pom文件中添加sqlserver依赖 - - - com.microsoft.sqlserver - sqljdbc4 - 4.0 - true - runtime - - -44.sqlserver下使用CONVERT函数注意事项 -不可与order by一起使用 -CONVERT函数需指定别名 如:CONVERT(varchar(7),CREATE_TIME) as CREATE_TIME -45.能否设置隐藏的查询条件 -问题描述: 同一报表,希望不同的人看到不同的数据,目前可以通过JS增强设置初始值,但又不想让用户修改,能否提供设置查询条件隐藏的功能,这样便于数据权限的控制。 分析说明:此问题目的在于不同的人看不同的数据,提问人想设置查询条件默认值且不允许修改 - -1.不同的人看不同的数据:可以使用系统变量 参考文档 如: - -sql数据集:select * from demo where create_by = ''#{sysUserCode}'' -api数据集: http://xxx.xxx.xxx/query?create_by=#{sysUserCode} - -注意:此处的`sysUserCode`,是系统默认设置的登录人的账号,如果重写getUserInfo方法则需要重新设置,文档中的代码,只适用于jeecg-boot不可照搬,仅供参考【推荐此方案】。 - - -2.想设置查询条件默认值且不允许修改: js增强可以设置查询条件的默认值,也可以往查询参数对象里设置一个自定义的参数值,这个是支持的。但是,在配置数据集的时候,下方tab报表字段明细和报表参数中,会配置一些字段的信息,如果js增强定义的参数名不在这两个tab下,那么无效!所以做法如下: -定义数据集(不需要将参数name设置为查询条件): -sql数据集:select * from demo where create_by = ''${name}'' -api数据集: http://xxx.xxx.xxx/query?create_by=${name} - -定义js增强,设置name的值: -function init(){ - this.queryInfo[''name''] = ''scott'' -} - -46. 日期默认查询,无法设置默认值为上月 -问题描述: 使用dateStr 默认取上月实现不了,用=concat(dateStr(''yyyy''),''-'', dateStr(''MM'', -1))返回2021-9,不是2021-09,少了一位。 建议实现=dateStr(''yyyy-MM'',-1) 返回 2021-09,而不是使用天数计算偏移量。 -解决方案: 参考文档 中的升级功能 - -47. 打印多出一页空白纸张 -解决方案: 打印导出,空白行和没有行是有区别的,界面上都是空白没区别,但是实际数据存储,空白行会占位的。 -查看控制台打印的数据:你的rows都多达90多行了,说明是之前你设计的很多历史数据没有删除行,导致多出很多空白页。 - - - -48. mongodb用法 -1). 以授权的方式启动Mongo,给使用的数据库添加用户 - -切换数据库 use test - -创建用户 db.createUser({user: "root", pwd: "123456", roles: \[{ role: "dbOwner", db: "test" }\]}) - -参考博客:https://www.cnblogs.com/jacksoft/p/6916137.html - -2). mongodb-driver-sync 驱动集成用法 参考博客: https://blog.csdn.net/nyzzht123/article/details/107936552 https://www.jianshu.com/p/5186fb5a1292 - -49、出现jsqlparser不兼容问题 -如果出现jsqlparser不兼容问题,请这么引用 - - org.jeecgframework.jimureport - jimureport-spring-boot-starter - {版本号} - - - minidao-spring-boot-starter - org.jeecgframework - - - - - org.jeecgframework - minidao-spring-boot-starter - 1.8.8 - - -50、关于积木报表在开发、生产环境增量同步https://github.com/jeecgboot/JimuReport/issues/1928 -51、数据库字段为关键词,字段作为查询条件报错 -报错信息:发现mysql下关键词字段"year_month"缺少"`" - -SELECT COUNT(1) total FROM ( select * from (select `year_month`,name,age from `demo`) jeecg_rp_temp where year_month=? ) temp_count - - -解决方案:关键词字段请用as重命名一下 - - - -52、依赖redisson后编辑字典、查询字典报错: -报错信息: - -java.lang.IllegalArgumentException: Cannot find cache named ''jmreport:cache:dict'' for Builder - -解决方法:配置文件增加: - -spring: - cache: - type: redis - -53、未登录的情况下导出excel和pdf报错 -解决方案:在SpringSecurityConfig页面排除导出excel和导出pdf的请求地址,其他同理 - - - - .antMatchers("/jmreport/exportPdfStream", "/jmreport/exportAllExcelStream")', 'building', NULL); -INSERT INTO "public"."airag_knowledge_doc" VALUES ('1897926864815575042', 'jeecg', '2025-03-07 16:26:41', 'jeecg', '2025-03-10 17:28:33', 'A04', NULL, '1897926563148648449', 'index', 'file', ' -# 项目介绍 - - - `JeecgBoot` 是一款基于代码生成器的`低代码开发平台` 拥有零代码能力!采用前后端分离架构:SpringBoot2.x,Ant Design&Vue,Mybatis-plus,Shiro,JWT。强大的代码生成器让前后端代码一键生成,无需写任何代码! JeecgBoot引领新的开发模式(Online Coding模式-> 代码生成器模式-> 手工MERGE智能开发), 帮助解决Java项目70%的重复工作,让开发更多关注业务逻辑。既能快速提高开发效率,帮助公司节省成本,同时又不失灵活性!JeecgBoot还独创在线开发模式(No-Code概念):在线表单配置(表单设计器)、移动配置能力、工作流配置(在线设计流程)、报表配置能力、在线图表配置、插件能力(可插拔)等等! - - `JeecgBoot在提高UI能力`的同时,降低了前后分离的开发成本,JeecgBoot还独创在线开发模式(No-Code概念),一系列在线智能开发:在线配置表单、在线配置报表、在线图表设计、在线设计流程等等。 - - ` JEECG宗旨是: `简单功能由Online Coding配置实现(在线配置表单、在线配置报表、在线图表设计、在线设计流程、在线设计表单),复杂功能由代码生成器生成进行手工Merge,既保证了智能又兼顾了灵活; - - 业务流程采用工作流来实现、扩展出任务接口,供开发编写业务逻辑,表单提供多种解决方案: 表单设计器、online配置表单、编码表单。同时实现了流程与表单的分离设计(松耦合)、并支持任务节点灵活配置,既保证了公司流程的保密性,又减少了开发人员的工作量。 - - -## 技术支持 - -* 新手指南: [快速入门](http://www.jeecg.com/doc/quickstart) | [常见问题 ](http://www.jeecg.com/doc/qa) | [版本日志](http://jeecg.com/doc/log) -* 视频教程:[ JeecgBoot v3.7 新版视频教程](http://jeecg.com/doc/video) -* QQ交流群:⑩716488839、⑨808791225(满)、其他(满) -* 在线演示 : [系统演示](http://boot3.jeecg.com) | [APP演示](http://app.jeecg.com) - - -源码下载 ------------------------------------ - -- https://github.com/jeecgboot/jeecg-boot - - - -## 技术架构 ------------------------------------ - -#### 后端 - -- IDE建议: IDEA (必须安装lombok插件 ) -- 语言:Java 8+ (支持17) -- 依赖管理:Maven -- 基础框架:Spring Boot 2.7.18 -- 微服务框架: Spring Cloud Alibaba 2021.0.1.0 -- 持久层框架:MybatisPlus 3.5.3.2 -- 报表工具: JimuReport 1.7.6 -- 安全框架:Apache Shiro 1.12.0,Jwt 3.11.0 -- 微服务技术栈:Spring Cloud Alibaba、Nacos、Gateway、Sentinel、Skywalking -- 数据库连接池:阿里巴巴Druid 1.1.22 -- 日志打印:logback -- 缓存:Redis -- 其他:autopoi, fastjson,poi,Swagger-ui,quartz, lombok(简化代码)等。 -- 默认数据库脚本:MySQL5.7+ -- [其他数据库,需要自己转](https://my.oschina.net/jeecg/blog/4905722) - - -#### 前端 - -- 前端IDE建议:WebStorm、Vscode -- 采用 Vue3.0+TypeScript+Vite+Ant-Design-Vue等新技术方案,包括二次封装组件、utils、hooks、动态菜单、权限校验、按钮级别权限控制等功能 -- 最新技术栈:Vue3.0 + TypeScript + Vite5 + ant-design-vue4 + pinia + echarts + unocss + vxe-table + qiankun + es6 -- 依赖管理:node、npm、pnpm - - - -#### 支持库 - -| 数据库 | 支持 | -| --- | --- | -| MySQL | √ | -| Oracle11g | √ | -| Sqlserver2017 | √ | -| PostgreSQL | √ | -| MariaDB | √ | -| 达梦 | √ | -| 人大金仓 | √ | - - - -## 微服务解决方案 - - -- 1、服务注册和发现 Nacos √ -- 2、统一配置中心 Nacos √ -- 3、路由网关 gateway(三种加载方式) √ -- 4、分布式 http feign √ -- 5、熔断降级限流 Sentinel √ -- 6、分布式文件 Minio、阿里OSS √ -- 7、统一权限控制 JWT + Shiro √ -- 8、服务监控 SpringBootAdmin√ -- 9、链路跟踪 Skywalking [参考文档](/java/springcloud/super/skywarking) -- 10、消息中间件 RabbitMQ √ -- 11、分布式任务 xxl-job √ -- 12、分布式事务 Seata -- 13、轻量分布式日志 Loki+grafana套件 -- 14、支持 docker-compose、k8s、jenkins -- 15、CAS 单点登录 √ -- 16、路由限流 √ - - -### 微服务架构图 -![微服务架构图](https://jeecgos.oss-cn-beijing.aliyuncs.com/files/jeecgboot_springcloud2022.png "在这里输入图片标题") - - - - - -## 系统架构图 - -![](https://upload.jeecg.com/jeecg/help/jeecgback/images/screenshot_1662547398792.png) -***** - - -## 系统截图 - -### PC端 - -![](https://upload.jeecg.com/jeecg/help/jeecgback/topwrite/assets/image_1687778397612.png) - -![](https://upload.jeecg.com/jeecg/help/jeecgback/topwrite/assets/image_1687778435846.png) - -![](https://upload.jeecg.com/jeecg/help/jeecgback/topwrite/assets/image_1687778476447.png) - -![](https://upload.jeecg.com/jeecg/help/jeecgback/topwrite/assets/image_1687778512836.png) - -![](https://upload.jeecg.com/jeecg/help/jeecgback/topwrite/assets/image_1687778582144.png) - -### 在线接口文档 - -![](https://upload.jeecg.com/jeecg/help/jeecgback/topwrite/assets/image_1687778702243.png) - -![](https://upload.jeecg.com/jeecg/help/jeecgback/topwrite/assets/image_1687778737438.png) - - -### 报表 - -![](https://upload.jeecg.com/jeecg/help/jeecgback/topwrite/assets/image_1687778780458.png) - -![](https://upload.jeecg.com/jeecg/help/jeecgback/topwrite/assets/up-fa52b44445db281c51d3f267dce7450d21b.gif) - -![](https://upload.jeecg.com/jeecg/help/jeecgback/topwrite/assets/image_1687779705768.png) - -![](https://upload.jeecg.com/jeecg/help/jeecgback/topwrite/assets/image_1687779725144.png) - -### 流程 - -![](https://upload.jeecg.com/jeecg/help/jeecgback/topwrite/assets/image_1687779807541.png) - -![](https://upload.jeecg.com/jeecg/help/jeecgback/topwrite/assets/image_1687779857971.png) - -![](/static/jimuImages/image_1687779966442.png) - -![](https://upload.jeecg.com/jeecg/help/jeecgback/topwrite/assets/image_1687780016598.png) - - -### 手机端 - -![](https://upload.jeecg.com/jeecg/help/jeecgback/topwrite/assets/image_1687780240854.png) - -![](https://upload.jeecg.com/jeecg/help/jeecgback/topwrite/assets/image_1687780264274.png) - -### PAD端 - -![](https://upload.jeecg.com/jeecg/help/jeecgback/topwrite/assets/image_1687780285230.png) - -![](https://upload.jeecg.com/jeecg/help/jeecgback/topwrite/assets/image_1687780328101.png) - -![](https://upload.jeecg.com/jeecg/help/jeecgback/topwrite/assets/image_1687780342778.png) - -![](https://upload.jeecg.com/jeecg/help/jeecgback/topwrite/assets/image_1687780373126.png) - - - - - - - -', 'complete', '{"filePath":"temp/index_1741335996542.md"}'); -INSERT INTO "public"."airag_knowledge_doc" VALUES ('1897926933086261249', 'jeecg', '2025-03-07 16:26:57', 'jeecg', '2025-03-10 17:28:42', 'A04', NULL, '1897926563148648449', 'qa', 'file', '1.菜单的这些配置是什么意思? - -![](/static/jimuImages/screenshot_1585040135427.png) -| 配置| 描述 | -| --- | --- | -| 是否路由菜单 | 是:跳转路由的时候根据配置的前端组件值跳转,否:起作用的是菜单路径 | -| 隐藏路由 | 是:左侧菜单不加载反之加载 | -| 缓存路由 | 是:路由只加载一次即created只执行一次 | -| 聚合路由 | 是:只要配置在该路由下面的子路由全部不会显示在左侧菜单栏 | -| 打开方式 | 内部打开是在窗口tab里打开,外部打开浏览器tab打开 | - ---- -2.列表页面跳转新的路由需要展示成面包屑菜单样式: -目前不支持,需要自行扩展 - ---- -3.表单设计器自定义扩展 -目前只支持将设计好的表单引入自己的modal页面,扩展暂不支持 - ---- -4.图表点击事件 -有自定义的图表js增强事件,后续补充该文档 - ---- -20200324 LOWCOD-323 - ---- - -5.online报表 系统变量的使用 -`select username,id from sys_user where username = ''#{sys_user_code}''` - -6.首页怎么改成自己的。 -方法一:直接修改文件:src/views/dashboard/Analysis.vue -方法二:自定义首页页面,将首页菜单的前端组件配置为自己的文件,注意**只能修改前端组件不可修改菜单路径** - -![](/static/jimuImages/screenshot_1586254248894.png) - - - -7.项目编译 文件上有红色波浪线 ,点开文件红线消失,查看problem报错 xxx程序包不存在,实际该包存在 -解决方法:在Terminal 中执行 `mvn idea:idea` 再次编译即可 - - - - -', 'complete', '{"filePath":"temp/QA_1741336015236.md"}'); -INSERT INTO "public"."airag_knowledge_doc" VALUES ('1897932000963092482', 'jeecg', '2025-03-07 16:47:06', 'jeecg', '2025-03-07 16:47:10', 'A04', NULL, '1897212906878009346', 'index', 'file', '# 项目介绍 - -![](https://upload.jeecg.com/jeecg/help/jimureport/topwrite/assets/jimureport2.jpg) - -***** - -# JimuReport - - 积木报表,是一款免费的数据可视化报表,含报表、仪表盘和大屏设计,像搭建积木一样完全在线设计!功能涵盖:数据报表、打印设计、图表报表、门户设计、大屏设计等! - - - Web版报表设计器,类Excel操作风格,通过拖拽完成报表设计,所见即所得。 - - 大屏采用类word风格,可以随意拖动组件,想怎么设计怎么设计,可以像百度和阿里一样,设计出炫酷大屏! - - 从 v1.9+ 起推出 JimuBI 产品,她的牛叉之处,同时支持仪表盘、大屏、门户 (支持交互)、移动. - - 秉承"简单、易用、专业"的产品理念,极大的降低报表开发难度、缩短开发周期、节省成本。 - - 领先的企业级Web报表,支持各种复杂报表,专注于解决企业报表难题。 - - 积木BI 数据可视化,支持大屏设计和仪表盘,致力于更生动、更友好的形式呈现实时业务数据分析 - -``` -专注于开源,打造 “专业 易用 智能” 的数据可视化报表、大屏、门户 -开源协议:`功能免费、可以商用、代码不开放` -``` - - -为什么选择 JimuReport? ------------------------------------ -> 永久免费,支持各种复杂报表,并且傻瓜式在线设计,非常的智能,低代码时代,这个是你的首选! - -- 采用SpringBoot的脚手架项目,都可以快速集成 -- Web 版设计器,类似于excel操作风格,通过拖拽完成报表设计 -- 通过SQL、API等方式,将数据源与模板绑定。同时支持表达式,自动计算合计等功能,使计算工作量大大降低 -- 开发效率很高,傻瓜式在线报表设计,一分钟设计一个报表,又简单又强大 -- 支持 ECharts,目前支持28种图表,在线拖拽设计,支持SQL和API两种数据源 -- 支持分组、交叉,合计、表达式等复杂报表 -- 支持打印设计(支持套打、背景打印等)可设置打印边距、方向、页眉页脚等参数 一键快速打印 同时可实现发票套打,不动产证等精准、无缝打印 -- 可视化图表,仪表盘设计器类大屏设计,支持丰富的数据源连接和移动端,通过拖拉拽方式快速制作图表和门户设计;支持多种图表类型:柱形图、折线图、散点图、饼图、环形图、面积图、漏斗图、进度图、仪表盘、雷达图、地图等等; -- 可设计各种类型的单据、大屏,如出入库单、销售单、财务报表、合同、监控大屏、旅游数据大屏等 -- 大屏设计器支持几十种图表样式,可自由拼接、组合,设计炫酷大屏 -- 数据可视化,DataV、帆软的开源替代方案,比帆软拥有更好的体验和更简单的使用方式 -- [积木报表官网](http://jimureport.com/login) 可以在线免费制作报表和大屏,手机号一键注册,便可永久使用。大屏采用类word风格,可以随意拖动组件,想怎么设计怎么设计,可以像百度和阿里一样,设计出炫酷的可视化大屏!重要的是:免费!免费!免费! - - - - -## 产生背景 -报表是企业IT服务必备的一项需求,但是行业内并没有一个免费好用的报表,大部分免费的报表功能较弱也不够智能,商业报表又很贵,所以有了研发一套免费报表的初衷。 -做一个什么样的报表呢?随着低代码概念的兴起,原先通过报表工具设计模板,再与系统集成的模式已经落伍,现在追求的是完全在线设计,傻瓜式的操作,实现简单易用又智能的报表! - -- 目前积木报表已经实现了完全在线设计,轻量级集成、类似excel的风格,像搭建积木一样在线拖拽设计报表!功能涵盖数据报表设计、打印设计、图表设计、门户设计、大屏设计等! -- 2019年底启动积木报表研发工作,历经一年多的时间,2020-11-03第一版出炉 [v1.0-beta](https://www.oschina.net/news/119666/jimureport-1-0-beta-released) -- 2020年的持续打磨和研发,终于在2021-1-18发布了第一个正式版本 [v1.1.05](https://www.oschina.net/news/126916/jimureport-1-1-05-released) -- 截止到当前2024-09-14,积木报表已经完全涵盖商业BI的所有功能,包括不限于复杂报表、图表可视化、大屏、移动图表、填报等高级功能,而且拥有更好的体验和更简单的使用方式。 -- 更多版本日志查看 [版本日志](http://jimureport.com/doc/log) - - - - - - -开发文档 ------------------------------------ - -- [快速集成]() -- [集成源码下载](https://github.com/jeecgboot/JimuReport) -- [大屏与报表演示](http://jimureport.com/login) | [零代码体验](https://app.qiaoqiaoyun.com) - - - - - - -项目介绍 ------------------------------------ - -- 官方网站: http://www.jimureport.com -- 视频教程: http://jimureport.com/doc/video -- QQ交流群:③596660273、其他群(满) - - -数据库兼容 ------------------------------------ -> 支持国产、常规、Nosql等30多种数据源,支持以SQL的方式去查询csv、mogodb等非物理数据库。 - -| 数据库 | 支持 | -| --- | --- | -| MySQL | √ | -| Oracle、Oracle9i | √ | -| SqlServer、SqlServer2012 | √ | -| PostgreSQL | √ | -| DB2、Informix | √ | -| MariaDB | √ | -| SQLite、Hsqldb、Derby、H2 | √ | -| 达梦、人大金仓、神通 | √ | -| 华为高斯、虚谷、瀚高数据库、 TDengine 涛思数据 | √ | -| 阿里云PolarDB、PPAS、HerdDB | √ | -| Hive、HBase、CouchBase | √ | -| 导入Excel、csv、json文件数据集 | √ | -| sqllite、TiDB、Doris、clickhouse、 MongoDB-BI | √ | -| elasticsearch、mogodb | √ | - - - -报表设计效果 ------------------------------------ - -- 报表设计器(完全在线设计,简单易用) - -![](https://upload.jeecg.com/jeecg/help/jimureport/topwrite/assets/up-752b454f64ed87c798b3e8a083fbd6622d4.gif) - -- 打印设计(支持套打、背景打印) - -![](https://upload.jeecg.com/jeecg/help/jimureport/topwrite/assets/image_1687862827604.png) - -![](https://upload.jeecg.com/jeecg/help/jimureport/topwrite/assets/image_1687862839013.png) - -- 数据报表(支持分组、交叉,合计等复杂报表) - -![](https://upload.jeecg.com/jeecg/help/jimureport/topwrite/assets/image_1687862854011.png) - -![](https://upload.jeecg.com/jeecg/help/jimureport/topwrite/assets/image_1687862862414.png) - -- 图形报表(目前支持28种图表) - -![](https://upload.jeecg.com/jeecg/help/jimureport/topwrite/assets/image_1687862883559.png) - -![](https://upload.jeecg.com/jeecg/help/jimureport/topwrite/assets/image_1687862892649.png) - - - -大屏设计效果 ------------------------------------ - -![](https://upload.jeecg.com/jeecg/help/jimureport/topwrite/assets/image_1687862905901.png) - -![](https://upload.jeecg.com/jeecg/help/jimureport/topwrite/assets/image_1687862938863.png) - -![](https://upload.jeecg.com/jeecg/help/jimureport/topwrite/assets/image_1687862951297.png) - -![](https://upload.jeecg.com/jeecg/help/jimureport/topwrite/assets/image_1687862960053.png) - -![](https://upload.jeecg.com/jeecg/help/jimureport/topwrite/assets/image_1687862974786.png) - -![](https://upload.jeecg.com/jeecg/help/jimureport/topwrite/assets/image_1687862983740.png) - -![](https://upload.jeecg.com/jeecg/help/jimureport/topwrite/assets/image_1687862996008.png) - -![](https://upload.jeecg.com/jeecg/help/jimureport/topwrite/assets/image_1687863002758.png) - - -仪表盘设计器 ------------------------------------ - -![](https://upload.jeecg.com/jeecg/help/jimureport/topwrite/assets/image_1687863014429.png) - -![](https://upload.jeecg.com/jeecg/help/jimureport/topwrite/assets/image_1687863021555.png) - -![](https://upload.jeecg.com/jeecg/help/jimureport/topwrite/assets/image_1687863028545.png) - -![](https://upload.jeecg.com/jeecg/help/jimureport/topwrite/assets/image_1687863043320.png) - -![](https://upload.jeecg.com/jeecg/help/jimureport/topwrite/assets/image_1687863050461.png) - -![](https://upload.jeecg.com/jeecg/help/jimureport/topwrite/assets/image_1687863057103.png) - -## 功能清单 -``` -├─报表设计器 -│ ├─数据源 -│ │ ├─支持多种数据源,如Oracle,MySQL,SQLServer,PostgreSQL等主流的数据库 -│ │ ├─支持SQL编写页面智能化,可以看到数据源下面的表清单和字段清单 -│ │ ├─支持参数 -│ │ ├─支持单数据源和多数数据源设置 -│ ├─单元格格式 -│ │ ├─边框 -│ │ ├─字体大小 -│ │ ├─字体颜色 -│ │ ├─背景色 -│ │ ├─字体加粗 -│ │ ├─支持水平和垂直的分散对齐 -│ │ ├─支持文字自动换行设置 -│ │ ├─图片设置为图片背景 -│ │ ├─支持无线行和无限列 -│ │ ├─支持设计器内冻结窗口 -│ │ ├─支持对单元格内容或格式的复制、粘贴和删除等功能 -│ │ ├─等等 -│ ├─报表元素 -│ │ ├─文本类型:直接写文本;支持数值类型的文本设置小数位数 -│ │ ├─图片类型:支持上传一张图表;支持图片动态生成 -│ │ ├─图表类型 -│ │ ├─函数类型 -│ │ └─支持求和 -│ │ └─平均值 -│ │ └─最大值 -│ │ └─最小值 -│ ├─背景 -│ │ ├─背景颜色设置 -│ │ ├─背景图片设置 -│ │ ├─背景透明度设置 -│ │ ├─背景大小设置 -│ ├─数据字典 -│ ├─报表打印 -│ │ ├─自定义打印 -│ │ └─医药笺、逮捕令、介绍信等自定义样式设计打印 -│ │ ├─简单数据打印 -│ │ └─出入库单、销售表打印 -│ │ └─带参数打印 -│ │ └─分页打印 -│ │ ├─套打 -│ │ └─不动产证书打印 -│ │ └─发票打印 -│ ├─数据报表 -│ │ ├─分组数据报表 -│ │ └─横向数据分组 -│ │ └─纵向数据分组 -│ │ └─多级循环表头分组 -│ │ └─横向分组小计 -│ │ └─纵向分组小计(预计2021.03.08) -│ │ └─合计 -│ │ ├─交叉报表 -│ │ ├─明细表 -│ │ ├─带条件查询报表 -│ │ ├─表达式报表 -│ │ ├─带二维码/条形码报表 -│ │ ├─多表头复杂报表(预计2021.03.08发布) -│ │ ├─主子报表(预计2021.03.08发布) -│ │ ├─预警报表(预计2021.03.08发布) -│ │ ├─数据钻取报表(预计2021.03.08发布) -│ ├─图形报表 -│ │ ├─柱形图 -│ │ ├─折线图 -│ │ ├─饼图 -│ │ ├─折柱图 -│ │ ├─散点图 -│ │ ├─漏斗图 -│ │ ├─雷达图 -│ │ ├─象形图 -│ │ ├─地图 -│ │ ├─仪盘表 -│ │ ├─关系图 -│ │ ├─图表背景 -│ │ ├─图表动态刷新 -│ │ ├─图表数据字典 -│ ├─参数 -│ │ ├─参数配置 -│ │ ├─参数管理 -│ ├─导入导出 -│ │ ├─支持导入Excel -│ │ ├─支持导出Excel、pdf;支持导出excel、pdf带参数 -│ ├─打印设置 -│ │ ├─打印区域设置 -│ │ ├─打印机设置 -│ │ ├─预览 -│ │ ├─打印页码设置 -├─大屏设计器 -│ ├─系统功能 -│ │ ├─静态数据源和动态数据源设置 -│ │ ├─基础功能 -│ │ └─支持拖拽设计 -│ │ └─支持增、删、改、查大屏 -│ │ └─支持复制大屏数据和样式 -│ │ └─支持大屏预览、分享 -│ │ └─支持系统自动保存数据,同时支持手动恢复数据 -│ │ └─支持设置大屏密码 -│ │ └─支持对组件图层的删除、组合、上移、下移、置顶、置底等 -│ │ ├─背景设置 -│ │ └─大屏的宽度和高度设置 -│ │ └─大屏简介设置 -│ │ └─背景颜色、背景图片设置 -│ │ └─封面图设置 -│ │ └─缩放比例设置 -│ │ └─环境地址设置 -│ │ └─水印设置 -│ │ ├─地图设置 -│ │ └─添加地图 -│ │ └─地图数据隔离 -│ ├─图表 -│ │ ├─柱形图 -│ │ ├─折线图 -│ │ ├─折柱图 -│ │ ├─饼图 -│ │ ├─象形图 -│ │ ├─雷达图 -│ │ ├─散点图 -│ │ ├─漏斗图 -│ │ ├─文本框 -│ │ ├─跑马灯 -│ │ ├─超链接 -│ │ ├─实时时间 -│ │ ├─地图 -│ │ ├─全国物流地图 -│ │ ├─地理坐标地图 -│ │ ├─城市派件地图 -│ │ ├─图片 -│ │ ├─图片框 -│ │ ├─轮播图 -│ │ ├─滑动组件 -│ │ ├─iframe -│ │ ├─video -│ │ ├─翻牌器 -│ │ ├─环形图 -│ │ ├─进度条 -│ │ ├─仪盘表 -│ │ ├─字浮云 -│ │ ├─表格 -│ │ ├─选项卡 -│ │ ├─万能组件 -└─其他模块 - └─更多功能开发中。。 -``` - - - -', 'complete', '{"filePath":"temp/readme_1741337223240.md"}'); -INSERT INTO "public"."airag_knowledge_doc" VALUES ('1905186930719539201', 'jeecg', '2025-03-27 17:15:36', 'jeecg', '2025-03-27 17:15:43', 'A04', NULL, '1905186756806918146', 'part1', 'file', NULL, 'complete', '{"filePath":"https://jeecgdev.oss-cn-beijing.aliyuncs.com/temp/01第一部分第1章_1743066923748.pdf"}'); -INSERT INTO "public"."airag_knowledge_doc" VALUES ('1905186968325668866', 'jeecg', '2025-03-27 17:15:45', 'jeecg', '2025-03-27 17:15:48', 'A04', NULL, '1905186756806918146', 'part2', 'file', NULL, 'complete', '{"filePath":"https://jeecgdev.oss-cn-beijing.aliyuncs.com/temp/02第一部分第2章_1743066943040.pdf"}'); -INSERT INTO "public"."airag_knowledge_doc" VALUES ('1905187001037045761', 'jeecg', '2025-03-27 17:15:52', 'jeecg', '2025-03-27 17:15:57', 'A04', NULL, '1905186756806918146', 'part3', 'file', NULL, 'complete', '{"filePath":"https://jeecgdev.oss-cn-beijing.aliyuncs.com/temp/03第一部分第3章_1743066951733.pdf"}'); -INSERT INTO "public"."airag_knowledge_doc" VALUES ('1905187042770370561', 'jeecg', '2025-03-27 17:16:02', 'jeecg', '2025-03-27 17:16:07', 'A04', NULL, '1905186756806918146', 'part4', 'file', NULL, 'complete', '{"filePath":"https://jeecgdev.oss-cn-beijing.aliyuncs.com/temp/04第一部分第4章_1743066960385.pdf"}'); -INSERT INTO "public"."airag_knowledge_doc" VALUES ('1905187113339535361', 'jeecg', '2025-03-27 17:16:19', 'jeecg', '2025-03-27 17:16:25', 'A04', NULL, '1905186756806918146', 'part5', 'file', NULL, 'complete', '{"filePath":"https://jeecgdev.oss-cn-beijing.aliyuncs.com/temp/05第一部分第5章_1743066977792.pdf"}'); -INSERT INTO "public"."airag_knowledge_doc" VALUES ('1905187163981561857', 'jeecg', '2025-03-27 17:16:31', 'jeecg', '2025-03-27 17:16:39', 'A04', NULL, '1905186756806918146', 'part6', 'file', NULL, 'complete', '{"filePath":"https://jeecgdev.oss-cn-beijing.aliyuncs.com/temp/06第一部分第6章_1743066990164.pdf"}'); -INSERT INTO "public"."airag_knowledge_doc" VALUES ('1905187246412218369', 'jeecg', '2025-03-27 17:16:51', 'jeecg', '2025-03-27 17:16:54', 'A04', NULL, '1905186756806918146', 'part7', 'file', NULL, 'complete', '{"filePath":"https://jeecgdev.oss-cn-beijing.aliyuncs.com/temp/07第一部分第7章_1743067007831.pdf"}'); -INSERT INTO "public"."airag_knowledge_doc" VALUES ('1905187348543520770', 'jeecg', '2025-03-27 17:17:15', 'jeecg', '2025-03-27 17:17:20', 'A04', NULL, '1905186756806918146', 'part8', 'file', NULL, 'complete', '{"filePath":"https://jeecgdev.oss-cn-beijing.aliyuncs.com/temp/08第一部分第8章_1743067032663.pdf"}'); -INSERT INTO "public"."airag_knowledge_doc" VALUES ('1905187596229754881', 'jeecg', '2025-03-27 17:18:14', 'jeecg', '2025-03-27 17:18:21', 'A04', NULL, '1905186756806918146', 'part9', 'file', NULL, 'complete', '{"filePath":"https://jeecgdev.oss-cn-beijing.aliyuncs.com/temp/09第一部分第9章_1743067087019.pdf"}'); -INSERT INTO "public"."airag_knowledge_doc" VALUES ('1905187666618564609', 'jeecg', '2025-03-27 17:18:31', 'jeecg', '2025-03-27 17:18:34', 'A04', NULL, '1905186756806918146', 'part10', 'file', NULL, 'complete', '{"filePath":"https://jeecgdev.oss-cn-beijing.aliyuncs.com/temp/10第一部分第10章_1743067109769.pdf"}'); -INSERT INTO "public"."airag_knowledge_doc" VALUES ('1905187818494312449', 'jeecg', '2025-03-27 17:19:07', 'jeecg', '2025-03-27 17:19:15', 'A04', NULL, '1905186756806918146', 'part11', 'file', NULL, 'complete', '{"filePath":"https://jeecgdev.oss-cn-beijing.aliyuncs.com/temp/11第一部分第11章_1743067121732.pdf"}'); -INSERT INTO "public"."airag_knowledge_doc" VALUES ('1905187888337862657', 'jeecg', '2025-03-27 17:19:24', 'jeecg', '2025-03-27 17:19:31', 'A04', NULL, '1905186756806918146', 'part12', 'file', NULL, 'complete', '{"filePath":"https://jeecgdev.oss-cn-beijing.aliyuncs.com/temp/12第一部分第12章_1743067158952.pdf"}'); -INSERT INTO "public"."airag_knowledge_doc" VALUES ('1905187920491397122', 'jeecg', '2025-03-27 17:19:32', 'jeecg', '2025-03-27 17:19:38', 'A04', NULL, '1905186756806918146', 'part13', 'file', NULL, 'complete', '{"filePath":"https://jeecgdev.oss-cn-beijing.aliyuncs.com/temp/13第一部分第13章_1743067170886.pdf"}'); - --- ---------------------------- --- Table structure for airag_model --- ---------------------------- -DROP TABLE IF EXISTS "public"."airag_model"; -CREATE TABLE "public"."airag_model" ( - "id" varchar(36) COLLATE "pg_catalog"."default" NOT NULL, - "create_by" varchar(50) COLLATE "pg_catalog"."default", - "create_time" timestamp(6), - "update_by" varchar(50) COLLATE "pg_catalog"."default", - "update_time" timestamp(6), - "sys_org_code" varchar(64) COLLATE "pg_catalog"."default", - "tenant_id" varchar(32) COLLATE "pg_catalog"."default", - "name" varchar(100) COLLATE "pg_catalog"."default", - "provider" varchar(50) COLLATE "pg_catalog"."default", - "model_name" varchar(100) COLLATE "pg_catalog"."default", - "credential" varchar(500) COLLATE "pg_catalog"."default", - "base_url" varchar(500) COLLATE "pg_catalog"."default", - "model_type" varchar(32) COLLATE "pg_catalog"."default", - "model_params" varchar(500) COLLATE "pg_catalog"."default" -)TABLESPACE "stas" -; -COMMENT ON COLUMN "public"."airag_model"."create_by" IS '创建人'; -COMMENT ON COLUMN "public"."airag_model"."create_time" IS '创建日期'; -COMMENT ON COLUMN "public"."airag_model"."update_by" IS '更新人'; -COMMENT ON COLUMN "public"."airag_model"."update_time" IS '更新日期'; -COMMENT ON COLUMN "public"."airag_model"."sys_org_code" IS '所属部门'; -COMMENT ON COLUMN "public"."airag_model"."tenant_id" IS '租户id'; -COMMENT ON COLUMN "public"."airag_model"."name" IS '名称'; -COMMENT ON COLUMN "public"."airag_model"."provider" IS '供应者'; -COMMENT ON COLUMN "public"."airag_model"."model_name" IS '模型名称'; -COMMENT ON COLUMN "public"."airag_model"."credential" IS '凭证信息'; -COMMENT ON COLUMN "public"."airag_model"."base_url" IS 'API域名'; -COMMENT ON COLUMN "public"."airag_model"."model_type" IS '模型类型'; -COMMENT ON COLUMN "public"."airag_model"."model_params" IS '模型参数'; - --- ---------------------------- --- Records of airag_model --- ---------------------------- -INSERT INTO "public"."airag_model" VALUES ('1890232564262739969', 'jeecg', '2025-02-14 10:52:16', 'admin', '2025-04-02 22:20:37', 'A04', NULL, 'OpenAI', 'OPENAI', 'gpt-4o-mini', '{"apiKey":"sk-cgQRNc3mWb3YtdO9C0F6AcBc86"}', 'https://api.gpt.ge', 'LLM', '{"temperature":0.2,"topP":0.7,"presencePenalty":0.5,"frequencyPenalty":0.5,"maxTokens":null}'); -INSERT INTO "public"."airag_model" VALUES ('1891459707122499586', 'jeecg', '2025-02-17 20:08:30', 'admin', '2025-04-02 22:20:34', 'A04', NULL, 'OpenAI向量', 'OPENAI', 'text-embedding-ada-002', '{"apiKey":"sk-cgQRNc3mWb3YtdO9C0F6Ac"}', 'https://api.v3.cm/v1', 'EMBED', NULL); -INSERT INTO "public"."airag_model" VALUES ('1897481367743143938', 'jeecg', '2025-03-06 10:56:26', 'admin', '2025-04-02 22:20:31', 'A04', NULL, 'deepseek', 'DEEPSEEK', 'deepseek-chat', '{"apiKey":"sk-ff138aa9896945468ec"}', 'https://api.deepseek.com/v1', 'LLM', NULL); -INSERT INTO "public"."airag_model" VALUES ('1897883052995006466', 'jeecg', '2025-03-07 13:32:35', 'admin', '2025-04-02 23:53:33', 'A04', NULL, '智谱', 'ZHIPU', 'glm-4-flash', '{"apiKey":"522f6486bc6944b2ba346f054c0184e0."}', 'https://open.bigmodel.cn/', 'LLM', NULL); -INSERT INTO "public"."airag_model" VALUES ('1897884353107611650', 'jeecg', '2025-03-07 13:37:45', 'admin', '2025-04-02 22:20:22', 'A04', NULL, '智谱向量', 'ZHIPU', 'Embedding-3', '{"apiKey":"522f6486bc6944b2ba346f054c0184e0."}', 'https://open.bigmodel.cn', 'EMBED', '{"temperature":0.7,"topP":0.7,"presencePenalty":null,"frequencyPenalty":null,"maxTokens":null}'); - --- ---------------------------- --- Table structure for demo --- ---------------------------- -DROP TABLE IF EXISTS "public"."demo"; -CREATE TABLE "public"."demo" ( - "id" varchar(50) COLLATE "pg_catalog"."default" NOT NULL, - "name" varchar(30) COLLATE "pg_catalog"."default", - "key_word" varchar(255) COLLATE "pg_catalog"."default", - "punch_time" timestamp(6), - "salary_money" numeric(10,3), - "bonus_money" float8, - "sex" varchar(2) COLLATE "pg_catalog"."default", - "age" int4, - "birthday" date, - "email" varchar(50) COLLATE "pg_catalog"."default", - "content" varchar(1000) COLLATE "pg_catalog"."default", - "create_by" varchar(32) COLLATE "pg_catalog"."default", - "create_time" timestamp(6), - "update_by" varchar(32) COLLATE "pg_catalog"."default", - "update_time" timestamp(6), - "sys_org_code" varchar(64) COLLATE "pg_catalog"."default", - "tenant_id" int4, - "update_count" int4 -)TABLESPACE "stas" -; -COMMENT ON COLUMN "public"."demo"."id" IS '主键ID'; -COMMENT ON COLUMN "public"."demo"."name" IS '姓名'; -COMMENT ON COLUMN "public"."demo"."key_word" IS '关键词'; -COMMENT ON COLUMN "public"."demo"."punch_time" IS '打卡时间'; -COMMENT ON COLUMN "public"."demo"."salary_money" IS '工资'; -COMMENT ON COLUMN "public"."demo"."bonus_money" IS '奖金'; -COMMENT ON COLUMN "public"."demo"."sex" IS '性别 {男:1,女:2}'; -COMMENT ON COLUMN "public"."demo"."age" IS '年龄'; -COMMENT ON COLUMN "public"."demo"."birthday" IS '生日'; -COMMENT ON COLUMN "public"."demo"."email" IS '邮箱'; -COMMENT ON COLUMN "public"."demo"."content" IS '个人简介'; -COMMENT ON COLUMN "public"."demo"."create_by" IS '创建人'; -COMMENT ON COLUMN "public"."demo"."create_time" IS '创建时间'; -COMMENT ON COLUMN "public"."demo"."update_by" IS '修改人'; -COMMENT ON COLUMN "public"."demo"."update_time" IS '修改时间'; -COMMENT ON COLUMN "public"."demo"."sys_org_code" IS '所属部门编码'; -COMMENT ON COLUMN "public"."demo"."update_count" IS '乐观锁测试'; - --- ---------------------------- --- Records of demo --- ---------------------------- -INSERT INTO "public"."demo" VALUES ('1353563050407936002', '小红帽4', '44', '2021-01-26 12:39:04', NULL, NULL, '1', 22, '2021-01-25', NULL, NULL, 'admin', '2021-01-25 12:39:14', 'admin', '2022-11-09 11:20:46', 'A01', 0, NULL); -INSERT INTO "public"."demo" VALUES ('1400734875399024641', '名字', NULL, '2022-09-08 10:56:30', 33.000, NULL, '2', 23, '2022-09-30', '111@333.com', '333', 'admin', '2021-06-04 16:43:13', 'admin', '2022-11-09 11:20:43', 'A01', 0, NULL); -INSERT INTO "public"."demo" VALUES ('1586651771328786433', '孙亦菲', '222', NULL, 6000.000, NULL, '1', 1, '2022-10-30', NULL, NULL, 'admin', '2022-10-30 17:30:36', NULL, NULL, 'A01', 1, NULL); -INSERT INTO "public"."demo" VALUES ('1586651850919899137', '龙佳昊', NULL, '2022-10-08 17:30:46', 5000.000, NULL, '1', 1, '2022-10-30', '111@1.com', NULL, 'admin', '2022-10-30 17:30:54', NULL, NULL, 'A01', 1, NULL); -INSERT INTO "public"."demo" VALUES ('1586651922650886146', '龙建林', NULL, '2022-10-24 17:30:58', 9000111.000, NULL, '1', 1, '2022-10-30', '2@1.com', NULL, 'admin', '2022-10-30 17:31:12', 'admin', '2024-06-20 18:22:30', 'A01', 1, NULL); -INSERT INTO "public"."demo" VALUES ('1589491272526827521', '单表示例', NULL, NULL, NULL, NULL, '1', 1, NULL, NULL, NULL, 'admin', '2022-11-07 13:33:45', NULL, NULL, 'A01', 0, NULL); -INSERT INTO "public"."demo" VALUES ('1590178491193339906', '2323', NULL, '2022-11-04 11:04:38', NULL, NULL, '1', 1, '2022-11-24', NULL, NULL, 'admin', '2022-11-09 11:04:31', 'admin', '2023-03-04 22:38:55', 'A01', 0, NULL); - --- ---------------------------- --- Table structure for flyway_schema_history --- ---------------------------- -DROP TABLE IF EXISTS "public"."flyway_schema_history"; -CREATE TABLE "public"."flyway_schema_history" ( - "installed_rank" int4 NOT NULL, - "version" varchar(50) COLLATE "pg_catalog"."default", - "description" varchar(200) COLLATE "pg_catalog"."default" NOT NULL, - "type" varchar(20) COLLATE "pg_catalog"."default" NOT NULL, - "script" varchar(1000) COLLATE "pg_catalog"."default" NOT NULL, - "checksum" int4, - "installed_by" varchar(100) COLLATE "pg_catalog"."default" NOT NULL, - "installed_on" timestamp(6) NOT NULL, - "execution_time" int4 NOT NULL, - "success" int2 NOT NULL -)TABLESPACE "stas" -; - --- ---------------------------- --- Records of flyway_schema_history --- ---------------------------- -INSERT INTO "public"."flyway_schema_history" VALUES (1, '1', '<< Flyway Baseline >>', 'BASELINE', '<< Flyway Baseline >>', NULL, 'root', '2024-01-03 21:58:35', 0, 1); -INSERT INTO "public"."flyway_schema_history" VALUES (2, '3.8.0.1', 'airag add menu', 'SQL', 'V3.8.0_1__airag_add_menu.sql', -177373739, 'root', '2025-04-03 10:54:32', 114, 1); -INSERT INTO "public"."flyway_schema_history" VALUES (3, '3.8.0.2', 'airag init db', 'SQL', 'V3.8.0_2__airag_init_db.sql', 874980827, 'root', '2025-04-07 14:35:13', 60, 1); -INSERT INTO "public"."flyway_schema_history" VALUES (4, '3.8.1.1', 'all upgrade', 'SQL', 'V3.8.1_1__all_upgrade.sql', 670374510, 'root', '2025-06-25 15:09:03', 25, 1); -INSERT INTO "public"."flyway_schema_history" VALUES (5, '3.8.1.2', 'openapi', 'SQL', 'V3.8.1_2__openapi.sql', 453642872, 'root', '2025-07-02 10:11:50', 245, 1); - --- ---------------------------- --- Table structure for flyway_schema_history_1 --- ---------------------------- -DROP TABLE IF EXISTS "public"."flyway_schema_history_1"; -CREATE TABLE "public"."flyway_schema_history_1" ( - "installed_rank" int4 NOT NULL, - "version" varchar(50) COLLATE "pg_catalog"."default", - "description" varchar(200) COLLATE "pg_catalog"."default" NOT NULL, - "type" varchar(20) COLLATE "pg_catalog"."default" NOT NULL, - "script" varchar(1000) COLLATE "pg_catalog"."default" NOT NULL, - "checksum" int4, - "installed_by" varchar(100) COLLATE "pg_catalog"."default" NOT NULL, - "installed_on" timestamp(6) NOT NULL, - "execution_time" int4 NOT NULL, - "success" int2 NOT NULL -)TABLESPACE "stas" -; - --- ---------------------------- --- Records of flyway_schema_history_1 --- ---------------------------- -INSERT INTO "public"."flyway_schema_history_1" VALUES (1, '1', '<< Flyway Baseline >>', 'BASELINE', '<< Flyway Baseline >>', NULL, 'root', '2024-01-03 21:58:35', 0, 1); -INSERT INTO "public"."flyway_schema_history_1" VALUES (2, '3.6.2', 'all upgrade', 'SQL', 'V3.6.2__all_upgrade.sql', 146217576, 'root', '2024-01-03 21:58:35', 168, 1); -INSERT INTO "public"."flyway_schema_history_1" VALUES (3, '3.6.3', 'all upgrade', 'SQL', 'V3.6.3__all_upgrade.sql', -98134889, 'root', '2024-03-07 11:28:10', 101, 1); -INSERT INTO "public"."flyway_schema_history_1" VALUES (4, '3.7.0', 'all upgrade', 'SQL', 'V3.7.0__all_upgrade.sql', -762627866, 'root', '2024-06-18 11:59:34', 73, 1); -INSERT INTO "public"."flyway_schema_history_1" VALUES (5, NULL, '370 missingPermission', 'SQL', 'R__370_missingPermission.sql', 933645342, 'root', '2024-06-18 12:00:16', 56, 1); -INSERT INTO "public"."flyway_schema_history_1" VALUES (6, NULL, '370 missingPermission', 'SQL', 'R__370_missingPermission.sql', 464329002, 'root', '2024-06-18 22:53:52', 37, 1); -INSERT INTO "public"."flyway_schema_history_1" VALUES (7, '3.7.1', 'all upgrade', 'SQL', 'V3.7.1__all_upgrade.sql', 857900043, 'root', '2024-09-11 17:33:35', 140, 1); -INSERT INTO "public"."flyway_schema_history_1" VALUES (8, '3.7.12', 'jimu dashboard upgrade', 'SQL', 'V3.7.12__jimu_dashboard_upgrade.sql', -2138429079, 'root', '2024-09-11 22:17:09', 97, 1); -INSERT INTO "public"."flyway_schema_history_1" VALUES (9, '3.7.20', 'system upgrade', 'SQL', 'V3.7.20__system_upgrade.sql', 1274676135, 'root', '2024-12-09 14:09:48', 29, 1); -INSERT INTO "public"."flyway_schema_history_1" VALUES (10, '3.7.21', 'jimureport upgrade', 'SQL', 'V3.7.21__jimureport_upgrade.sql', 254003703, 'root', '2024-12-11 16:16:31', 48, 1); -INSERT INTO "public"."flyway_schema_history_1" VALUES (11, '3.7.22', 'jimureport upgrade1.9.3', 'SQL', 'V3.7.22__jimureport_upgrade1.9.3.sql', -648465868, 'root', '2025-01-12 17:20:39', 24, 1); -INSERT INTO "public"."flyway_schema_history_1" VALUES (12, '3.7.30', 'all upgrade', 'SQL', 'V3.7.30__all_upgrade.sql', -206956661, 'root', '2025-02-07 16:20:17', 25, 1); -INSERT INTO "public"."flyway_schema_history_1" VALUES (13, '3.7.31', 'jimureport upgrade', 'SQL', 'V3.7.31__jimureport_upgrade.sql', -1745830540, 'root', '2025-02-19 18:43:36', 37, 1); -INSERT INTO "public"."flyway_schema_history_1" VALUES (14, '3.7.32', 'jimureport upgrade', 'SQL', 'V3.7.32__jimureport_upgrade.sql', 893796731, 'root', '2025-02-19 18:44:05', 28, 1); -INSERT INTO "public"."flyway_schema_history_1" VALUES (15, '3.7.40', 'all upgrade', 'SQL', 'V3.7.40__all_upgrade.sql', 1478121157, 'root', '2025-03-30 18:04:37', 514, 1); -INSERT INTO "public"."flyway_schema_history_1" VALUES (16, '3.7.41', 'alter onl cgform head tenant id', 'SQL', 'V3.7.41__alter_onl_cgform_head_tenant_id.sql', 1301414489, 'root', '2025-03-31 11:12:29', 85, 1); - --- ---------------------------- --- Table structure for jeecg_order_customer --- ---------------------------- -DROP TABLE IF EXISTS "public"."jeecg_order_customer"; -CREATE TABLE "public"."jeecg_order_customer" ( - "id" varchar(32) COLLATE "pg_catalog"."default" NOT NULL, - "name" varchar(100) COLLATE "pg_catalog"."default" NOT NULL, - "sex" varchar(4) COLLATE "pg_catalog"."default", - "idcard" varchar(18) COLLATE "pg_catalog"."default", - "idcard_pic" varchar(500) COLLATE "pg_catalog"."default", - "telphone" varchar(32) COLLATE "pg_catalog"."default", - "order_id" varchar(32) COLLATE "pg_catalog"."default" NOT NULL, - "create_by" varchar(32) COLLATE "pg_catalog"."default", - "create_time" timestamp(6), - "update_by" varchar(32) COLLATE "pg_catalog"."default", - "update_time" timestamp(6) -)TABLESPACE "stas" -; -COMMENT ON COLUMN "public"."jeecg_order_customer"."id" IS '主键'; -COMMENT ON COLUMN "public"."jeecg_order_customer"."name" IS '客户名'; -COMMENT ON COLUMN "public"."jeecg_order_customer"."sex" IS '性别'; -COMMENT ON COLUMN "public"."jeecg_order_customer"."idcard" IS '身份证号码'; -COMMENT ON COLUMN "public"."jeecg_order_customer"."idcard_pic" IS '身份证扫描件'; -COMMENT ON COLUMN "public"."jeecg_order_customer"."telphone" IS '电话1'; -COMMENT ON COLUMN "public"."jeecg_order_customer"."order_id" IS '外键'; -COMMENT ON COLUMN "public"."jeecg_order_customer"."create_by" IS '创建人'; -COMMENT ON COLUMN "public"."jeecg_order_customer"."create_time" IS '创建时间'; -COMMENT ON COLUMN "public"."jeecg_order_customer"."update_by" IS '修改人'; -COMMENT ON COLUMN "public"."jeecg_order_customer"."update_time" IS '修改时间'; - --- ---------------------------- --- Records of jeecg_order_customer --- ---------------------------- -INSERT INTO "public"."jeecg_order_customer" VALUES ('1256527640480821249', 'scott', '2', NULL, NULL, NULL, 'b190737bd04cca8360e6f87c9ef9ec4e', 'admin', '2020-05-02 18:15:09', NULL, NULL); -INSERT INTO "public"."jeecg_order_customer" VALUES ('1256527640531152898', 'x秦风', '1', NULL, NULL, NULL, 'b190737bd04cca8360e6f87c9ef9ec4e', 'admin', '2020-05-02 18:15:09', NULL, NULL); -INSERT INTO "public"."jeecg_order_customer" VALUES ('1256527874216800257', '小王1', '1', '', NULL, '', '9a57c850e4f68cf94ef7d8585dbaf7e6', 'admin', '2020-05-02 18:17:37', 'admin', '2022-09-22 10:56:25'); -INSERT INTO "public"."jeecg_order_customer" VALUES ('15538561502720', '3333', '1', '', NULL, '', '0d4a2e67b538ee1bc881e5ed34f670f0', 'jeecg-boot', '2019-03-29 18:42:55', NULL, NULL); -INSERT INTO "public"."jeecg_order_customer" VALUES ('15538561512681', '3332333', '2', '', NULL, '', '0d4a2e67b538ee1bc881e5ed34f670f0', 'jeecg-boot', '2019-03-29 18:42:55', 'admin', '2019-03-29 18:43:12'); -INSERT INTO "public"."jeecg_order_customer" VALUES ('15538561550142', '4442', '2', '', NULL, '', '0d4a2e67b538ee1bc881e5ed34f670f0', 'jeecg-boot', '2019-03-29 18:42:55', NULL, NULL); -INSERT INTO "public"."jeecg_order_customer" VALUES ('15541168497342', '444', '', '', '', '', 'f71f7f8930b5b6b1703d9948d189982b', 'admin', '2019-04-01 19:08:45', NULL, NULL); -INSERT INTO "public"."jeecg_order_customer" VALUES ('15541168499553', '5555', '', '', '', '', 'f71f7f8930b5b6b1703d9948d189982b', 'admin', '2019-04-01 19:08:45', NULL, NULL); -INSERT INTO "public"."jeecg_order_customer" VALUES ('1572781641947635713', '1212', '1', '1212', NULL, '12', '4cba137333127e8e31df7ad168cc3732', 'admin', '2022-09-22 10:55:39', NULL, NULL); -INSERT INTO "public"."jeecg_order_customer" VALUES ('1572781834508132354', '22', '2', '', NULL, '', '9a57c850e4f68cf94ef7d8585dbaf7e6', 'admin', '2022-09-22 10:56:25', NULL, NULL); -INSERT INTO "public"."jeecg_order_customer" VALUES ('18dc5eb1068ccdfe90e358951ca1a3d6', 'dr2', '', '', '', '', '8ab1186410a65118c4d746eb085d3bed', 'admin', '2019-04-04 17:25:33', NULL, NULL); -INSERT INTO "public"."jeecg_order_customer" VALUES ('195d280490fe88ca1475512ddcaf2af9', '12', NULL, NULL, NULL, NULL, '54e739bef5b67569c963c38da52581ec', 'admin', '2019-03-15 16:50:15', NULL, NULL); -INSERT INTO "public"."jeecg_order_customer" VALUES ('217a2bf83709775d2cd85bf598392327', '2', NULL, NULL, NULL, NULL, '54e739bef5b67569c963c38da52581ec', 'admin', '2019-03-15 16:50:15', NULL, NULL); -INSERT INTO "public"."jeecg_order_customer" VALUES ('22bc052ae53ed09913b946abba93fa89', '1', NULL, NULL, NULL, NULL, '54e739bef5b67569c963c38da52581ec', 'admin', '2019-03-15 16:50:15', NULL, NULL); -INSERT INTO "public"."jeecg_order_customer" VALUES ('23bafeae88126c3bf3322a29a04f0d5e', 'x秦风', NULL, NULL, NULL, NULL, '163e2efcbc6d7d54eb3f8a137da8a75a', 'jeecg-boot', '2019-03-29 18:43:59', NULL, NULL); -INSERT INTO "public"."jeecg_order_customer" VALUES ('25c4a552c6843f36fad6303bfa99a382', '1', NULL, NULL, NULL, NULL, '54e739bef5b67569c963c38da52581ec', 'admin', '2019-03-15 16:50:15', NULL, NULL); -INSERT INTO "public"."jeecg_order_customer" VALUES ('2d32144e2bee63264f3f16215c258381', '33333', '2', NULL, NULL, NULL, 'd908bfee3377e946e59220c4a4eb414a', 'admin', '2019-04-01 16:27:03', NULL, NULL); -INSERT INTO "public"."jeecg_order_customer" VALUES ('2d43170d6327f941bd1a017999495e25', '1', NULL, NULL, NULL, NULL, '54e739bef5b67569c963c38da52581ec', 'admin', '2019-03-15 16:50:15', NULL, NULL); -INSERT INTO "public"."jeecg_order_customer" VALUES ('2e5f62a8b6e0a0ce19b52a6feae23d48', '3', NULL, NULL, NULL, NULL, '54e739bef5b67569c963c38da52581ec', 'admin', '2019-03-15 16:50:15', NULL, NULL); -INSERT INTO "public"."jeecg_order_customer" VALUES ('34a1c5cf6cee360ed610ed0bed70e0f9', '导入秦风', NULL, NULL, NULL, NULL, 'a2cce75872cc8fcc47f78de9ffd378c2', 'jeecg-boot', '2019-03-29 18:43:59', NULL, NULL); -INSERT INTO "public"."jeecg_order_customer" VALUES ('3c87400f8109b4cf43c5598f0d40e34d', '2', NULL, NULL, NULL, NULL, '54e739bef5b67569c963c38da52581ec', 'admin', '2019-03-15 16:50:15', NULL, NULL); -INSERT INTO "public"."jeecg_order_customer" VALUES ('40964bcbbecb38e5ac15e6d08cf3cd43', '233', NULL, NULL, NULL, NULL, '54e739bef5b67569c963c38da52581ec', 'admin', '2019-03-15 16:50:15', NULL, NULL); -INSERT INTO "public"."jeecg_order_customer" VALUES ('41e3dee0b0b6e6530eccb7fbb22fd7a3', '4555', '1', '370285198602058823', NULL, '18611788674', '54e739bef5b67569c963c38da52581ec', 'admin', '2019-03-15 16:50:15', NULL, NULL); -INSERT INTO "public"."jeecg_order_customer" VALUES ('4808ae8344c7679a4a2f461db5dc3a70', '44', '1', '370285198602058823', NULL, '18611788674', '54e739bef5b67569c963c38da52581ec', 'admin', '2019-03-15 16:50:15', NULL, NULL); -INSERT INTO "public"."jeecg_order_customer" VALUES ('4b6cef12f195fad94d57279b2241770d', 'dr12', '', '', '', '', '8ab1186410a65118c4d746eb085d3bed', 'admin', '2019-04-04 17:25:33', NULL, NULL); -INSERT INTO "public"."jeecg_order_customer" VALUES ('524e695283f8e8c256cc24f39d6d8542', '小王', '2', '370285198604033222', NULL, '18611788674', 'eb13ab35d2946a2b0cfe3452bca1e73f', 'admin', '2019-02-25 16:29:41', NULL, NULL); -INSERT INTO "public"."jeecg_order_customer" VALUES ('57c2a8367db34016114cbc9fa368dba0', '2', NULL, NULL, NULL, NULL, '54e739bef5b67569c963c38da52581ec', 'admin', '2019-03-15 16:50:15', NULL, NULL); -INSERT INTO "public"."jeecg_order_customer" VALUES ('5df36a1608b8c7ac99ad9bc408fe54bf', '4', NULL, NULL, NULL, NULL, '54e739bef5b67569c963c38da52581ec', 'admin', '2019-03-15 16:50:15', NULL, NULL); -INSERT INTO "public"."jeecg_order_customer" VALUES ('6c6fd2716c2dcd044ed03c2c95d261f8', '李四', '2', '370285198602058833', '', '18611788676', 'f71f7f8930b5b6b1703d9948d189982b', 'admin', '2019-04-01 19:08:45', NULL, NULL); -INSERT INTO "public"."jeecg_order_customer" VALUES ('742d008214dee0afff2145555692973e', '秦风', '1', '370285198602058822', NULL, '18611788676', '54e739bef5b67569c963c38da52581ec', 'admin', '2019-03-15 16:50:15', NULL, NULL); -INSERT INTO "public"."jeecg_order_customer" VALUES ('7469c3e5d371767ff90a739d297689b5', '导入秦风', '2', NULL, NULL, NULL, '3a867ebf2cebce9bae3f79676d8d86f3', 'jeecg-boot', '2019-03-29 18:43:59', 'admin', '2019-04-08 17:35:02'); -INSERT INTO "public"."jeecg_order_customer" VALUES ('7a96e2c7b24847d4a29940dbc0eda6e5', 'drscott', NULL, NULL, NULL, NULL, 'e73434dad84ebdce2d4e0c2a2f06d8ea', 'jeecg-boot', '2019-03-29 18:43:59', NULL, NULL); -INSERT INTO "public"."jeecg_order_customer" VALUES ('7f5a40818e225ee18bda6da7932ac5f9', '2', NULL, NULL, NULL, NULL, '54e739bef5b67569c963c38da52581ec', 'admin', '2019-03-15 16:50:15', NULL, NULL); -INSERT INTO "public"."jeecg_order_customer" VALUES ('8011575abfd7c8085e71ff66df1124b9', '1', NULL, NULL, NULL, NULL, '54e739bef5b67569c963c38da52581ec', 'admin', '2019-03-15 16:50:15', NULL, NULL); -INSERT INTO "public"."jeecg_order_customer" VALUES ('8404f31d7196221a573c9bd6c8f15003', '小张', '1', '370285198602058211', NULL, '18611788676', 'eb13ab35d2946a2b0cfe3452bca1e73f', 'admin', '2019-02-25 16:29:41', NULL, NULL); -INSERT INTO "public"."jeecg_order_customer" VALUES ('859020e10a2f721f201cdbff78cf7b9f', 'scott', NULL, NULL, NULL, NULL, '163e2efcbc6d7d54eb3f8a137da8a75a', 'jeecg-boot', '2019-03-29 18:43:59', NULL, NULL); -INSERT INTO "public"."jeecg_order_customer" VALUES ('8cc3c4d26e3060975df3a2adb781eeb4', 'dr33', NULL, NULL, NULL, NULL, 'b2feb454e43c46b2038768899061e464', 'jeecg-boot', '2019-04-04 17:23:09', NULL, NULL); -INSERT INTO "public"."jeecg_order_customer" VALUES ('8d1725c23a6a50685ff0dedfd437030d', '4', NULL, NULL, NULL, NULL, '54e739bef5b67569c963c38da52581ec', 'admin', '2019-03-15 16:50:15', NULL, NULL); -INSERT INTO "public"."jeecg_order_customer" VALUES ('933cae3a79f60a93922d59aace5346ce', '小王', NULL, '370285198604033222', NULL, '18611788674', '6a719071a29927a14f19482f8693d69a', 'jeecg-boot', '2019-03-29 18:43:59', NULL, NULL); -INSERT INTO "public"."jeecg_order_customer" VALUES ('9bdb5400b709ba4eaf3444de475880d7', 'dr22', NULL, NULL, NULL, NULL, '22c17790dcd04b296c4a2a089f71895f', 'jeecg-boot', '2019-04-04 17:23:09', NULL, NULL); -INSERT INTO "public"."jeecg_order_customer" VALUES ('9f87677f70e5f864679314389443a3eb', '33', '2', '370285198602058823', NULL, '18611788674', '54e739bef5b67569c963c38da52581ec', 'admin', '2019-03-15 16:50:15', NULL, NULL); -INSERT INTO "public"."jeecg_order_customer" VALUES ('a2c2b7101f75c02deb328ba777137897', '44', '2', '370285198602058823', NULL, '18611788674', '54e739bef5b67569c963c38da52581ec', 'admin', '2019-03-15 16:50:15', NULL, NULL); -INSERT INTO "public"."jeecg_order_customer" VALUES ('ab4d002dc552c326147e318c87d3bed4', '小红1', '1', '370285198604033222', NULL, '18611755848', '9a57c850e4f68cf94ef7d8585dbaf7e6', 'admin', '2020-05-02 18:17:37', 'admin', '2022-09-22 10:56:25'); -INSERT INTO "public"."jeecg_order_customer" VALUES ('ad116f722a438e5f23095a0b5fcc8e89', 'dr秦风', NULL, NULL, NULL, NULL, 'e73434dad84ebdce2d4e0c2a2f06d8ea', 'jeecg-boot', '2019-03-29 18:43:59', NULL, NULL); -INSERT INTO "public"."jeecg_order_customer" VALUES ('b1ba147b75f5eaa48212586097fc3fd1', '2', NULL, NULL, NULL, NULL, '54e739bef5b67569c963c38da52581ec', 'admin', '2019-03-15 16:50:15', NULL, NULL); -INSERT INTO "public"."jeecg_order_customer" VALUES ('b43bf432c251f0e6b206e403b8ec29bc', 'lisi', NULL, NULL, NULL, NULL, 'f8889aaef6d1bccffd98d2889c0aafb5', 'jeecg-boot', '2019-03-29 18:43:59', NULL, NULL); -INSERT INTO "public"."jeecg_order_customer" VALUES ('bcdd300a7d44c45a66bdaac14903c801', '33', NULL, NULL, NULL, NULL, '54e739bef5b67569c963c38da52581ec', 'admin', '2019-03-15 16:50:15', NULL, NULL); -INSERT INTO "public"."jeecg_order_customer" VALUES ('beb983293e47e2dc1a9b3d649aa3eb34', 'ddd3', NULL, NULL, NULL, NULL, 'd908bfee3377e946e59220c4a4eb414a', 'admin', '2019-04-01 16:27:03', NULL, NULL); -INSERT INTO "public"."jeecg_order_customer" VALUES ('c219808196406f1b8c7f1062589de4b5', '44', '1', '370285198602058823', NULL, '18611788674', '54e739bef5b67569c963c38da52581ec', 'admin', '2019-03-15 16:50:15', NULL, NULL); -INSERT INTO "public"."jeecg_order_customer" VALUES ('c8ed061d4b27c0c7a64e100f2b1c8ab5', '张经理', '2', '370285198602058823', NULL, '18611788674', '54e739bef5b67569c963c38da52581ec', 'admin', '2019-03-15 16:50:15', NULL, NULL); -INSERT INTO "public"."jeecg_order_customer" VALUES ('cc5de4af7f06cd6d250965ebe92a0395', '1', NULL, NULL, NULL, NULL, '54e739bef5b67569c963c38da52581ec', 'admin', '2019-03-15 16:50:15', NULL, NULL); -INSERT INTO "public"."jeecg_order_customer" VALUES ('cf8817bd703bf7c7c77a2118edc26cc7', '1', NULL, NULL, NULL, NULL, '54e739bef5b67569c963c38da52581ec', 'admin', '2019-03-15 16:50:15', NULL, NULL); -INSERT INTO "public"."jeecg_order_customer" VALUES ('d72b26fae42e71270fce2097a88da58a', '导入scott', NULL, 'www', NULL, NULL, '3a867ebf2cebce9bae3f79676d8d86f3', 'jeecg-boot', '2019-03-29 18:43:59', 'admin', '2019-04-08 17:35:05'); -INSERT INTO "public"."jeecg_order_customer" VALUES ('dbdc60a6ac1a8c43f24afee384039b68', 'xiaowang', NULL, NULL, NULL, NULL, 'f8889aaef6d1bccffd98d2889c0aafb5', 'jeecg-boot', '2019-03-29 18:43:59', NULL, NULL); -INSERT INTO "public"."jeecg_order_customer" VALUES ('dc5883b50466de94d900919ed96d97af', '33', '1', '370285198602058823', NULL, '18611788674', '54e739bef5b67569c963c38da52581ec', 'admin', '2019-03-15 16:50:15', NULL, NULL); -INSERT INTO "public"."jeecg_order_customer" VALUES ('deeb73e553ad8dc0a0b3cfd5a338de8e', '3333', NULL, NULL, NULL, NULL, '54e739bef5b67569c963c38da52581ec', 'admin', '2019-03-15 16:50:15', NULL, NULL); -INSERT INTO "public"."jeecg_order_customer" VALUES ('e2570278bf189ac05df3673231326f47', '1', NULL, NULL, NULL, NULL, '54e739bef5b67569c963c38da52581ec', 'admin', '2019-03-15 16:50:15', NULL, NULL); -INSERT INTO "public"."jeecg_order_customer" VALUES ('e39cb23bb950b2bdedfc284686c6128a', '1', NULL, NULL, NULL, NULL, '54e739bef5b67569c963c38da52581ec', 'admin', '2019-03-15 16:50:15', NULL, NULL); -INSERT INTO "public"."jeecg_order_customer" VALUES ('e46fe9111a9100844af582a18a2aa402', '1', NULL, NULL, NULL, NULL, '54e739bef5b67569c963c38da52581ec', 'admin', '2019-03-15 16:50:15', NULL, NULL); -INSERT INTO "public"."jeecg_order_customer" VALUES ('ee7af0acb9beb9bf8d8b3819a8a7fdc3', '2', NULL, NULL, NULL, NULL, '54e739bef5b67569c963c38da52581ec', 'admin', '2019-03-15 16:50:15', NULL, NULL); -INSERT INTO "public"."jeecg_order_customer" VALUES ('f5d2605e844192d9e548f9bd240ac908', '小张', NULL, '370285198602058211', NULL, '18611788676', '6a719071a29927a14f19482f8693d69a', 'jeecg-boot', '2019-03-29 18:43:59', NULL, NULL); -INSERT INTO "public"."jeecg_order_customer" VALUES ('f6db6547382126613a3e46e7cd58a5f2', '导入scott', NULL, NULL, NULL, NULL, 'a2cce75872cc8fcc47f78de9ffd378c2', 'jeecg-boot', '2019-03-29 18:43:59', NULL, NULL); - --- ---------------------------- --- Table structure for jeecg_order_main --- ---------------------------- -DROP TABLE IF EXISTS "public"."jeecg_order_main"; -CREATE TABLE "public"."jeecg_order_main" ( - "id" varchar(32) COLLATE "pg_catalog"."default" NOT NULL, - "order_code" varchar(50) COLLATE "pg_catalog"."default", - "ctype" varchar(500) COLLATE "pg_catalog"."default", - "order_date" timestamp(6), - "order_money" float8, - "content" varchar(500) COLLATE "pg_catalog"."default", - "create_by" varchar(32) COLLATE "pg_catalog"."default", - "create_time" timestamp(6), - "update_by" varchar(32) COLLATE "pg_catalog"."default", - "update_time" timestamp(6), - "bpm_status" varchar(3) COLLATE "pg_catalog"."default" -)TABLESPACE "stas" -; -COMMENT ON COLUMN "public"."jeecg_order_main"."id" IS '主键'; -COMMENT ON COLUMN "public"."jeecg_order_main"."order_code" IS '订单号'; -COMMENT ON COLUMN "public"."jeecg_order_main"."ctype" IS '订单类型'; -COMMENT ON COLUMN "public"."jeecg_order_main"."order_date" IS '订单日期'; -COMMENT ON COLUMN "public"."jeecg_order_main"."order_money" IS '订单金额'; -COMMENT ON COLUMN "public"."jeecg_order_main"."content" IS '订单备注'; -COMMENT ON COLUMN "public"."jeecg_order_main"."create_by" IS '创建人'; -COMMENT ON COLUMN "public"."jeecg_order_main"."create_time" IS '创建时间'; -COMMENT ON COLUMN "public"."jeecg_order_main"."update_by" IS '修改人'; -COMMENT ON COLUMN "public"."jeecg_order_main"."update_time" IS '修改时间'; -COMMENT ON COLUMN "public"."jeecg_order_main"."bpm_status" IS '流程状态'; - --- ---------------------------- --- Records of jeecg_order_main --- ---------------------------- -INSERT INTO "public"."jeecg_order_main" VALUES ('163e2efcbc6d7d54eb3f8a137da8a75a', 'B100', NULL, NULL, 3000, NULL, 'jeecg-boot', '2019-03-29 18:43:59', NULL, NULL, NULL); -INSERT INTO "public"."jeecg_order_main" VALUES ('3a867ebf2cebce9bae3f79676d8d86f3', '导入B100', '2222', NULL, 3000, NULL, 'jeecg-boot', '2019-03-29 18:43:59', 'admin', '2019-04-08 17:35:13', NULL); -INSERT INTO "public"."jeecg_order_main" VALUES ('4cba137333127e8e31df7ad168cc3732', '青岛订单A0001', '2', '2019-04-03 10:56:07', NULL, NULL, 'admin', '2019-04-03 10:56:11', 'admin', '2022-09-22 10:55:39', NULL); -INSERT INTO "public"."jeecg_order_main" VALUES ('54e739bef5b67569c963c38da52581ec', 'NC911', '1', '2019-02-18 09:58:51', 40, NULL, 'admin', '2019-02-18 09:58:47', 'admin', '2019-02-18 09:58:59', NULL); -INSERT INTO "public"."jeecg_order_main" VALUES ('6a719071a29927a14f19482f8693d69a', 'c100', NULL, NULL, 5000, NULL, 'jeecg-boot', '2019-03-29 18:43:59', NULL, NULL, NULL); -INSERT INTO "public"."jeecg_order_main" VALUES ('8ab1186410a65118c4d746eb085d3bed', '导入400', '1', '2019-02-18 09:58:51', 40, NULL, 'admin', '2019-02-18 09:58:47', 'admin', '2019-02-18 09:58:59', NULL); -INSERT INTO "public"."jeecg_order_main" VALUES ('9a57c850e4f68cf94ef7d8585dbaf7e6', 'halou001', '1', '2019-04-04 17:30:32', 500, NULL, 'admin', '2019-04-04 17:30:41', 'admin', '2022-09-22 10:56:25', NULL); -INSERT INTO "public"."jeecg_order_main" VALUES ('a2cce75872cc8fcc47f78de9ffd378c2', '导入B100', NULL, NULL, 3000, NULL, 'jeecg-boot', '2019-03-29 18:43:59', NULL, NULL, NULL); -INSERT INTO "public"."jeecg_order_main" VALUES ('b190737bd04cca8360e6f87c9ef9ec4e', 'B0018888', '1', NULL, NULL, NULL, 'admin', '2019-02-15 18:39:29', 'admin', '2020-05-02 18:15:09', NULL); -INSERT INTO "public"."jeecg_order_main" VALUES ('d908bfee3377e946e59220c4a4eb414a', 'SSSS001', NULL, NULL, 599, NULL, 'admin', '2019-04-01 15:43:03', 'admin', '2019-04-01 16:26:52', NULL); -INSERT INTO "public"."jeecg_order_main" VALUES ('e73434dad84ebdce2d4e0c2a2f06d8ea', '导入200', NULL, NULL, 3000, NULL, 'jeecg-boot', '2019-03-29 18:43:59', NULL, NULL, NULL); -INSERT INTO "public"."jeecg_order_main" VALUES ('eb13ab35d2946a2b0cfe3452bca1e73f', 'BJ9980', '1', NULL, 90, NULL, 'admin', '2019-02-16 17:36:42', 'admin', '2019-02-16 17:46:16', NULL); -INSERT INTO "public"."jeecg_order_main" VALUES ('f71f7f8930b5b6b1703d9948d189982b', 'BY911', NULL, '2019-04-06 19:08:39', NULL, NULL, 'admin', '2019-04-01 16:36:02', 'admin', '2019-04-01 16:36:08', NULL); -INSERT INTO "public"."jeecg_order_main" VALUES ('f8889aaef6d1bccffd98d2889c0aafb5', 'A100', NULL, '2018-10-10 00:00:00', 6000, NULL, 'jeecg-boot', '2019-03-29 18:43:59', NULL, NULL, NULL); - --- ---------------------------- --- Table structure for jeecg_order_ticket --- ---------------------------- -DROP TABLE IF EXISTS "public"."jeecg_order_ticket"; -CREATE TABLE "public"."jeecg_order_ticket" ( - "id" varchar(32) COLLATE "pg_catalog"."default" NOT NULL, - "ticket_code" varchar(100) COLLATE "pg_catalog"."default" NOT NULL, - "tickect_date" timestamp(6), - "order_id" varchar(32) COLLATE "pg_catalog"."default" NOT NULL, - "create_by" varchar(32) COLLATE "pg_catalog"."default", - "create_time" timestamp(6), - "update_by" varchar(32) COLLATE "pg_catalog"."default", - "update_time" timestamp(6) -)TABLESPACE "stas" -; -COMMENT ON COLUMN "public"."jeecg_order_ticket"."id" IS '主键'; -COMMENT ON COLUMN "public"."jeecg_order_ticket"."ticket_code" IS '航班号'; -COMMENT ON COLUMN "public"."jeecg_order_ticket"."tickect_date" IS '航班时间'; -COMMENT ON COLUMN "public"."jeecg_order_ticket"."order_id" IS '外键'; -COMMENT ON COLUMN "public"."jeecg_order_ticket"."create_by" IS '创建人'; -COMMENT ON COLUMN "public"."jeecg_order_ticket"."create_time" IS '创建时间'; -COMMENT ON COLUMN "public"."jeecg_order_ticket"."update_by" IS '修改人'; -COMMENT ON COLUMN "public"."jeecg_order_ticket"."update_time" IS '修改时间'; - --- ---------------------------- --- Records of jeecg_order_ticket --- ---------------------------- -INSERT INTO "public"."jeecg_order_ticket" VALUES ('0f0e3a40a215958f807eea08a6e1ac0a', '88', NULL, '54e739bef5b67569c963c38da52581ec', 'admin', '2019-03-15 16:50:15', NULL, NULL); -INSERT INTO "public"."jeecg_order_ticket" VALUES ('0fa3bd0bbcf53650c0bb3c0cac6d8cb7', 'ffff', '2019-02-21 00:00:00', 'eb13ab35d2946a2b0cfe3452bca1e73f', 'admin', '2019-02-25 16:29:41', NULL, NULL); -INSERT INTO "public"."jeecg_order_ticket" VALUES ('1256527640543735810', '222', '2019-02-23 00:00:00', 'b190737bd04cca8360e6f87c9ef9ec4e', 'admin', '2020-05-02 18:15:09', NULL, NULL); -INSERT INTO "public"."jeecg_order_ticket" VALUES ('1256527640560513025', '111', '2019-02-01 00:00:00', 'b190737bd04cca8360e6f87c9ef9ec4e', 'admin', '2020-05-02 18:15:09', NULL, NULL); -INSERT INTO "public"."jeecg_order_ticket" VALUES ('14221afb4f5f749c1deef26ac56fdac3', '33', '2019-03-09 00:00:00', '54e739bef5b67569c963c38da52581ec', 'admin', '2019-03-15 16:50:15', NULL, NULL); -INSERT INTO "public"."jeecg_order_ticket" VALUES ('15538561502730', '222', NULL, '0d4a2e67b538ee1bc881e5ed34f670f0', 'jeecg-boot', '2019-03-29 18:42:55', NULL, NULL); -INSERT INTO "public"."jeecg_order_ticket" VALUES ('15538561526461', '2244', '2019-03-29 00:00:00', '0d4a2e67b538ee1bc881e5ed34f670f0', 'jeecg-boot', '2019-03-29 18:42:55', 'admin', '2019-03-29 18:43:26'); -INSERT INTO "public"."jeecg_order_ticket" VALUES ('15541168478913', 'hhhhh', NULL, 'f71f7f8930b5b6b1703d9948d189982b', 'admin', '2019-04-01 19:08:45', NULL, NULL); -INSERT INTO "public"."jeecg_order_ticket" VALUES ('1572781834508132353', '232', '2022-10-01 00:00:00', '9a57c850e4f68cf94ef7d8585dbaf7e6', 'admin', '2022-09-22 10:56:25', NULL, NULL); -INSERT INTO "public"."jeecg_order_ticket" VALUES ('18905bc89ee3851805aab38ed3b505ec', '44', NULL, '54e739bef5b67569c963c38da52581ec', 'admin', '2019-03-15 16:50:15', NULL, NULL); -INSERT INTO "public"."jeecg_order_ticket" VALUES ('1f809cbd26f4e574697e1c10de575d72', 'A100', NULL, 'e73434dad84ebdce2d4e0c2a2f06d8ea', 'jeecg-boot', '2019-03-29 18:43:59', NULL, NULL); -INSERT INTO "public"."jeecg_order_ticket" VALUES ('21051adb51529bdaa8798b5a3dd7f7f7', 'C10029', '2019-02-20 00:00:00', '54e739bef5b67569c963c38da52581ec', 'admin', '2019-03-15 16:50:15', NULL, NULL); -INSERT INTO "public"."jeecg_order_ticket" VALUES ('269576e766b917f8b6509a2bb0c4d4bd', 'A100', NULL, '163e2efcbc6d7d54eb3f8a137da8a75a', 'jeecg-boot', '2019-03-29 18:43:59', NULL, NULL); -INSERT INTO "public"."jeecg_order_ticket" VALUES ('2d473ffc79e5b38a17919e15f8b7078e', '66', '2019-03-29 00:00:00', '54e739bef5b67569c963c38da52581ec', 'admin', '2019-03-15 16:50:15', NULL, NULL); -INSERT INTO "public"."jeecg_order_ticket" VALUES ('3655b66fca5fef9c6aac6d70182ffda2', 'AA123', '2019-04-01 00:00:00', 'd908bfee3377e946e59220c4a4eb414a', 'admin', '2019-04-01 16:27:03', NULL, NULL); -INSERT INTO "public"."jeecg_order_ticket" VALUES ('365d5919155473ade45840fd626c51a9', 'dddd', '2019-04-04 17:25:29', '8ab1186410a65118c4d746eb085d3bed', 'admin', '2019-04-04 17:25:33', NULL, NULL); -INSERT INTO "public"."jeecg_order_ticket" VALUES ('4889a782e78706ab4306a925cfb163a5', 'C34', '2019-04-01 00:00:00', 'd908bfee3377e946e59220c4a4eb414a', 'admin', '2019-04-01 16:35:00', 'admin', '2019-04-01 16:35:07'); -INSERT INTO "public"."jeecg_order_ticket" VALUES ('48d385796382cf87fa4bdf13b42d9a28', '导入A100', NULL, '3a867ebf2cebce9bae3f79676d8d86f3', 'jeecg-boot', '2019-03-29 18:43:59', NULL, NULL); -INSERT INTO "public"."jeecg_order_ticket" VALUES ('541faed56efbeb4be9df581bd8264d3a', '88', NULL, '54e739bef5b67569c963c38da52581ec', 'admin', '2019-03-15 16:50:15', NULL, NULL); -INSERT INTO "public"."jeecg_order_ticket" VALUES ('57a27a7dfd6a48e7d981f300c181b355', '6', '2019-03-30 00:00:00', '54e739bef5b67569c963c38da52581ec', 'admin', '2019-03-15 16:50:15', NULL, NULL); -INSERT INTO "public"."jeecg_order_ticket" VALUES ('5ce4dc439c874266e42e6c0ff8dc8b5c', '导入A100', NULL, 'a2cce75872cc8fcc47f78de9ffd378c2', 'jeecg-boot', '2019-03-29 18:43:59', NULL, NULL); -INSERT INTO "public"."jeecg_order_ticket" VALUES ('645a06152998a576c051474157625c41', '88', '2019-04-04 17:25:31', '8ab1186410a65118c4d746eb085d3bed', 'admin', '2019-04-04 17:25:33', NULL, NULL); -INSERT INTO "public"."jeecg_order_ticket" VALUES ('6e3562f2571ea9e96b2d24497b5f5eec', '55', '2019-03-23 00:00:00', '54e739bef5b67569c963c38da52581ec', 'admin', '2019-03-15 16:50:15', NULL, NULL); -INSERT INTO "public"."jeecg_order_ticket" VALUES ('8fd2b389151568738b1cc4d8e27a6110', '导入A100', NULL, 'a2cce75872cc8fcc47f78de9ffd378c2', 'jeecg-boot', '2019-03-29 18:43:59', NULL, NULL); -INSERT INTO "public"."jeecg_order_ticket" VALUES ('93f1a84053e546f59137432ff5564cac', '55', NULL, '54e739bef5b67569c963c38da52581ec', 'admin', '2019-03-15 16:50:15', NULL, NULL); -INSERT INTO "public"."jeecg_order_ticket" VALUES ('969ddc5d2e198d50903686917f996470', 'A10029', '2019-04-01 00:00:00', 'f71f7f8930b5b6b1703d9948d189982b', 'admin', '2019-04-01 19:08:45', NULL, NULL); -INSERT INTO "public"."jeecg_order_ticket" VALUES ('96e7303a8d22a5c384e08d7bcf7ac2bf', 'A100', NULL, 'e73434dad84ebdce2d4e0c2a2f06d8ea', 'jeecg-boot', '2019-03-29 18:43:59', NULL, NULL); -INSERT INTO "public"."jeecg_order_ticket" VALUES ('9e8a3336f6c63f558f2b68ce2e1e666e', '深圳1001', '2020-05-02 00:00:00', '9a57c850e4f68cf94ef7d8585dbaf7e6', 'admin', '2020-05-02 18:17:37', 'admin', '2022-09-22 10:56:25'); -INSERT INTO "public"."jeecg_order_ticket" VALUES ('a28db02c810c65660015095cb81ed434', 'A100', NULL, 'f8889aaef6d1bccffd98d2889c0aafb5', 'jeecg-boot', '2019-03-29 18:43:59', NULL, NULL); -INSERT INTO "public"."jeecg_order_ticket" VALUES ('b217bb0e4ec6a45b6cbf6db880060c0f', 'A100', NULL, '6a719071a29927a14f19482f8693d69a', 'jeecg-boot', '2019-03-29 18:43:59', NULL, NULL); -INSERT INTO "public"."jeecg_order_ticket" VALUES ('ba708df70bb2652ed1051a394cfa0bb3', '333', NULL, '54e739bef5b67569c963c38da52581ec', 'admin', '2019-03-15 16:50:15', NULL, NULL); -INSERT INTO "public"."jeecg_order_ticket" VALUES ('beabbfcb195d39bedeeafe8318794562', 'A1345', '2019-04-01 00:00:00', 'd908bfee3377e946e59220c4a4eb414a', 'admin', '2019-04-01 16:27:04', NULL, NULL); -INSERT INTO "public"."jeecg_order_ticket" VALUES ('bf450223cb505f89078a311ef7b6ed16', '777', '2019-03-30 00:00:00', '54e739bef5b67569c963c38da52581ec', 'admin', '2019-03-15 16:50:15', NULL, NULL); -INSERT INTO "public"."jeecg_order_ticket" VALUES ('c06165b6603e3e1335db187b3c841eef', '北京2001', '2020-05-23 00:00:00', '9a57c850e4f68cf94ef7d8585dbaf7e6', 'admin', '2020-05-02 18:17:37', 'admin', '2022-09-22 10:56:25'); -INSERT INTO "public"."jeecg_order_ticket" VALUES ('c113136abc26ace3a6da4e41d7dc1c7e', '44', '2019-03-15 00:00:00', '54e739bef5b67569c963c38da52581ec', 'admin', '2019-03-15 16:50:15', NULL, NULL); -INSERT INTO "public"."jeecg_order_ticket" VALUES ('c1abdc2e30aeb25de13ad6ee3488ac24', '77', '2019-03-22 00:00:00', '54e739bef5b67569c963c38da52581ec', 'admin', '2019-03-15 16:50:15', NULL, NULL); -INSERT INTO "public"."jeecg_order_ticket" VALUES ('c23751a7deb44f553ce50a94948c042a', '33', '2019-03-09 00:00:00', '8ab1186410a65118c4d746eb085d3bed', 'admin', '2019-04-04 17:25:33', NULL, NULL); -INSERT INTO "public"."jeecg_order_ticket" VALUES ('c64547666b634b3d6a0feedcf05f25ce', 'C10019', '2019-04-01 00:00:00', 'f71f7f8930b5b6b1703d9948d189982b', 'admin', '2019-04-01 19:08:45', NULL, NULL); -INSERT INTO "public"."jeecg_order_ticket" VALUES ('c8b8d3217f37da78dddf711a1f7da485', 'A100', NULL, '163e2efcbc6d7d54eb3f8a137da8a75a', 'jeecg-boot', '2019-03-29 18:43:59', NULL, NULL); -INSERT INTO "public"."jeecg_order_ticket" VALUES ('cab691c1c1ff7a6dfd7248421917fd3c', 'A100', NULL, 'f8889aaef6d1bccffd98d2889c0aafb5', 'jeecg-boot', '2019-03-29 18:43:59', NULL, NULL); -INSERT INTO "public"."jeecg_order_ticket" VALUES ('cca10a9a850b456d9b72be87da7b0883', '77', NULL, '54e739bef5b67569c963c38da52581ec', 'admin', '2019-03-15 16:50:15', NULL, NULL); -INSERT INTO "public"."jeecg_order_ticket" VALUES ('d2fbba11f4814d9b1d3cb1a3f342234a', 'C10019', '2019-02-18 00:00:00', '54e739bef5b67569c963c38da52581ec', 'admin', '2019-03-15 16:50:15', NULL, NULL); -INSERT INTO "public"."jeecg_order_ticket" VALUES ('dbdb07a16826808e4276e84b2aa4731a', '导入A100', NULL, '3a867ebf2cebce9bae3f79676d8d86f3', 'jeecg-boot', '2019-03-29 18:43:59', NULL, NULL); -INSERT INTO "public"."jeecg_order_ticket" VALUES ('e7075639c37513afc0bbc4bf7b5d98b9', '88', NULL, '54e739bef5b67569c963c38da52581ec', 'admin', '2019-03-15 16:50:15', NULL, NULL); -INSERT INTO "public"."jeecg_order_ticket" VALUES ('fa759dc104d0371f8aa28665b323dab6', '888', NULL, '54e739bef5b67569c963c38da52581ec', 'admin', '2019-03-15 16:50:15', NULL, NULL); -INSERT INTO "public"."jeecg_order_ticket" VALUES ('ff197da84a9a3af53878eddc91afbb2e', '33', NULL, '54e739bef5b67569c963c38da52581ec', 'admin', '2019-03-15 16:50:15', NULL, NULL); - --- ---------------------------- --- Table structure for jimu_dict --- ---------------------------- -DROP TABLE IF EXISTS "public"."jimu_dict"; -CREATE TABLE "public"."jimu_dict" ( - "id" varchar(32) COLLATE "pg_catalog"."default" NOT NULL, - "dict_name" varchar(100) COLLATE "pg_catalog"."default" NOT NULL, - "dict_code" varchar(100) COLLATE "pg_catalog"."default" NOT NULL, - "description" varchar(255) COLLATE "pg_catalog"."default", - "del_flag" int4, - "create_by" varchar(32) COLLATE "pg_catalog"."default", - "create_time" timestamp(6), - "update_by" varchar(32) COLLATE "pg_catalog"."default", - "update_time" timestamp(6), - "type" int8, - "tenant_id" varchar(10) COLLATE "pg_catalog"."default" -)TABLESPACE "stas" -; -COMMENT ON COLUMN "public"."jimu_dict"."dict_name" IS '字典名称'; -COMMENT ON COLUMN "public"."jimu_dict"."dict_code" IS '字典编码'; -COMMENT ON COLUMN "public"."jimu_dict"."description" IS '描述'; -COMMENT ON COLUMN "public"."jimu_dict"."del_flag" IS '删除状态'; -COMMENT ON COLUMN "public"."jimu_dict"."create_by" IS '创建人'; -COMMENT ON COLUMN "public"."jimu_dict"."create_time" IS '创建时间'; -COMMENT ON COLUMN "public"."jimu_dict"."update_by" IS '更新人'; -COMMENT ON COLUMN "public"."jimu_dict"."update_time" IS '更新时间'; -COMMENT ON COLUMN "public"."jimu_dict"."type" IS '字典类型0为string,1为number'; -COMMENT ON COLUMN "public"."jimu_dict"."tenant_id" IS '多租户标识'; - --- ---------------------------- --- Records of jimu_dict --- ---------------------------- -INSERT INTO "public"."jimu_dict" VALUES ('0b5d19e1fce4b2e6647e6b4a17760c14', '通告类型', 'msg_category', '消息类型1:通知公告2:系统消息', 0, 'admin', '2019-04-22 18:01:35', NULL, NULL, 0, NULL); -INSERT INTO "public"."jimu_dict" VALUES ('1047797573274468352', '系统图库', 'gallery', '', 0, 'admin', '2025-02-07 19:00:19', NULL, NULL, 0, '1'); -INSERT INTO "public"."jimu_dict" VALUES ('1174509082208395266', '职务职级', 'position_rank', '职务表职级字典', 0, 'admin', '2019-09-19 10:22:41', NULL, NULL, 0, NULL); -INSERT INTO "public"."jimu_dict" VALUES ('1174511106530525185', '机构类型', 'org_category', '机构类型 1公司,2部门 3岗位', 0, 'admin', '2019-09-19 10:30:43', NULL, NULL, 0, NULL); -INSERT INTO "public"."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 "public"."jimu_dict" VALUES ('1199517671259906049', '紧急程度', 'urgent_level', '日程计划紧急程度', 0, 'admin', '2019-11-27 10:37:53', NULL, NULL, 0, NULL); -INSERT INTO "public"."jimu_dict" VALUES ('1199518099888414722', '日程计划类型', 'eoa_plan_type', '', 0, 'admin', '2019-11-27 10:39:36', NULL, NULL, 0, NULL); -INSERT INTO "public"."jimu_dict" VALUES ('1199520177767587841', '分类栏目类型', 'eoa_cms_menu_type', '', 0, 'admin', '2019-11-27 10:47:51', 'admin', '2019-11-27 10:49:35', 0, NULL); -INSERT INTO "public"."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 "public"."jimu_dict" VALUES ('1209733563293962241', '数据库类型', 'database_type', '', 0, 'admin', '2019-12-25 15:12:12', NULL, NULL, 0, NULL); -INSERT INTO "public"."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 "public"."jimu_dict" VALUES ('1250687930947620866', '定时任务状态', 'quartz_status', '', 0, 'admin', '2020-04-16 15:30:14', '', NULL, NULL, NULL); -INSERT INTO "public"."jimu_dict" VALUES ('1280401766745718786', '租户状态', 'tenant_status', '租户状态', 0, 'admin', '2020-07-07 15:22:25', NULL, NULL, 0, NULL); -INSERT INTO "public"."jimu_dict" VALUES ('1356445645198135298', '开关', 'is_open', '', 0, 'admin', '2021-02-02 11:33:38', 'admin', '2021-02-02 15:28:12', 0, NULL); -INSERT INTO "public"."jimu_dict" VALUES ('236e8a4baff0db8c62c00dd95632834f', '同步工作流引擎', 'activiti_sync', '同步工作流引擎', 0, 'admin', '2019-05-15 15:27:33', NULL, NULL, 0, NULL); -INSERT INTO "public"."jimu_dict" VALUES ('2e02df51611a4b9632828ab7e5338f00', '权限策略', 'perms_type', '权限策略', 0, 'admin', '2019-04-26 18:26:55', NULL, NULL, 0, NULL); -INSERT INTO "public"."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 "public"."jimu_dict" VALUES ('3486f32803bb953e7155dab3513dc68b', '删除状态', 'del_flag', NULL, 0, 'admin', '2019-01-18 21:46:26', 'admin', '2019-03-30 11:17:11', 0, NULL); -INSERT INTO "public"."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 "public"."jimu_dict" VALUES ('4274efc2292239b6f000b153f50823ff', '全局权限策略', 'global_perms_type', '全局权限策略', 0, 'admin', '2019-05-10 17:54:05', NULL, NULL, 0, NULL); -INSERT INTO "public"."jimu_dict" VALUES ('4c03fca6bf1f0299c381213961566349', 'Online图表展示模板', 'online_graph_display_template', 'Online图表展示模板', 0, 'admin', '2019-04-12 17:28:50', NULL, NULL, 0, NULL); -INSERT INTO "public"."jimu_dict" VALUES ('4c753b5293304e7a445fd2741b46529d', '字典状态', 'dict_item_status', NULL, 0, 'admin', '2020-06-18 23:18:42', 'admin', '2019-03-30 19:33:52', 1, NULL); -INSERT INTO "public"."jimu_dict" VALUES ('4d7fec1a7799a436d26d02325eff295e', '优先级', 'priority', '优先级', 0, 'admin', '2019-03-16 17:03:34', 'admin', '2019-04-16 17:39:23', 0, NULL); -INSERT INTO "public"."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 "public"."jimu_dict" VALUES ('4f69be5f507accea8d5df5f11346181a', '发送消息类型', 'msgType', NULL, 0, 'admin', '2019-04-11 14:27:09', NULL, NULL, 0, NULL); -INSERT INTO "public"."jimu_dict" VALUES ('68168534ff5065a152bfab275c2136f8', '有效无效状态', 'valid_status', '有效无效状态', 0, 'admin', '2020-09-26 19:21:14', 'admin', '2019-04-26 19:21:23', 0, NULL); -INSERT INTO "public"."jimu_dict" VALUES ('6b78e3f59faec1a4750acff08030a79b', '用户类型', 'user_type', NULL, 0, NULL, '2019-01-04 14:59:01', 'admin', '2019-03-18 23:28:18', 0, NULL); -INSERT INTO "public"."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 "public"."jimu_dict" VALUES ('78bda155fe380b1b3f175f1e88c284c6', '流程状态', 'bpm_status', '流程状态', 0, 'admin', '2019-05-09 16:31:52', NULL, NULL, 0, NULL); -INSERT INTO "public"."jimu_dict" VALUES ('83bfb33147013cc81640d5fd9eda030c', '日志类型', 'log_type', NULL, 0, 'admin', '2019-03-18 23:22:19', NULL, NULL, 1, NULL); -INSERT INTO "public"."jimu_dict" VALUES ('845da5006c97754728bf48b6a10f79cc', '状态', 'status', NULL, 0, 'admin', '2019-03-18 21:45:25', 'admin', '2019-03-18 21:58:25', 0, NULL); -INSERT INTO "public"."jimu_dict" VALUES ('880a895c98afeca9d9ac39f29e67c13e', '操作类型', 'operate_type', '操作类型', 0, 'admin', '2019-07-22 10:54:29', NULL, NULL, 0, NULL); -INSERT INTO "public"."jimu_dict" VALUES ('8dfe32e2d29ea9430a988b3b558bf233', '发布状态', 'send_status', '发布状态', 0, 'admin', '2019-04-16 17:40:42', NULL, NULL, 0, NULL); -INSERT INTO "public"."jimu_dict" VALUES ('986779503584169984', '民族', 'minzu', '', 0, 'admin', '2024-08-23 09:56:17', 'admin', '2025-01-09 10:42:06', 0, '1001'); -INSERT INTO "public"."jimu_dict" VALUES ('986783181955223552', '学历', 'xueli_sf', '', 0, 'admin', '2024-08-23 10:10:54', NULL, NULL, NULL, NULL); -INSERT INTO "public"."jimu_dict" VALUES ('986784113082322944', '爱好', 'aihao', '', 0, 'admin', '2024-08-23 10:14:36', NULL, NULL, NULL, NULL); -INSERT INTO "public"."jimu_dict" VALUES ('a7adbcd86c37f7dbc9b66945c82ef9e6', '1是0否', 'yn', '', 0, 'admin', '2019-05-22 19:29:29', NULL, NULL, 0, NULL); -INSERT INTO "public"."jimu_dict" VALUES ('a9d9942bd0eccb6e89de92d130ec4c4a', '消息发送状态', 'msgSendStatus', NULL, 0, 'admin', '2019-04-12 18:18:17', NULL, NULL, 0, NULL); -INSERT INTO "public"."jimu_dict" VALUES ('ac2f7c0c5c5775fcea7e2387bcb22f01', '菜单类型', 'menu_type', NULL, 0, 'admin', '2020-12-18 23:24:32', 'admin', '2019-04-01 15:27:06', 1, NULL); -INSERT INTO "public"."jimu_dict" VALUES ('ad7c65ba97c20a6805d5dcdf13cdaf36', 'onlineT类型', 'ceshi_online', NULL, 0, 'admin', '2019-03-22 16:31:49', 'admin', '2019-03-22 16:34:16', 0, NULL); -INSERT INTO "public"."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 "public"."jimu_dict" VALUES ('c36169beb12de8a71c8683ee7c28a503', '部门状态', 'depart_status', NULL, 0, 'admin', '2019-03-18 21:59:51', NULL, NULL, 0, NULL); -INSERT INTO "public"."jimu_dict" VALUES ('c5a14c75172783d72cbee6ee7f5df5d1', 'Online图表类型', 'online_graph_type', 'Online图表类型', 0, 'admin', '2019-04-12 17:04:06', NULL, NULL, 0, NULL); -INSERT INTO "public"."jimu_dict" VALUES ('d6e1152968b02d69ff358c75b48a6ee1', '流程类型', 'bpm_process_type', NULL, 0, 'admin', '2021-02-22 19:26:54', 'admin', '2025-01-09 10:35:04', 0, '1001'); -INSERT INTO "public"."jimu_dict" VALUES ('fc6cd58fde2e8481db10d3a1e68ce70c', '用户状态', 'user_status', NULL, 0, 'admin', '2019-03-18 21:57:25', 'admin', '2019-03-18 23:11:58', 1, NULL); - --- ---------------------------- --- Table structure for jimu_dict_item --- ---------------------------- -DROP TABLE IF EXISTS "public"."jimu_dict_item"; -CREATE TABLE "public"."jimu_dict_item" ( - "id" varchar(32) COLLATE "pg_catalog"."default" NOT NULL, - "dict_id" varchar(32) COLLATE "pg_catalog"."default", - "item_text" varchar(100) COLLATE "pg_catalog"."default" NOT NULL, - "item_value" varchar(100) COLLATE "pg_catalog"."default" NOT NULL, - "description" varchar(255) COLLATE "pg_catalog"."default", - "sort_order" int4, - "status" int4, - "create_by" varchar(32) COLLATE "pg_catalog"."default", - "create_time" timestamp(6), - "update_by" varchar(32) COLLATE "pg_catalog"."default", - "update_time" timestamp(6) -)TABLESPACE "stas" -; -COMMENT ON COLUMN "public"."jimu_dict_item"."dict_id" IS '字典id'; -COMMENT ON COLUMN "public"."jimu_dict_item"."item_text" IS '字典项文本'; -COMMENT ON COLUMN "public"."jimu_dict_item"."item_value" IS '字典项值'; -COMMENT ON COLUMN "public"."jimu_dict_item"."description" IS '描述'; -COMMENT ON COLUMN "public"."jimu_dict_item"."sort_order" IS '排序'; -COMMENT ON COLUMN "public"."jimu_dict_item"."status" IS '状态(1启用 0不启用)'; - --- ---------------------------- --- Records of jimu_dict_item --- ---------------------------- -INSERT INTO "public"."jimu_dict_item" VALUES ('0072d115e07c875d76c9b022e2179128', '4d7fec1a7799a436d26d02325eff295e', '低', 'L', '低', 3, 1, 'admin', '2019-04-16 17:04:59', NULL, NULL); -INSERT INTO "public"."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 "public"."jimu_dict_item" VALUES ('096c2e758d823def3855f6376bc736fb', 'bd1b8bc28e65d6feefefb6f3c79f42fd', 'SQL', 'sql', NULL, 1, 1, 'admin', '2019-04-12 17:26:26', NULL, NULL); -INSERT INTO "public"."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 "public"."jimu_dict_item" VALUES ('0ca4beba9efc4f9dd54af0911a946d5c', '72cce0989df68887546746d8f09811aa', '附表', '3', NULL, 3, 1, 'admin', '2019-03-27 10:13:43', NULL, NULL); -INSERT INTO "public"."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 "public"."jimu_dict_item" VALUES ('1047797624512086016', '1047797573274468352', '常规', 'common', NULL, 1, 1, 'admin', '2025-02-07 19:00:31', NULL, NULL); -INSERT INTO "public"."jimu_dict_item" VALUES ('1047797669877678080', '1047797573274468352', '指向', 'point', NULL, 1, 1, 'admin', '2025-02-07 19:00:42', '15931993294', '2025-02-07 19:01:11'); -INSERT INTO "public"."jimu_dict_item" VALUES ('1047797751893098410', '1047797573274468352', '数据指标', 'data', NULL, 1, 1, 'admin', '2025-03-12 19:01:01', NULL, NULL); -INSERT INTO "public"."jimu_dict_item" VALUES ('1047797751893098411', '1047797573274468352', '数据安全', 'datasafe', NULL, 1, 1, 'admin', '2025-03-12 19:01:01', NULL, NULL); -INSERT INTO "public"."jimu_dict_item" VALUES ('1057910209549750272', '1047797573274468352', '3D', '3D', NULL, 1, 1, 'admin', '2025-03-07 16:44:19', NULL, NULL); -INSERT INTO "public"."jimu_dict_item" VALUES ('1174509082208395266', '1174511106530525185', '岗位', '3', '岗位', 1, 1, 'admin', '2019-09-19 10:31:16', '', NULL); -INSERT INTO "public"."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 "public"."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 "public"."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 "public"."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 "public"."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 "public"."jimu_dict_item" VALUES ('1174511197735665665', '1174511106530525185', '公司', '1', '公司', 1, 1, 'admin', '2019-09-19 10:31:05', NULL, NULL); -INSERT INTO "public"."jimu_dict_item" VALUES ('1174511244036587521', '1174511106530525185', '部门', '2', '部门', 1, 1, 'admin', '2019-09-19 10:31:16', NULL, NULL); -INSERT INTO "public"."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 "public"."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 "public"."jimu_dict_item" VALUES ('1199517884758368257', '1199517671259906049', '一般', '1', '', 1, 1, 'admin', '2019-11-27 10:38:44', NULL, NULL); -INSERT INTO "public"."jimu_dict_item" VALUES ('1199517914017832962', '1199517671259906049', '重要', '2', '', 1, 1, 'admin', '2019-11-27 10:38:51', NULL, NULL); -INSERT INTO "public"."jimu_dict_item" VALUES ('1199517941339529217', '1199517671259906049', '紧急', '3', '', 1, 1, 'admin', '2019-11-27 10:38:58', NULL, NULL); -INSERT INTO "public"."jimu_dict_item" VALUES ('1199518186144276482', '1199518099888414722', '日常记录', '1', '', 1, 1, 'admin', '2019-11-27 10:39:56', NULL, NULL); -INSERT INTO "public"."jimu_dict_item" VALUES ('1199518214858481666', '1199518099888414722', '本周工作', '2', '', 1, 1, 'admin', '2019-11-27 10:40:03', NULL, NULL); -INSERT INTO "public"."jimu_dict_item" VALUES ('1199518235943247874', '1199518099888414722', '下周计划', '3', '', 1, 1, 'admin', '2019-11-27 10:40:08', NULL, NULL); -INSERT INTO "public"."jimu_dict_item" VALUES ('1199520817285701634', '1199520177767587841', '列表', '1', '', 1, 1, 'admin', '2019-11-27 10:50:24', NULL, NULL); -INSERT INTO "public"."jimu_dict_item" VALUES ('1199520835035996161', '1199520177767587841', '链接', '2', '', 1, 1, 'admin', '2019-11-27 10:50:28', NULL, NULL); -INSERT INTO "public"."jimu_dict_item" VALUES ('1199525468672405505', '1199525215290306561', '未开始', '0', '', 1, 1, 'admin', '2019-11-27 11:08:52', NULL, NULL); -INSERT INTO "public"."jimu_dict_item" VALUES ('1199525490575060993', '1199525215290306561', '进行中', '1', '', 1, 1, 'admin', '2019-11-27 11:08:58', NULL, NULL); -INSERT INTO "public"."jimu_dict_item" VALUES ('1199525506429530114', '1199525215290306561', '已完成', '2', '', 1, 1, 'admin', '2019-11-27 11:09:02', 'admin', '2019-11-27 11:10:02'); -INSERT INTO "public"."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 "public"."jimu_dict_item" VALUES ('1209733775114702850', '1209733563293962241', 'MySQL5.5', '1', '', 1, 1, 'admin', '2019-12-25 15:13:02', NULL, NULL); -INSERT INTO "public"."jimu_dict_item" VALUES ('1209733839933476865', '1209733563293962241', 'Oracle', '2', '', 3, 1, 'admin', '2019-12-25 15:13:18', NULL, NULL); -INSERT INTO "public"."jimu_dict_item" VALUES ('1209733903020003330', '1209733563293962241', 'SQLServer', '3', '', 4, 1, 'admin', '2019-12-25 15:13:33', NULL, NULL); -INSERT INTO "public"."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 "public"."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 "public"."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 "public"."jimu_dict_item" VALUES ('1232914232372195330', '1232913193820581889', '导入表单', 'bdfl_include', '', 5, 1, 'admin', '2020-02-27 14:23:54', NULL, NULL); -INSERT INTO "public"."jimu_dict_item" VALUES ('1234371726545010689', '4e4602b3e3686f0911384e188dc7efb4', '左模糊', 'LEFT_LIKE', '左模糊', 7, 1, 'admin', '2020-03-02 14:55:27', NULL, NULL); -INSERT INTO "public"."jimu_dict_item" VALUES ('1234371809495760898', '4e4602b3e3686f0911384e188dc7efb4', '右模糊', 'RIGHT_LIKE', '右模糊', 7, 1, 'admin', '2020-03-02 14:55:47', NULL, NULL); -INSERT INTO "public"."jimu_dict_item" VALUES ('1250688147579228161', '1250687930947620866', '正常', '0', '', 1, 1, 'admin', '2020-04-16 15:31:05', '', NULL); -INSERT INTO "public"."jimu_dict_item" VALUES ('1250688201064992770', '1250687930947620866', '停止', '-1', '', 1, 1, 'admin', '2020-04-16 15:31:18', '', NULL); -INSERT INTO "public"."jimu_dict_item" VALUES ('1280401815068295170', '1280401766745718786', '正常', '1', '', 1, 1, 'admin', '2020-07-07 15:22:36', NULL, NULL); -INSERT INTO "public"."jimu_dict_item" VALUES ('1280401847607705602', '1280401766745718786', '冻结', '0', '', 1, 1, 'admin', '2020-07-07 15:22:44', NULL, NULL); -INSERT INTO "public"."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 "public"."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 "public"."jimu_dict_item" VALUES ('1356445705549975553', '1356445645198135298', '是', 'Y', '', 1, 1, 'admin', '2021-02-02 11:33:52', NULL, NULL); -INSERT INTO "public"."jimu_dict_item" VALUES ('1356445754212290561', '1356445645198135298', '否', 'N', '', 1, 1, 'admin', '2021-02-02 11:34:04', NULL, NULL); -INSERT INTO "public"."jimu_dict_item" VALUES ('147c48ff4b51545032a9119d13f3222a', 'd6e1152968b02d69ff358c75b48a6ee1', '测试流程', 'test', NULL, 1, 1, 'admin', '2019-03-22 19:27:05', 'admin', '2025-01-09 10:35:08'); -INSERT INTO "public"."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 "public"."jimu_dict_item" VALUES ('1ce390c52453891f93514c1bd2795d44', 'ad7c65ba97c20a6805d5dcdf13cdaf36', '000', '00', NULL, 1, 1, 'admin', '2019-03-22 16:34:34', NULL, NULL); -INSERT INTO "public"."jimu_dict_item" VALUES ('1db531bcff19649fa82a644c8a939dc4', '4c03fca6bf1f0299c381213961566349', '组合布局', 'combination', '', 4, 1, 'admin', '2019-05-11 16:07:08', NULL, NULL); -INSERT INTO "public"."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 "public"."jimu_dict_item" VALUES ('23a5bb76004ed0e39414e928c4cde155', '4e4602b3e3686f0911384e188dc7efb4', '不等于', '!=', '不等于', 3, 1, 'admin', '2019-04-01 16:46:15', 'admin', '2019-04-01 17:48:40'); -INSERT INTO "public"."jimu_dict_item" VALUES ('25847e9cb661a7c711f9998452dc09e6', '4e4602b3e3686f0911384e188dc7efb4', '小于等于', '<=', '小于等于', 6, 1, 'admin', '2019-04-01 16:44:34', 'admin', '2019-04-01 17:49:10'); -INSERT INTO "public"."jimu_dict_item" VALUES ('2d51376643f220afdeb6d216a8ac2c01', '68168534ff5065a152bfab275c2136f8', '有效', '1', '有效', 2, 1, 'admin', '2019-04-26 19:22:01', NULL, NULL); -INSERT INTO "public"."jimu_dict_item" VALUES ('308c8aadf0c37ecdde188b97ca9833f5', '8dfe32e2d29ea9430a988b3b558bf233', '已发布', '1', '已发布', 2, 1, 'admin', '2019-04-16 17:41:24', NULL, NULL); -INSERT INTO "public"."jimu_dict_item" VALUES ('333e6b2196e01ef9a5f76d74e86a6e33', '8dfe32e2d29ea9430a988b3b558bf233', '未发布', '0', '未发布', 1, 1, 'admin', '2019-04-16 17:41:12', NULL, NULL); -INSERT INTO "public"."jimu_dict_item" VALUES ('337ea1e401bda7233f6258c284ce4f50', 'bd1b8bc28e65d6feefefb6f3c79f42fd', 'JSON', 'json', NULL, 1, 1, 'admin', '2019-04-12 17:26:33', NULL, NULL); -INSERT INTO "public"."jimu_dict_item" VALUES ('33bc9d9f753cf7dc40e70461e50fdc54', 'a9d9942bd0eccb6e89de92d130ec4c4a', '发送失败', '2', NULL, 3, 1, 'admin', '2019-04-12 18:20:02', NULL, NULL); -INSERT INTO "public"."jimu_dict_item" VALUES ('3fbc03d6c994ae06d083751248037c0e', '78bda155fe380b1b3f175f1e88c284c6', '已完成', '3', '已完成', 3, 1, 'admin', '2019-05-09 16:33:25', NULL, NULL); -INSERT INTO "public"."jimu_dict_item" VALUES ('41d7aaa40c9b61756ffb1f28da5ead8e', '0b5d19e1fce4b2e6647e6b4a17760c14', '通知公告', '1', NULL, 1, 1, 'admin', '2019-04-22 18:01:57', NULL, NULL); -INSERT INTO "public"."jimu_dict_item" VALUES ('41fa1e9571505d643aea87aeb83d4d76', '4e4602b3e3686f0911384e188dc7efb4', '等于', '=', '等于', 4, 1, 'admin', '2019-04-01 16:45:24', 'admin', '2019-04-01 17:49:00'); -INSERT INTO "public"."jimu_dict_item" VALUES ('43d2295b8610adce9510ff196a49c6e9', '845da5006c97754728bf48b6a10f79cc', '正常', '1', NULL, NULL, 1, 'admin', '2019-03-18 21:45:51', NULL, NULL); -INSERT INTO "public"."jimu_dict_item" VALUES ('4f05fb5376f4c61502c5105f52e4dd2b', '83bfb33147013cc81640d5fd9eda030c', '操作日志', '2', NULL, NULL, 1, 'admin', '2019-03-18 23:22:49', NULL, NULL); -INSERT INTO "public"."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 "public"."jimu_dict_item" VALUES ('51222413e5906cdaf160bb5c86fb827c', 'a7adbcd86c37f7dbc9b66945c82ef9e6', '是', '1', '', 1, 1, 'admin', '2019-05-22 19:29:45', NULL, NULL); -INSERT INTO "public"."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 "public"."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 "public"."jimu_dict_item" VALUES ('58b73b344305c99b9d8db0fc056bbc0a', '72cce0989df68887546746d8f09811aa', '主表', '2', NULL, 2, 1, 'admin', '2019-03-27 10:13:36', NULL, NULL); -INSERT INTO "public"."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 "public"."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 "public"."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 "public"."jimu_dict_item" VALUES ('66c952ae2c3701a993e7db58f3baf55e', '4e4602b3e3686f0911384e188dc7efb4', '大于', '>', '大于', 1, 1, 'admin', '2019-04-01 10:45:46', 'admin', '2019-04-01 17:48:29'); -INSERT INTO "public"."jimu_dict_item" VALUES ('6937c5dde8f92e9a00d4e2ded9198694', 'ad7c65ba97c20a6805d5dcdf13cdaf36', 'easyui', '3', NULL, 1, 1, 'admin', '2019-03-22 16:32:15', NULL, NULL); -INSERT INTO "public"."jimu_dict_item" VALUES ('69cacf64e244100289ddd4aa9fa3b915', 'a9d9942bd0eccb6e89de92d130ec4c4a', '未发送', '0', NULL, 1, 1, 'admin', '2019-04-12 18:19:23', NULL, NULL); -INSERT INTO "public"."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 "public"."jimu_dict_item" VALUES ('6c682d78ddf1715baf79a1d52d2aa8c2', '72cce0989df68887546746d8f09811aa', '单表', '1', NULL, 1, 1, 'admin', '2019-03-27 10:13:29', NULL, NULL); -INSERT INTO "public"."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 "public"."jimu_dict_item" VALUES ('6d4e26e78e1a09699182e08516c49fc4', '4d7fec1a7799a436d26d02325eff295e', '高', 'H', '高', 1, 1, 'admin', '2019-04-16 17:04:24', NULL, NULL); -INSERT INTO "public"."jimu_dict_item" VALUES ('700e9f030654f3f90e9ba76ab0713551', '6b78e3f59faec1a4750acff08030a79b', '333', '333', NULL, NULL, 1, 'admin', '2019-02-21 19:59:47', NULL, NULL); -INSERT INTO "public"."jimu_dict_item" VALUES ('7050c1522702bac3be40e3b7d2e1dfd8', 'c5a14c75172783d72cbee6ee7f5df5d1', '柱状图', 'bar', NULL, 1, 1, 'admin', '2019-04-12 17:05:17', NULL, NULL); -INSERT INTO "public"."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 "public"."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 "public"."jimu_dict_item" VALUES ('7688469db4a3eba61e6e35578dc7c2e5', 'c36169beb12de8a71c8683ee7c28a503', '启用', '1', NULL, NULL, 1, 'admin', '2019-03-18 23:29:28', NULL, NULL); -INSERT INTO "public"."jimu_dict_item" VALUES ('78ea6cadac457967a4b1c4eb7aaa418c', 'fc6cd58fde2e8481db10d3a1e68ce70c', '正常', '1', NULL, NULL, 1, 'admin', '2019-03-18 23:30:28', NULL, NULL); -INSERT INTO "public"."jimu_dict_item" VALUES ('7ccf7b80c70ee002eceb3116854b75cb', 'ac2f7c0c5c5775fcea7e2387bcb22f01', '按钮权限', '2', NULL, 1, 1, 'admin', '2019-03-18 23:25:40', 'jeecg', '2022-03-24 21:42:24'); -INSERT INTO "public"."jimu_dict_item" VALUES ('81fb2bb0e838dc68b43f96cc309f8257', 'fc6cd58fde2e8481db10d3a1e68ce70c', '冻结', '2', NULL, NULL, 1, 'admin', '2019-03-18 23:30:37', NULL, NULL); -INSERT INTO "public"."jimu_dict_item" VALUES ('83250269359855501ec4e9c0b7e21596', '4274efc2292239b6f000b153f50823ff', '可见/可访问(授权后可见/可访问)', '1', '', 1, 1, 'admin', '2019-05-10 17:54:51', NULL, NULL); -INSERT INTO "public"."jimu_dict_item" VALUES ('84778d7e928bc843ad4756db1322301f', '4e4602b3e3686f0911384e188dc7efb4', '大于等于', '>=', '大于等于', 5, 1, 'admin', '2019-04-01 10:46:02', 'admin', '2019-04-01 17:49:05'); -INSERT INTO "public"."jimu_dict_item" VALUES ('848d4da35ebd93782029c57b103e5b36', 'c5a14c75172783d72cbee6ee7f5df5d1', '饼图', 'pie', NULL, 3, 1, 'admin', '2019-04-12 17:05:49', NULL, NULL); -INSERT INTO "public"."jimu_dict_item" VALUES ('84dfc178dd61b95a72900fcdd624c471', '78bda155fe380b1b3f175f1e88c284c6', '处理中', '2', '处理中', 2, 1, 'admin', '2019-05-09 16:33:01', NULL, NULL); -INSERT INTO "public"."jimu_dict_item" VALUES ('86f19c7e0a73a0bae451021ac05b99dd', 'ac2f7c0c5c5775fcea7e2387bcb22f01', '子菜单', '1', NULL, NULL, 1, 'admin', '2019-03-18 23:25:27', NULL, NULL); -INSERT INTO "public"."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 "public"."jimu_dict_item" VALUES ('8c618902365ca681ebbbe1e28f11a548', '4c753b5293304e7a445fd2741b46529d', '启用', '1', '', 0, 1, 'admin', '2020-07-18 23:19:27', 'admin', '2019-05-17 14:51:18'); -INSERT INTO "public"."jimu_dict_item" VALUES ('8cdf08045056671efd10677b8456c999', '4274efc2292239b6f000b153f50823ff', '可编辑(未授权时禁用)', '2', '', 2, 1, 'admin', '2019-05-10 17:55:38', NULL, NULL); -INSERT INTO "public"."jimu_dict_item" VALUES ('8ff48e657a7c5090d4f2a59b37d1b878', '4d7fec1a7799a436d26d02325eff295e', '中', 'M', '中', 2, 1, 'admin', '2019-04-16 17:04:40', NULL, NULL); -INSERT INTO "public"."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 "public"."jimu_dict_item" VALUES ('986779561591394304', '986779503584169984', '汉族', 'hanzu', NULL, 1, 1, 'admin', '2024-08-23 09:56:31', 'admin', '2024-08-23 09:56:45'); -INSERT INTO "public"."jimu_dict_item" VALUES ('986779602800431104', '986779503584169984', '回族', 'huizu', NULL, 1, 1, 'admin', '2024-08-23 09:56:41', NULL, NULL); -INSERT INTO "public"."jimu_dict_item" VALUES ('986779663689142272', '986779503584169984', '维吾尔族', 'weiwuer', NULL, 1, 1, 'admin', '2024-08-23 09:56:56', 'admin', '2025-01-09 10:42:09'); -INSERT INTO "public"."jimu_dict_item" VALUES ('986779697352626176', '986779503584169984', '藏族', 'zangzu', NULL, 1, 1, 'admin', '2024-08-23 09:57:04', NULL, NULL); -INSERT INTO "public"."jimu_dict_item" VALUES ('986783239996002304', '986783181955223552', '文盲', '0', NULL, 1, 1, 'admin', '2024-08-23 10:11:08', NULL, NULL); -INSERT INTO "public"."jimu_dict_item" VALUES ('986783271616860160', '986783181955223552', '小学', '1', NULL, 1, 1, 'admin', '2024-08-23 10:11:16', NULL, NULL); -INSERT INTO "public"."jimu_dict_item" VALUES ('986783303967526912', '986783181955223552', '初中', '2', NULL, 1, 1, 'admin', '2024-08-23 10:11:23', NULL, NULL); -INSERT INTO "public"."jimu_dict_item" VALUES ('986783326532882432', '986783181955223552', '高中', '3', NULL, 1, 1, 'admin', '2024-08-23 10:11:29', NULL, NULL); -INSERT INTO "public"."jimu_dict_item" VALUES ('986783354462752768', '986783181955223552', '专科', '4', NULL, 1, 1, 'admin', '2024-08-23 10:11:35', NULL, NULL); -INSERT INTO "public"."jimu_dict_item" VALUES ('986783373504892928', '986783181955223552', '本科', '5', NULL, 1, 1, 'admin', '2024-08-23 10:11:40', NULL, NULL); -INSERT INTO "public"."jimu_dict_item" VALUES ('986783415494070272', '986783181955223552', '研究生', '6', NULL, 1, 1, 'admin', '2024-08-23 10:11:50', NULL, NULL); -INSERT INTO "public"."jimu_dict_item" VALUES ('986783438734708736', '986783181955223552', '博士', '7', NULL, 1, 1, 'admin', '2024-08-23 10:11:56', NULL, NULL); -INSERT INTO "public"."jimu_dict_item" VALUES ('986784154379440128', '986784113082322944', '音乐', '0', NULL, 1, 1, 'admin', '2024-08-23 10:14:46', NULL, NULL); -INSERT INTO "public"."jimu_dict_item" VALUES ('986784179134222336', '986784113082322944', '运动', '1', NULL, 1, 1, 'admin', '2024-08-23 10:14:52', NULL, NULL); -INSERT INTO "public"."jimu_dict_item" VALUES ('986784205717721088', '986784113082322944', '舞蹈', '2', NULL, 1, 1, 'admin', '2024-08-23 10:14:58', NULL, NULL); -INSERT INTO "public"."jimu_dict_item" VALUES ('986784229390372864', '986784113082322944', '棋牌', '3', NULL, 1, 1, 'admin', '2024-08-23 10:15:04', NULL, NULL); -INSERT INTO "public"."jimu_dict_item" VALUES ('986784260960899072', '986784113082322944', '电竞', '4', NULL, 1, 1, 'admin', '2024-08-23 10:15:12', NULL, NULL); -INSERT INTO "public"."jimu_dict_item" VALUES ('9a96c4a4e4c5c9b4e4d0cbf6eb3243cc', '4c753b5293304e7a445fd2741b46529d', '不启用', '0', NULL, 1, 1, 'admin', '2019-03-18 23:19:53', NULL, NULL); -INSERT INTO "public"."jimu_dict_item" VALUES ('a1e7d1ca507cff4a480c8caba7c1339e', '880a895c98afeca9d9ac39f29e67c13e', '导出', '6', '', 6, 1, 'admin', '2019-07-22 12:06:50', NULL, NULL); -INSERT INTO "public"."jimu_dict_item" VALUES ('a2be752dd4ec980afaec1efd1fb589af', '8dfe32e2d29ea9430a988b3b558bf233', '已撤销', '2', '已撤销', 3, 1, 'admin', '2019-04-16 17:41:39', NULL, NULL); -INSERT INTO "public"."jimu_dict_item" VALUES ('aa0d8a8042a18715a17f0a888d360aa4', 'ac2f7c0c5c5775fcea7e2387bcb22f01', '一级菜单', '0', NULL, NULL, 1, 'admin', '2019-03-18 23:24:52', NULL, NULL); -INSERT INTO "public"."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 "public"."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 "public"."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 "public"."jimu_dict_item" VALUES ('b57f98b88363188daf38d42f25991956', '6b78e3f59faec1a4750acff08030a79b', '22', '222', NULL, NULL, 0, 'admin', '2019-02-21 19:59:43', 'admin', '2019-03-11 21:23:27'); -INSERT INTO "public"."jimu_dict_item" VALUES ('b5f3bd5f66bb9a83fecd89228c0d93d1', '68168534ff5065a152bfab275c2136f8', '无效', '0', '无效', 1, 1, 'admin', '2019-04-26 19:21:49', NULL, NULL); -INSERT INTO "public"."jimu_dict_item" VALUES ('b9fbe2a3602d4a27b45c100ac5328484', '78bda155fe380b1b3f175f1e88c284c6', '待提交', '1', '待提交', 1, 1, 'admin', '2019-05-09 16:32:35', NULL, NULL); -INSERT INTO "public"."jimu_dict_item" VALUES ('ba27737829c6e0e582e334832703d75e', '236e8a4baff0db8c62c00dd95632834f', '同步', '1', '同步', 1, 1, 'admin', '2019-05-15 15:28:15', NULL, NULL); -INSERT INTO "public"."jimu_dict_item" VALUES ('bcec04526b04307e24a005d6dcd27fd6', '880a895c98afeca9d9ac39f29e67c13e', '导入', '5', '', 5, 1, 'admin', '2019-07-22 12:06:41', NULL, NULL); -INSERT INTO "public"."jimu_dict_item" VALUES ('c53da022b9912e0aed691bbec3c78473', '880a895c98afeca9d9ac39f29e67c13e', '查询', '1', '', 1, 1, 'admin', '2019-07-22 10:54:51', NULL, NULL); -INSERT INTO "public"."jimu_dict_item" VALUES ('c5700a71ad08994d18ad1dacc37a71a9', 'a7adbcd86c37f7dbc9b66945c82ef9e6', '否', '0', '', 1, 1, 'admin', '2019-05-22 19:29:55', NULL, NULL); -INSERT INTO "public"."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 "public"."jimu_dict_item" VALUES ('d217592908ea3e00ff986ce97f24fb98', 'c5a14c75172783d72cbee6ee7f5df5d1', '数据列表', 'table', NULL, 4, 1, 'admin', '2019-04-12 17:05:56', NULL, NULL); -INSERT INTO "public"."jimu_dict_item" VALUES ('df168368dcef46cade2aadd80100d8aa', '3d9a351be3436fbefb1307d4cfb49bf2', '男', '1', NULL, 1, 1, NULL, '2027-08-04 14:56:49', 'admin', '2019-03-23 22:44:44'); -INSERT INTO "public"."jimu_dict_item" VALUES ('e6329e3a66a003819e2eb830b0ca2ea0', '4e4602b3e3686f0911384e188dc7efb4', '小于', '<', '小于', 2, 1, 'admin', '2019-04-01 16:44:15', 'admin', '2019-04-01 17:48:34'); -INSERT INTO "public"."jimu_dict_item" VALUES ('e94eb7af89f1dbfa0d823580a7a6e66a', '236e8a4baff0db8c62c00dd95632834f', '不同步', '0', '不同步', 2, 1, 'admin', '2019-05-15 15:28:28', NULL, NULL); -INSERT INTO "public"."jimu_dict_item" VALUES ('f0162f4cc572c9273f3e26b2b4d8c082', 'ad7c65ba97c20a6805d5dcdf13cdaf36', 'booostrap', '1', NULL, 1, 1, 'admin', '2021-08-22 16:32:04', 'admin', '2019-03-22 16:33:57'); -INSERT INTO "public"."jimu_dict_item" VALUES ('f16c5706f3ae05c57a53850c64ce7c45', 'a9d9942bd0eccb6e89de92d130ec4c4a', '发送成功', '1', NULL, 2, 1, 'admin', '2019-04-12 18:19:43', NULL, NULL); -INSERT INTO "public"."jimu_dict_item" VALUES ('f2a7920421f3335afdf6ad2b342f6b5d', '845da5006c97754728bf48b6a10f79cc', '冻结', '2', NULL, NULL, 1, 'admin', '2019-03-18 21:46:02', NULL, NULL); -INSERT INTO "public"."jimu_dict_item" VALUES ('f37f90c496ec9841c4c326b065e00bb2', '83bfb33147013cc81640d5fd9eda030c', '登录日志', '1', NULL, NULL, 1, 'admin', '2019-03-18 23:22:37', NULL, NULL); -INSERT INTO "public"."jimu_dict_item" VALUES ('f753aff60ff3931c0ecb4812d8b5e643', '4c03fca6bf1f0299c381213961566349', '双排布局', 'double', NULL, 3, 1, 'admin', '2019-04-12 17:43:51', NULL, NULL); -INSERT INTO "public"."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 "public"."jimu_dict_item" VALUES ('fcec03570f68a175e1964808dc3f1c91', '4c03fca6bf1f0299c381213961566349', 'Tab风格', 'tab', NULL, 1, 1, 'admin', '2019-04-12 17:43:31', NULL, NULL); -INSERT INTO "public"."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 "public"."jimu_report"; -CREATE TABLE "public"."jimu_report" ( - "id" varchar(32) COLLATE "pg_catalog"."default" NOT NULL, - "code" varchar(50) COLLATE "pg_catalog"."default", - "name" varchar(50) COLLATE "pg_catalog"."default", - "note" varchar(255) COLLATE "pg_catalog"."default", - "status" varchar(10) COLLATE "pg_catalog"."default", - "type" varchar(50) COLLATE "pg_catalog"."default", - "json_str" text COLLATE "pg_catalog"."default", - "api_url" varchar(255) COLLATE "pg_catalog"."default", - "thumb" text COLLATE "pg_catalog"."default", - "create_by" varchar(50) COLLATE "pg_catalog"."default", - "create_time" timestamp(6), - "update_by" varchar(50) COLLATE "pg_catalog"."default", - "update_time" timestamp(6), - "del_flag" int2, - "api_method" varchar(255) COLLATE "pg_catalog"."default", - "api_code" varchar(255) COLLATE "pg_catalog"."default", - "template" int2, - "view_count" int8, - "css_str" text COLLATE "pg_catalog"."default", - "js_str" text COLLATE "pg_catalog"."default", - "py_str" text COLLATE "pg_catalog"."default", - "tenant_id" varchar(10) COLLATE "pg_catalog"."default", - "update_count" int4, - "submit_form" int2 -)TABLESPACE "stas" -; -COMMENT ON COLUMN "public"."jimu_report"."id" IS '主键'; -COMMENT ON COLUMN "public"."jimu_report"."code" IS '编码'; -COMMENT ON COLUMN "public"."jimu_report"."name" IS '名称'; -COMMENT ON COLUMN "public"."jimu_report"."note" IS '说明'; -COMMENT ON COLUMN "public"."jimu_report"."status" IS '状态'; -COMMENT ON COLUMN "public"."jimu_report"."type" IS '类型'; -COMMENT ON COLUMN "public"."jimu_report"."json_str" IS 'json字符串'; -COMMENT ON COLUMN "public"."jimu_report"."api_url" IS '请求地址'; -COMMENT ON COLUMN "public"."jimu_report"."thumb" IS '缩略图'; -COMMENT ON COLUMN "public"."jimu_report"."create_by" IS '创建人'; -COMMENT ON COLUMN "public"."jimu_report"."create_time" IS '创建时间'; -COMMENT ON COLUMN "public"."jimu_report"."update_by" IS '修改人'; -COMMENT ON COLUMN "public"."jimu_report"."update_time" IS '修改时间'; -COMMENT ON COLUMN "public"."jimu_report"."del_flag" IS '删除标识0-正常,1-已删除'; -COMMENT ON COLUMN "public"."jimu_report"."api_method" IS '请求方法0-get,1-post'; -COMMENT ON COLUMN "public"."jimu_report"."api_code" IS '请求编码'; -COMMENT ON COLUMN "public"."jimu_report"."template" IS '是否是模板 0不是,1是'; -COMMENT ON COLUMN "public"."jimu_report"."view_count" IS '浏览次数'; -COMMENT ON COLUMN "public"."jimu_report"."css_str" IS 'css增强'; -COMMENT ON COLUMN "public"."jimu_report"."js_str" IS 'js增强'; -COMMENT ON COLUMN "public"."jimu_report"."py_str" IS 'py增强'; -COMMENT ON COLUMN "public"."jimu_report"."tenant_id" IS '多租户标识'; -COMMENT ON COLUMN "public"."jimu_report"."update_count" IS '乐观锁版本'; -COMMENT ON COLUMN "public"."jimu_report"."submit_form" IS '是否填报报表 0不是,1是'; -COMMENT ON TABLE "public"."jimu_report" IS '在线excel设计器'; - --- ---------------------------- --- Records of jimu_report --- ---------------------------- -INSERT INTO "public"."jimu_report" VALUES ('1080630641874206720', '20240117141013__7486', '主子报表循环块副本7486', NULL, NULL, '0', '{"loopBlockList":[{"sci":0,"sri":0,"eci":8,"eri":36,"index":1,"db":"aa"}],"area":{"sri":9,"sci":11,"eri":9,"eci":11,"width":100,"height":25},"excel_config_id":"907480464532770816","printConfig":{"layout":"portrait","paginationShow":false,"printCallBackUrl":"","paper":"A4","isBackend":false,"width":210,"paginationLocation":"middle","definition":1,"marginX":10,"height":297,"marginY":10},"hiddenCells":[],"zonedEditionList":[],"rows":{"0":{"cells":{"0":{"loopBlock":1,"text":""},"1":{"loopBlock":1,"merge":[0,6],"style":8,"text":"订货商信息","height":0},"2":{"loopBlock":1,"text":""},"3":{"loopBlock":1,"text":""},"4":{"loopBlock":1,"text":""},"5":{"loopBlock":1,"text":""},"6":{"loopBlock":1,"text":""},"7":{"loopBlock":1,"text":""},"8":{"loopBlock":1,"text":""}},"height":57},"1":{"cells":{"0":{"loopBlock":1,"text":""},"1":{"loopBlock":1,"style":10,"text":"订单编号:"},"2":{"loopBlock":1,"merge":[0,2],"style":42,"text":"#{aa.order_code}","height":0},"3":{"loopBlock":1,"text":""},"4":{"loopBlock":1,"text":""},"5":{"loopBlock":1,"text":""},"6":{"loopBlock":1,"text":""},"7":{"loopBlock":1,"text":""},"8":{"loopBlock":1,"text":""}},"height":34},"2":{"cells":{"0":{"loopBlock":1,"text":""},"1":{"loopBlock":1,"style":10,"text":"订单地址:"},"2":{"loopBlock":1,"merge":[0,1],"style":42,"text":"#{aa.descc}","height":0},"3":{"loopBlock":1,"text":""},"4":{"loopBlock":1,"style":10,"text":"订单日期:"},"5":{"loopBlock":1,"merge":[0,1],"style":42,"text":"#{aa.order_date}","height":0},"6":{"loopBlock":1,"text":""},"7":{"loopBlock":1,"text":""},"8":{"loopBlock":1,"text":""}},"height":34},"3":{"cells":{"0":{"loopBlock":1,"text":""},"1":{"loopBlock":1,"style":10,"text":"订单姓名:"},"2":{"loopBlock":1,"merge":[0,1],"style":42,"text":"#{aa.create_by}","height":0},"3":{"loopBlock":1,"text":""},"4":{"loopBlock":1,"style":10,"text":"到货日期:"},"5":{"loopBlock":1,"merge":[0,1],"style":42,"text":"#{aa.create_time}","height":0},"6":{"loopBlock":1,"text":""},"7":{"loopBlock":1,"text":""},"8":{"loopBlock":1,"text":""}},"height":31},"4":{"cells":{"0":{"loopBlock":1,"text":""},"1":{"loopBlock":1,"text":""},"2":{"loopBlock":1,"text":""},"3":{"loopBlock":1,"text":""},"4":{"loopBlock":1,"text":""},"5":{"loopBlock":1,"text":""},"6":{"loopBlock":1,"text":""},"7":{"loopBlock":1,"text":""},"8":{"loopBlock":1,"text":""}}},"5":{"cells":{"0":{"loopBlock":1,"text":""},"1":{"loopBlock":1,"decimalPlaces":"4","merge":[0,6],"style":31,"text":"订单详情"},"2":{"loopBlock":1},"3":{"loopBlock":1},"4":{"loopBlock":1},"5":{"loopBlock":1},"6":{"loopBlock":1},"7":{"loopBlock":1},"8":{"loopBlock":1,"text":""}},"height":51},"6":{"cells":{"0":{"loopBlock":1,"text":""},"1":{"loopBlock":1,"style":15,"text":"商品编码"},"2":{"loopBlock":1,"style":15,"text":"商品名称"},"3":{"loopBlock":1,"style":15,"text":"销售时间"},"4":{"loopBlock":1,"style":15,"text":"销售数据量"},"5":{"loopBlock":1,"style":15,"text":"定价"},"6":{"loopBlock":1,"style":15,"text":"优惠价"},"7":{"loopBlock":1,"style":15,"text":"付款金额"},"8":{"loopBlock":1,"text":""}},"height":42},"7":{"cells":{"0":{"loopBlock":1,"text":""},"1":{"loopBlock":1,"style":18,"text":"#{bb.product_name}"},"2":{"loopBlock":1,"style":18,"text":"#{bb.product_name}"},"3":{"loopBlock":1,"style":18,"text":"#{bb.product_name}"},"4":{"loopBlock":1,"style":18,"text":"#{bb.num}"},"5":{"loopBlock":1,"decimalPlaces":"4","style":19,"text":"#{bb.price}"},"6":{"loopBlock":1,"decimalPlaces":"1","style":19,"text":"#{bb.price}"},"7":{"loopBlock":1,"style":18,"text":"#{bb.pro_type}"},"8":{"loopBlock":1,"text":""}}},"8":{"cells":{"0":{"loopBlock":1,"text":""},"1":{"loopBlock":1,"text":""},"2":{"loopBlock":1,"text":""},"3":{"loopBlock":1,"text":""},"4":{"loopBlock":1,"text":""},"5":{"loopBlock":1,"text":""},"6":{"loopBlock":1,"text":""},"7":{"loopBlock":1,"text":""},"8":{"loopBlock":1,"text":""}}},"9":{"cells":{"0":{"loopBlock":1,"text":""},"1":{"loopBlock":1,"text":""},"2":{"loopBlock":1,"text":""},"3":{"loopBlock":1,"text":""},"4":{"loopBlock":1,"text":""},"5":{"loopBlock":1,"text":""},"6":{"loopBlock":1,"text":""},"7":{"loopBlock":1,"text":""},"8":{"loopBlock":1,"text":""}}},"10":{"cells":{"0":{"loopBlock":1,"text":""},"1":{"loopBlock":1,"style":39,"text":"备注:"},"2":{"loopBlock":1,"style":33,"text":" "},"3":{"loopBlock":1,"style":33,"text":" "},"4":{"loopBlock":1,"style":33,"text":" "},"5":{"loopBlock":1,"style":33,"text":" "},"6":{"loopBlock":1,"style":33,"text":" "},"7":{"loopBlock":1,"style":34,"text":" "},"8":{"loopBlock":1,"text":""}},"height":25},"11":{"cells":{"0":{"loopBlock":1,"text":""},"1":{"loopBlock":1,"merge":[0,6],"style":41,"text":"1、查看信息,在浏览器输入“?did=1”或“?did=2”","height":0},"2":{"loopBlock":1,"text":""},"3":{"loopBlock":1,"text":""},"4":{"loopBlock":1,"text":""},"5":{"loopBlock":1,"text":""},"6":{"loopBlock":1,"text":""},"7":{"loopBlock":1,"text":""},"8":{"loopBlock":1,"text":""}},"height":37},"12":{"cells":{"0":{"loopBlock":1,"text":""},"1":{"loopBlock":1,"style":35,"text":" "},"2":{"loopBlock":1,"text":" "},"3":{"loopBlock":1,"text":""},"4":{"loopBlock":1,"text":""},"5":{"loopBlock":1,"text":""},"6":{"loopBlock":1,"text":""},"7":{"loopBlock":1,"style":36,"text":" "},"8":{"loopBlock":1,"text":""}}},"13":{"cells":{"0":{"loopBlock":1,"text":""},"1":{"loopBlock":1,"style":37,"text":" "},"2":{"loopBlock":1,"style":28,"text":" "},"3":{"loopBlock":1,"style":28,"text":" "},"4":{"loopBlock":1,"style":28,"text":" "},"5":{"loopBlock":1,"style":28,"text":" "},"6":{"loopBlock":1,"style":28,"text":" "},"7":{"loopBlock":1,"style":38,"text":" "},"8":{"loopBlock":1,"text":""}}},"14":{"cells":{"0":{"loopBlock":1,"text":""},"1":{"loopBlock":1,"text":""},"2":{"loopBlock":1,"text":""},"3":{"loopBlock":1,"text":""},"4":{"loopBlock":1,"text":""},"5":{"loopBlock":1,"text":""},"6":{"loopBlock":1,"text":""},"7":{"loopBlock":1,"text":""},"8":{"loopBlock":1,"text":""}}},"15":{"cells":{"0":{"loopBlock":1,"text":""},"1":{"loopBlock":1},"2":{"loopBlock":1},"3":{"loopBlock":1,"text":""},"4":{"loopBlock":1,"text":""},"5":{"loopBlock":1,"text":""},"6":{"loopBlock":1,"text":""},"7":{"loopBlock":1,"text":""},"8":{"loopBlock":1,"text":""}}},"16":{"cells":{"0":{"loopBlock":1,"text":""},"1":{"loopBlock":1},"2":{"loopBlock":1},"3":{"loopBlock":1,"text":""},"4":{"loopBlock":1,"text":""},"5":{"loopBlock":1,"text":""},"6":{"loopBlock":1,"text":""},"7":{"loopBlock":1,"text":""},"8":{"loopBlock":1,"text":""}}},"17":{"cells":{"0":{"loopBlock":1,"text":""},"1":{"loopBlock":1,"text":""},"2":{"loopBlock":1},"3":{"loopBlock":1,"text":""},"4":{"loopBlock":1,"text":""},"5":{"loopBlock":1,"text":""},"6":{"loopBlock":1,"text":""},"7":{"loopBlock":1,"text":""},"8":{"loopBlock":1,"text":""}}},"18":{"cells":{"0":{"loopBlock":1,"text":""},"1":{"loopBlock":1,"text":""},"2":{"loopBlock":1,"text":""},"3":{"loopBlock":1,"text":""},"4":{"loopBlock":1,"text":""},"5":{"loopBlock":1,"text":""},"6":{"loopBlock":1,"text":""},"7":{"loopBlock":1,"text":""},"8":{"loopBlock":1,"text":""}}},"19":{"cells":{"0":{"loopBlock":1,"text":""},"1":{"loopBlock":1,"text":""},"2":{"loopBlock":1,"text":""},"3":{"loopBlock":1,"text":""},"4":{"loopBlock":1,"text":""},"5":{"loopBlock":1,"text":""},"6":{"loopBlock":1,"text":""},"7":{"loopBlock":1,"text":""},"8":{"loopBlock":1,"text":""}}},"20":{"cells":{"0":{"loopBlock":1,"text":""},"1":{"loopBlock":1,"text":""},"2":{"loopBlock":1,"text":""},"3":{"loopBlock":1,"text":""},"4":{"loopBlock":1,"text":""},"5":{"loopBlock":1,"text":""},"6":{"loopBlock":1,"text":""},"7":{"loopBlock":1,"text":""},"8":{"loopBlock":1,"text":""}}},"21":{"cells":{"0":{"loopBlock":1,"text":""},"1":{"loopBlock":1},"2":{"loopBlock":1},"3":{"loopBlock":1,"text":""},"4":{"loopBlock":1,"text":""},"5":{"loopBlock":1,"text":""},"6":{"loopBlock":1,"text":""},"7":{"loopBlock":1,"text":""},"8":{"loopBlock":1,"text":""}}},"22":{"cells":{"0":{"loopBlock":1,"text":""},"1":{"loopBlock":1,"text":""},"2":{"loopBlock":1,"text":""},"3":{"loopBlock":1,"text":""},"4":{"loopBlock":1,"text":""},"5":{"loopBlock":1,"text":""},"6":{"loopBlock":1,"text":""},"7":{"loopBlock":1,"text":""},"8":{"loopBlock":1,"text":""}}},"23":{"cells":{"0":{"loopBlock":1,"text":""},"1":{"loopBlock":1,"text":""},"2":{"loopBlock":1,"text":""},"3":{"loopBlock":1,"text":""},"4":{"loopBlock":1,"text":""},"5":{"loopBlock":1,"text":""},"6":{"loopBlock":1,"text":""},"7":{"loopBlock":1,"text":""},"8":{"loopBlock":1,"text":""}}},"24":{"cells":{"0":{"loopBlock":1,"text":""},"1":{"loopBlock":1,"text":""},"2":{"loopBlock":1,"text":""},"3":{"loopBlock":1,"text":""},"4":{"loopBlock":1,"text":""},"5":{"loopBlock":1,"text":""},"6":{"loopBlock":1,"text":""},"7":{"loopBlock":1,"text":""},"8":{"loopBlock":1,"text":""}}},"25":{"cells":{"0":{"loopBlock":1,"text":""},"1":{"loopBlock":1,"text":""},"2":{"loopBlock":1,"text":""},"3":{"loopBlock":1,"text":""},"4":{"loopBlock":1,"text":""},"5":{"loopBlock":1,"text":""},"6":{"loopBlock":1,"text":""},"7":{"loopBlock":1,"text":""},"8":{"loopBlock":1,"text":""}}},"26":{"cells":{"0":{"loopBlock":1,"text":""},"1":{"loopBlock":1},"2":{"loopBlock":1},"3":{"loopBlock":1},"4":{"loopBlock":1},"5":{"loopBlock":1,"text":""},"6":{"loopBlock":1,"text":""},"7":{"loopBlock":1,"text":""},"8":{"loopBlock":1,"text":""}}},"27":{"cells":{"0":{"loopBlock":1,"text":""},"1":{"loopBlock":1,"text":""},"2":{"loopBlock":1,"text":""},"3":{"loopBlock":1,"text":""},"4":{"loopBlock":1,"text":""},"5":{"loopBlock":1,"text":""},"6":{"loopBlock":1,"text":""},"7":{"loopBlock":1,"text":""},"8":{"loopBlock":1,"text":""}}},"28":{"cells":{"0":{"loopBlock":1,"text":""},"1":{"loopBlock":1,"text":""},"2":{"loopBlock":1,"text":""},"3":{"loopBlock":1,"text":""},"4":{"loopBlock":1,"text":""},"5":{"loopBlock":1,"text":""},"6":{"loopBlock":1,"text":""},"7":{"loopBlock":1,"text":""},"8":{"loopBlock":1,"text":""}}},"29":{"cells":{"0":{"loopBlock":1,"text":""},"1":{"loopBlock":1,"text":""},"2":{"loopBlock":1,"text":""},"3":{"loopBlock":1,"text":""},"4":{"loopBlock":1,"text":""},"5":{"loopBlock":1,"text":""},"6":{"loopBlock":1,"text":""},"7":{"loopBlock":1,"text":""},"8":{"loopBlock":1,"text":""}}},"30":{"cells":{"0":{"loopBlock":1,"text":""},"1":{"loopBlock":1,"text":""},"2":{"loopBlock":1,"text":""},"3":{"loopBlock":1,"text":""},"4":{"loopBlock":1,"text":""},"5":{"loopBlock":1,"text":""},"6":{"loopBlock":1,"text":""},"7":{"loopBlock":1,"text":""},"8":{"loopBlock":1,"text":""}}},"31":{"cells":{"0":{"loopBlock":1,"text":""},"1":{"loopBlock":1,"text":""},"2":{"loopBlock":1,"text":""},"3":{"loopBlock":1,"text":""},"4":{"loopBlock":1,"text":""},"5":{"loopBlock":1,"text":""},"6":{"loopBlock":1,"text":""},"7":{"loopBlock":1,"text":""},"8":{"loopBlock":1,"text":""}}},"32":{"cells":{"0":{"loopBlock":1,"text":""},"1":{"loopBlock":1,"text":""},"2":{"loopBlock":1,"text":""},"3":{"loopBlock":1,"text":""},"4":{"loopBlock":1,"text":""},"5":{"loopBlock":1,"text":""},"6":{"loopBlock":1,"text":""},"7":{"loopBlock":1,"text":""},"8":{"loopBlock":1,"text":""}}},"33":{"cells":{"0":{"loopBlock":1,"text":""},"1":{"loopBlock":1,"text":""},"2":{"loopBlock":1,"text":""},"3":{"loopBlock":1,"text":""},"4":{"loopBlock":1,"text":""},"5":{"loopBlock":1,"text":""},"6":{"loopBlock":1,"text":""},"7":{"loopBlock":1,"text":""},"8":{"loopBlock":1,"text":""}}},"34":{"cells":{"0":{"loopBlock":1,"text":""},"1":{"loopBlock":1,"text":""},"2":{"loopBlock":1,"text":""},"3":{"loopBlock":1,"text":""},"4":{"loopBlock":1,"text":""},"5":{"loopBlock":1,"text":""},"6":{"loopBlock":1,"text":""},"7":{"loopBlock":1,"text":""},"8":{"loopBlock":1,"text":""}}},"35":{"cells":{"0":{"loopBlock":1,"text":""},"1":{"loopBlock":1,"text":""},"2":{"loopBlock":1,"text":""},"3":{"loopBlock":1,"text":""},"4":{"loopBlock":1,"text":""},"5":{"loopBlock":1,"text":""},"6":{"loopBlock":1,"text":""},"7":{"loopBlock":1,"text":""},"8":{"loopBlock":1,"text":""}}},"36":{"cells":{"0":{"loopBlock":1,"text":""},"1":{"loopBlock":1,"text":""},"2":{"loopBlock":1,"text":""},"3":{"loopBlock":1,"text":""},"4":{"loopBlock":1,"text":""},"5":{"loopBlock":1,"text":""},"6":{"loopBlock":1,"text":""},"7":{"loopBlock":1,"text":""},"8":{"loopBlock":1,"text":""}}},"len":102},"dbexps":[],"toolPrintSizeObj":{"printType":"A4","widthPx":718,"heightPx":1047},"dicts":[],"rpbar":{"show":true,"pageSize":"","btnList":[]},"fixedPrintHeadRows":[],"fixedPrintTailRows":[],"freeze":"A1","dataRectWidth":682,"displayConfig":{},"background":false,"name":"sheet1","autofilter":{},"styles":[{"border":{"top":["thin","#000"],"left":["thin","#000"],"bottom":["thin","#000"],"right":["thin","#000"]}},{"border":{"top":["thin","#000"],"left":["thin","#000"],"bottom":["thin","#000"],"right":["thin","#000"]},"align":"center"},{"border":{"top":["thin","#000"],"left":["thin","#000"],"bottom":["thin","#000"],"right":["thin","#000"]},"bgcolor":"#5b9cd6","align":"center"},{"font":{"size":18}},{"font":{"size":18,"bold":true}},{"align":"center"},{"align":"center","font":{"size":18,"bold":true}},{"bgcolor":"#5b9cd6","align":"center"},{"align":"center","font":{"size":18,"name":"宋体","bold":true}},{"bgcolor":"#5b9cd6","align":"center","font":{"name":"宋体"}},{"font":{"name":"宋体"}},{"bgcolor":"#5b9cd6","color":"#ffffff","align":"center","font":{"name":"宋体"}},{"border":{"top":["thin","#5b9cd6"],"left":["thin","#5b9cd6"],"bottom":["thin","#5b9cd6"],"right":["thin","#5b9cd6"]},"bgcolor":"#5b9cd6","color":"#ffffff","align":"center","font":{"name":"宋体"}},{"border":{"top":["thin","#5b9cd6"],"left":["thin","#5b9cd6"],"bottom":["thin","#5b9cd6"],"right":["thin","#5b9cd6"]},"font":{"name":"宋体"}},{"border":{"top":["thin","#bfbfbf"],"left":["thin","#bfbfbf"],"bottom":["thin","#bfbfbf"],"right":["thin","#bfbfbf"]}},{"border":{"top":["thin","#bfbfbf"],"left":["thin","#bfbfbf"],"bottom":["thin","#bfbfbf"],"right":["thin","#bfbfbf"]},"bgcolor":"#5b9cd6","color":"#ffffff","align":"center","font":{"name":"宋体"}},{"border":{"top":["thin","#bfbfbf"],"left":["thin","#bfbfbf"],"bottom":["thin","#bfbfbf"],"right":["thin","#bfbfbf"]},"font":{"name":"宋体"}},{},{"border":{"top":["thin","#bfbfbf"],"left":["thin","#bfbfbf"],"bottom":["thin","#bfbfbf"],"right":["thin","#bfbfbf"]},"align":"center","font":{"name":"宋体"}},{"border":{"top":["thin","#bfbfbf"],"left":["thin","#bfbfbf"],"bottom":["thin","#bfbfbf"],"right":["thin","#bfbfbf"]},"format":"number","align":"center","font":{"name":"宋体"}},{"border":{"top":["thin","#bfbfbf"],"left":["thin","#bfbfbf"],"bottom":["thin","#bfbfbf"],"right":["thin","#bfbfbf"]},"format":"normal","align":"center","font":{"name":"宋体"}},{"font":{"size":18,"bold":false}},{"font":{"size":18,"name":"宋体","bold":false}},{"align":"center","font":{"size":18,"name":"宋体","bold":false}},{"font":{"size":18,"name":"宋体","bold":true}},{"border":{"bottom":["thin","#000"]}},{"border":{"bottom":["thin","#a5a5a5"]}},{"border":{"bottom":["thin","#262626"]}},{"border":{"bottom":["thin","#595959"]}},{"valign":"bottom","align":"center","font":{"size":18,"name":"宋体","bold":true}},{"valign":"bottom","align":"left","font":{"size":18,"name":"宋体","bold":true}},{"valign":"middle","align":"center","font":{"size":18,"name":"宋体","bold":true}},{"border":{"top":["thin","#595959"],"left":["thin","#595959"]}},{"border":{"top":["thin","#595959"]}},{"border":{"top":["thin","#595959"],"right":["thin","#595959"]}},{"border":{"left":["thin","#595959"]}},{"border":{"right":["thin","#595959"]}},{"border":{"left":["thin","#595959"],"bottom":["thin","#595959"]}},{"border":{"bottom":["thin","#595959"],"right":["thin","#595959"]}},{"border":{"top":["thin","#595959"],"left":["thin","#595959"]},"font":{"name":"宋体"}},{"border":{"left":["thin","#595959"],"right":["thin","#595959"]}},{"border":{"left":["thin","#595959"],"right":["thin","#595959"]},"font":{"name":"宋体"}},{"border":{"bottom":["thin","#595959"]},"font":{"name":"宋体"}}],"validations":[],"cols":{"0":{"width":39},"1":{"width":73},"2":{"width":89},"3":{"width":101},"4":{"width":80},"8":{"width":29},"len":100},"merges":["B1:H1","C2:E2","C3:D3","F3:G3","C4:D4","F4:G4","B6:H6","B12:H12"]}', NULL, 'https://static.jeecg.com/designreport/images/未标题-1_1617266678584.png', 'admin', '2025-05-09 09:27:12', NULL, NULL, 0, NULL, NULL, 0, 2, NULL, NULL, NULL, NULL, 0, NULL); -INSERT INTO "public"."jimu_report" VALUES ('1314846205892759552', '20201010163252', 'XXX有限公司员工登记表', NULL, NULL, '984302991393210368', '{"loopBlockList":[],"area":{"sri":10,"sci":11,"eri":10,"eci":11,"width":85,"height":38},"excel_config_id":"1314846205892759552","printConfig":{"paper":"A4","width":210,"height":297,"definition":1,"isBackend":false,"marginX":10,"marginY":10},"rows":{"0":{"cells":{"0":{"merge":[0,8]},"9":{}},"height":22},"1":{"cells":{"1":{"style":87,"text":" "},"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":" "}},"height":24},"2":{"cells":{"0":{"text":"所在部门","style":93},"1":{"text":"${yuangongjiben.department}","style":23,"merge":[0,2]},"4":{"text":"职务","style":93},"5":{"text":"${yuangongjiben.post}","style":23},"6":{"text":"填写日期","style":93},"7":{"text":"${yuangongjiben.data}","style":23,"merge":[0,1]}},"isDrag":true,"height":36},"3":{"cells":{"0":{"text":"姓名","style":93},"1":{"text":"${yuangongjiben.name}","style":23},"2":{"text":"性别","style":93},"3":{"text":"${yuangongjiben.sex}","style":23},"4":{"text":"出生日期","style":93},"5":{"text":"${yuangongjiben.birth}","style":23},"6":{"text":"政治面貌","style":93},"7":{"text":"${yuangongjiben.political}","style":130,"merge":[0,1]}},"isDrag":true,"height":33},"4":{"cells":{"0":{"text":"机关","style":93},"1":{"text":"${yuangongjiben.office}","style":23},"2":{"style":93,"text":"民族"},"3":{"text":"${yuangongjiben.nation}","style":23},"4":{"style":93,"text":"健康状况"},"5":{"text":"${yuangongjiben.health}","style":23},"6":{"style":93,"text":"户籍类型","virtual":"1KT8bnqRT4bi8Z7b"},"7":{"text":"${yuangongjiben.register}","style":26,"virtual":"1KT8bnqRT4bi8Z7b"},"8":{"merge":[3,0],"height":104,"style":35,"text":" ","virtual":"cvkWDQVZhfJPgcS4"}},"isDrag":true,"height":31},"5":{"cells":{"0":{"text":"最高学历","style":93},"1":{"text":"${yuangongjiben.education}","style":23},"2":{"text":"所学专业","style":93},"3":{"text":"${yuangongjiben.major}","style":23,"merge":[0,2]},"6":{"text":"毕业时间","style":93},"7":{"text":"${yuangongjiben.gdata}","style":23}},"isDrag":true,"height":35},"6":{"cells":{"0":{"text":"电子邮箱","style":93},"1":{"text":"${yuangongjiben.mailbox}","style":23},"2":{"text":"手机号","style":93},"3":{"text":"${yuangongjiben.telphone}","style":23,"merge":[0,2]},"6":{"text":"家庭电话","style":93},"7":{"text":"${yuangongjiben.homephone}","style":23}},"isDrag":true,"height":38},"7":{"cells":{"0":{"merge":[0,1],"text":"第一次参加工作时间","style":93},"2":{"text":"${yuangongjiben.pworktime}","style":133,"merge":[0,2]},"5":{"style":93,"text":"入职时间"},"6":{"text":"${yuangongjiben.entrytime}","style":24,"merge":[0,1]}},"isDrag":true,"height":27},"8":{"cells":{"0":{"merge":[0,1],"text":"毕业院校","style":93},"2":{"text":"${yuangongjiben.school}","style":24,"merge":[0,2]},"5":{"style":93,"text":"身份证号"},"6":{"text":"${yuangongjiben.idcard}","style":24,"merge":[0,2]}},"isDrag":true,"height":34},"9":{"cells":{"0":{"merge":[0,1],"text":"入党(团)时间、地点","style":94},"2":{"text":"${yuangongjiben.entrytime}","style":24,"merge":[0,2]},"5":{"text":"婚姻状况","style":93},"6":{"text":"${yuangongjiben.marital}","style":23},"7":{"text":"有无子女","style":93},"8":{"text":"${yuangongjiben.children}","style":23}},"isDrag":true,"height":33},"10":{"cells":{"0":{"merge":[0,1],"text":"户口所在街道名称","style":93},"2":{"text":"${yuangongjiben.hukoustreet}","style":24,"merge":[0,2]},"5":{"merge":[0,1],"text":"户口所在地邮编","style":93},"7":{"text":"${yuangongjiben.hukounum}","style":23,"merge":[0,1]}},"isDrag":true,"height":38},"11":{"cells":{"0":{"text":"户口所在地地址","style":96,"merge":[2,1]},"2":{"text":"${yuangongjiben.hukoudi}","style":26,"merge":[2,6]}},"isDrag":true},"12":{"cells":{}},"13":{"cells":{"11":{"text":""}},"isDrag":true},"14":{"cells":{"0":{"merge":[0,1],"text":"现居住地址","style":98},"2":{"text":"${yuangongjiben.currentdi}","style":26,"merge":[0,2]},"5":{"style":98,"merge":[0,1],"text":"现居住地址邮编"},"7":{"text":"${yuangongjiben.currentnum}","style":26,"merge":[0,1]}},"isDrag":true,"height":33},"15":{"cells":{"0":{"merge":[0,1],"text":"是否参加社保","style":98},"2":{"text":"${yuangongjiben.socialsecurity}","style":27,"merge":[0,1]},"4":{"text":"有无公积金","style":98},"5":{"text":"${yuangongjiben.providentfund}","style":27,"merge":[0,1]},"7":{"text":"兴趣爱好","style":98},"8":{"text":"${yuangongjiben.hobby}","style":27}},"isDrag":true,"height":34},"16":{"cells":{"0":{"merge":[0,1],"text":"参加社保类型","style":98},"2":{"text":"${yuangongjiben.sbtype}","style":116,"merge":[0,6]}},"isDrag":true,"height":30},"17":{"cells":{"0":{"merge":[0,1],"text":"个人档案存放地","style":98},"2":{"text":"${yuangongjiben.archivesdi}","style":116,"merge":[0,6]}},"isDrag":true,"height":33},"18":{"cells":{"0":{"text":" ","style":7},"1":{"text":" ","style":7},"2":{"text":" ","style":7},"3":{"text":" ","style":7},"4":{"text":" ","style":7},"5":{"text":" ","style":7},"6":{"text":" ","style":7},"7":{"text":" ","style":7},"8":{"text":" ","style":7}}},"19":{"cells":{"0":{"merge":[0,4],"text":"学历、经历(从高中开始写)","style":99},"5":{"style":7,"text":" "},"6":{"style":7,"text":" "},"7":{"style":7,"text":" "},"8":{"style":7,"text":" "},"9":{"style":112,"text":" "}}},"20":{"cells":{"0":{"text":"由_年_月","merge":[0,1],"style":36},"2":{"merge":[0,1],"text":"至_年_月","style":38},"4":{"merge":[0,1],"text":"就读学校","style":38},"6":{"merge":[0,1],"text":"专业","style":38},"8":{"text":"担任职务","style":38},"9":{"style":112,"text":" "}}},"21":{"cells":{"0":{"style":90,"merge":[0,1],"text":"#{xueli.kdate}"},"2":{"style":90,"text":"#{xueli.jdate}","merge":[0,1]},"4":{"style":90,"text":"#{xueli.jstudent}","merge":[0,1]},"6":{"style":90,"text":"#{xueli.zhuanye}","merge":[0,1]},"8":{"style":90,"text":"#{xueli.zhiwu}"},"9":{"style":112,"text":" "}},"isDrag":true},"22":{"cells":{"0":{"style":7,"text":" "},"1":{"style":7,"text":" "},"2":{"style":7,"text":" "},"3":{"style":7,"text":" "},"4":{"style":7,"text":" "},"5":{"style":7,"text":" "},"6":{"style":7,"text":" "},"7":{"style":7,"text":" "},"8":{"style":7,"text":" "},"9":{"style":112,"text":" "}}},"23":{"cells":{"0":{"merge":[0,4],"text":"工作经历","style":124},"5":{"style":7,"text":" "},"6":{"style":7,"text":" "},"7":{"style":7,"text":" "},"8":{"style":7,"text":" "},"9":{"style":112,"text":" "}},"height":27},"24":{"cells":{"0":{"text":"由_年_月","merge":[0,1],"style":36},"2":{"merge":[0,1],"text":"至_年_月","style":38},"4":{"text":"工作单位及职称","style":38,"merge":[0,1]},"6":{"merge":[0,1],"text":"证明人","style":38},"8":{"text":"联系方式","style":38},"9":{"style":112,"text":" "}}},"25":{"cells":{"0":{"text":"#{uu.kdate}","style":90,"merge":[0,1]},"2":{"text":"#{uu.jdate}","style":90,"merge":[0,1]},"4":{"text":"#{uu.jstudent}","style":90,"merge":[0,1]},"6":{"text":"#{uu.zmname}","style":90,"merge":[0,1]},"8":{"text":"#{uu.zmphone}","style":90},"9":{"style":112,"text":" "}},"isDrag":true},"26":{"cells":{"0":{"style":7,"text":" "},"1":{"style":7,"text":" "},"2":{"style":7,"text":" "},"3":{"style":7,"text":" "},"4":{"style":7,"text":" "},"5":{"style":7,"text":" "},"6":{"style":7,"text":" "},"7":{"style":7,"text":" "},"8":{"style":7,"text":" "},"9":{"style":112,"text":" "}}},"27":{"cells":{"0":{"merge":[0,4],"text":"职称/资格、证书","style":125},"5":{"style":7,"text":" "},"6":{"style":7,"text":" "},"7":{"style":7,"text":" "},"8":{"style":7,"text":" "},"9":{"style":112,"text":" "}},"height":46},"28":{"cells":{"0":{"text":"发证时间","merge":[0,1],"style":36},"2":{"merge":[0,1],"text":"职称名称","style":38},"4":{"text":"级别","style":38,"merge":[0,1]},"6":{"text":"发证单位","style":38,"merge":[0,1]},"8":{"text":"备注","style":38},"9":{"style":112,"text":" "}}},"29":{"cells":{"0":{"text":"#{zhengshu.fdate}","style":90,"merge":[0,1]},"2":{"text":"#{zhengshu.zcname}","style":90,"merge":[0,1]},"4":{"text":"#{zhengshu.jibie}","style":90,"merge":[0,1]},"6":{"text":"#{zhengshu.danwei}","style":90,"merge":[0,1]},"8":{"text":"#{zhengshu.beizhu}","style":90},"9":{"style":112,"text":" "}},"isDrag":true},"30":{"cells":{"0":{"style":7,"text":" "},"1":{"style":7,"text":" "},"2":{"style":7,"text":" "},"3":{"style":7,"text":" "},"4":{"style":7,"text":" "},"5":{"style":7,"text":" "},"6":{"style":7,"text":" "},"7":{"style":7,"text":" "},"8":{"style":7,"text":" "},"9":{"style":112,"text":" "}}},"31":{"cells":{"0":{"merge":[0,1],"text":"家庭成员","style":125},"2":{"style":7,"text":" "},"3":{"style":7,"text":" "},"4":{"style":7,"text":" "},"5":{"style":7,"text":" "},"6":{"style":7,"text":" "},"7":{"style":7,"text":" "},"8":{"style":7,"text":" "},"9":{"style":112,"text":" "}},"height":42},"32":{"cells":{"0":{"merge":[0,1],"text":"姓名","style":38},"2":{"merge":[0,1],"text":"关系","style":38},"4":{"text":"年龄","style":38},"5":{"text":"工作单位","style":38,"merge":[0,1]},"7":{"text":"政治面貌","style":38},"8":{"text":"联系方式","style":38},"9":{"style":112,"text":" "}}},"33":{"cells":{"0":{"text":"#{jtcy.name}","style":90,"merge":[0,1]},"2":{"text":"#{jtcy.guanxi}","style":90,"merge":[0,1]},"4":{"text":"#{jtcy.age}","style":90},"5":{"text":"#{jtcy.danwei}","style":90,"merge":[0,1]},"7":{"text":"#{jtcy.zzmm}","style":90},"8":{"text":"#{jtcy.phone}","style":90},"9":{"style":112,"text":" "}},"isDrag":true},"34":{"cells":{"0":{"text":" ","style":7},"1":{"text":" ","style":7},"2":{"text":" ","style":7},"3":{"text":" ","style":7},"4":{"text":" ","style":7},"5":{"text":" ","style":7},"6":{"text":" ","style":7},"7":{"text":" ","style":7},"8":{"text":" ","style":7},"9":{"style":112,"text":" "}}},"35":{"cells":{"0":{"merge":[0,2],"text":"所获奖励","style":125},"3":{"text":" ","style":7},"4":{"text":" ","style":7},"5":{"text":" ","style":7},"6":{"text":" ","style":7},"7":{"text":" ","style":7},"8":{"text":" ","style":7},"9":{"style":112,"text":" "}},"height":47},"36":{"cells":{"0":{"text":"时间","style":90,"merge":[0,2]},"3":{"style":90,"text":"地点","merge":[0,2]},"6":{"style":90,"text":"所获得的奖励名称","merge":[0,2]},"9":{"style":112,"text":" "}}},"37":{"cells":{"0":{"text":"#{jiangli.date}","style":90,"merge":[0,2]},"3":{"text":"#{jiangli.didian}","style":90,"merge":[0,2]},"6":{"text":"#{jiangli.mingcheng}","style":90,"merge":[0,2]},"9":{"style":112,"text":" "}},"isDrag":true},"len":98},"dbexps":[],"toolPrintSizeObj":{"printType":"A4","widthPx":718,"heightPx":1047},"dicts":[],"freeze":"A1","dataRectWidth":703,"displayConfig":{},"background":false,"name":"sheet1","autofilter":{},"styles":[{"align":"center"},{"align":"center","font":{"size":16}},{"align":"center","font":{"size":16,"bold":true}},{"align":"center","font":{"size":14,"bold":true}},{"align":"center","font":{"name":"仿宋"}},{"font":{"name":"仿宋"}},{"align":"center","font":{"name":"宋体"}},{"font":{"name":"宋体"}},{"align":"center","font":{"name":"宋体","size":12}},{"font":{"name":"宋体","size":12}},{"align":"center","font":{"name":"宋体","size":8}},{"font":{"name":"宋体","size":8}},{"align":"center","font":{"name":"宋体","size":10}},{"font":{"name":"宋体","size":10}},{"align":"center","font":{"name":"隶书","size":10}},{"font":{"name":"隶书","size":10}},{"align":"center","font":{"name":"华文中宋","size":10}},{"font":{"name":"华文中宋","size":10}},{"align":"center","font":{"name":"Microsoft YaHei","size":10}},{"font":{"name":"Microsoft YaHei","size":10}},{"textwrap":true},{"textwrap":true,"align":"center"},{"textwrap":true,"align":"center","font":{"name":"宋体"}},{"align":"center","font":{"name":"宋体","size":10},"border":{"bottom":["thin","#000100"],"top":["thin","#000100"],"left":["thin","#000100"],"right":["thin","#000100"]}},{"font":{"name":"宋体","size":10},"border":{"bottom":["thin","#000100"],"top":["thin","#000100"],"left":["thin","#000100"],"right":["thin","#000100"]}},{"textwrap":true,"align":"center","font":{"name":"宋体"},"border":{"bottom":["thin","#000100"],"top":["thin","#000100"],"left":["thin","#000100"],"right":["thin","#000100"]}},{"font":{"name":"宋体"},"border":{"bottom":["thin","#000100"],"top":["thin","#000100"],"left":["thin","#000100"],"right":["thin","#000100"]}},{"align":"center","font":{"name":"宋体"},"border":{"bottom":["thin","#000100"],"top":["thin","#000100"],"left":["thin","#000100"],"right":["thin","#000100"]}},{"font":{"bold":true}},{"font":{"bold":true,"size":12}},{"font":{"bold":true,"size":10}},{"font":{"bold":true,"size":10},"align":"center"},{"font":{"bold":true},"align":"center"},{"font":{"bold":true,"size":10},"align":"center","border":{"bottom":["thin","#000"],"top":["thin","#000"],"left":["thin","#000"],"right":["thin","#000"]}},{"font":{"bold":true},"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"]}},{"font":{"bold":true,"size":10,"name":"宋体"},"align":"center","border":{"bottom":["thin","#000"],"top":["thin","#000"],"left":["thin","#000"],"right":["thin","#000"]}},{"font":{"bold":true,"size":10,"name":"宋体"},"align":"center"},{"font":{"bold":true,"name":"宋体"},"align":"center","border":{"bottom":["thin","#000"],"top":["thin","#000"],"left":["thin","#000"],"right":["thin","#000"]}},{"font":{"bold":true,"name":"宋体"},"align":"center"},{"border":{"bottom":["thin","#000"],"top":["thin","#000"],"left":["thin","#000"],"right":["thin","#000"]},"font":{"name":"宋体"}},{"align":"center","border":{"bottom":["thin","#000"],"top":["thin","#000"],"left":["thin","#000"],"right":["thin","#000"]}},{"border":{"top":["thin","#000"],"left":["thin","#000"]}},{"align":"center","font":{"size":14,"bold":true},"border":{"top":["thin","#000"]}},{"border":{"top":["thin","#000"],"right":["thin","#000"]}},{"border":{"left":["thin","#000"]}},{"border":{"right":["thin","#000"]}},{"border":{"bottom":["thin","#000"],"left":["thin","#000"]}},{"border":{"bottom":["thin","#000"]}},{"border":{"bottom":["thin","#000"],"right":["thin","#000"]}},{"border":{"top":["medium","#000"],"left":["medium","#000"]}},{"align":"center","font":{"size":14,"bold":true},"border":{"top":["medium","#000"]}},{"border":{"top":["medium","#000"],"right":["medium","#000"]}},{"border":{"left":["medium","#000"]}},{"border":{"right":["medium","#000"]}},{"border":{"bottom":["medium","#000"],"left":["medium","#000"]}},{"border":{"bottom":["medium","#000"]}},{"border":{"bottom":["medium","#000"],"right":["medium","#000"]}},{"border":{"top":["medium","#000"],"left":["medium","#000"]},"font":{"name":"Microsoft YaHei"}},{"align":"center","font":{"size":14,"bold":true,"name":"Microsoft YaHei"},"border":{"top":["medium","#000"]}},{"align":"center","font":{"size":14,"bold":true,"name":"Microsoft YaHei"}},{"border":{"top":["medium","#000"],"right":["medium","#000"]},"font":{"name":"Microsoft YaHei"}},{"border":{"left":["medium","#000"]},"font":{"name":"Microsoft YaHei"}},{"align":"center","font":{"name":"Microsoft YaHei","size":10},"border":{"bottom":["thin","#000100"],"top":["thin","#000100"],"left":["thin","#000100"],"right":["thin","#000100"]}},{"border":{"right":["medium","#000"]},"font":{"name":"Microsoft YaHei"}},{"font":{"name":"Microsoft YaHei","size":10},"border":{"bottom":["thin","#000100"],"top":["thin","#000100"],"left":["thin","#000100"],"right":["thin","#000100"]}},{"font":{"name":"Microsoft YaHei"}},{"textwrap":true,"align":"center","font":{"name":"Microsoft YaHei"},"border":{"bottom":["thin","#000100"],"top":["thin","#000100"],"left":["thin","#000100"],"right":["thin","#000100"]}},{"textwrap":true,"align":"center","font":{"name":"Microsoft YaHei"}},{"font":{"name":"Microsoft YaHei"},"border":{"bottom":["thin","#000100"],"top":["thin","#000100"],"left":["thin","#000100"],"right":["thin","#000100"]}},{"align":"center","font":{"name":"Microsoft YaHei"},"border":{"bottom":["thin","#000100"],"top":["thin","#000100"],"left":["thin","#000100"],"right":["thin","#000100"]}},{"align":"center","font":{"name":"Microsoft YaHei"}},{"font":{"bold":true,"size":10,"name":"Microsoft YaHei"},"align":"center","border":{"bottom":["thin","#000"],"top":["thin","#000"],"left":["thin","#000"],"right":["thin","#000"]}},{"font":{"bold":true,"size":10,"name":"Microsoft YaHei"},"align":"center"},{"font":{"bold":true,"name":"Microsoft YaHei"},"align":"center","border":{"bottom":["thin","#000"],"top":["thin","#000"],"left":["thin","#000"],"right":["thin","#000"]}},{"font":{"bold":true,"name":"Microsoft YaHei"},"align":"center"},{"border":{"bottom":["thin","#000"],"top":["thin","#000"],"left":["thin","#000"],"right":["thin","#000"]},"font":{"name":"Microsoft YaHei"}},{"align":"center","border":{"bottom":["thin","#000"],"top":["thin","#000"],"left":["thin","#000"],"right":["thin","#000"]},"font":{"name":"Microsoft YaHei"}},{"border":{"bottom":["medium","#000"],"left":["medium","#000"]},"font":{"name":"Microsoft YaHei"}},{"border":{"bottom":["medium","#000"]},"font":{"name":"Microsoft YaHei"}},{"border":{"bottom":["medium","#000"],"right":["medium","#000"]},"font":{"name":"Microsoft YaHei"}},{"align":"center","font":{"name":"Microsoft YaHei","size":8},"border":{"bottom":["thin","#000100"],"top":["thin","#000100"],"left":["thin","#000100"],"right":["thin","#000100"]}},{"font":{"name":"Microsoft YaHei","size":8}},{"align":"center","font":{"name":"Microsoft YaHei","size":9},"border":{"bottom":["thin","#000100"],"top":["thin","#000100"],"left":["thin","#000100"],"right":["thin","#000100"]}},{"align":"center","font":{"name":"Microsoft YaHei","size":8}},{"border":{"top":["medium","#000"],"left":["medium","#000"]},"font":{"name":"宋体"}},{"align":"center","font":{"size":14,"bold":true,"name":"宋体"},"border":{"top":["medium","#000"]}},{"align":"center","font":{"size":14,"bold":true,"name":"宋体"}},{"border":{"left":["medium","#000"]},"font":{"name":"宋体"}},{"align":"center","font":{"name":"宋体","size":8},"border":{"bottom":["thin","#000100"],"top":["thin","#000100"],"left":["thin","#000100"],"right":["thin","#000100"]}},{"align":"center","border":{"bottom":["thin","#000"],"top":["thin","#000"],"left":["thin","#000"],"right":["thin","#000"]},"font":{"name":"宋体"}},{"border":{"bottom":["medium","#000"],"left":["medium","#000"]},"font":{"name":"宋体"}},{"border":{"bottom":["medium","#000"]},"font":{"name":"宋体"}},{"align":"center","font":{"name":"宋体","size":10,"bold":true},"border":{"bottom":["thin","#000100"],"top":["thin","#000100"],"left":["thin","#000100"],"right":["thin","#000100"]}},{"font":{"name":"宋体","size":10,"bold":true},"border":{"bottom":["thin","#000100"],"top":["thin","#000100"],"left":["thin","#000100"],"right":["thin","#000100"]}},{"font":{"name":"宋体","size":10,"bold":true}},{"textwrap":true,"align":"center","font":{"name":"宋体","bold":true},"border":{"bottom":["thin","#000100"],"top":["thin","#000100"],"left":["thin","#000100"],"right":["thin","#000100"]}},{"textwrap":true,"align":"center","font":{"name":"宋体","bold":true}},{"align":"center","font":{"name":"宋体","bold":true},"border":{"bottom":["thin","#000100"],"top":["thin","#000100"],"left":["thin","#000100"],"right":["thin","#000100"]}},{"font":{"name":"宋体","bold":true}},{"border":{"top":["thin","#000"],"left":["thin","#000"]},"font":{"name":"宋体"}},{"align":"center","font":{"size":14,"bold":true,"name":"宋体"},"border":{"top":["thin","#000"]}},{"border":{"top":["thin","#000"],"right":["thin","#000"]},"font":{"name":"Microsoft YaHei"}},{"border":{"left":["thin","#000"]},"font":{"name":"宋体"}},{"border":{"right":["thin","#000"]},"font":{"name":"Microsoft YaHei"}},{"border":{"bottom":["thin","#000"],"left":["thin","#000"]},"font":{"name":"宋体"}},{"border":{"bottom":["thin","#000"]},"font":{"name":"宋体"}},{"border":{"bottom":["thin","#000"],"right":["thin","#000"]},"font":{"name":"Microsoft YaHei"}},{"border":{"top":["thin","#ffffff"],"left":["thin","#ffffff"]},"font":{"name":"宋体"}},{"align":"center","font":{"size":14,"bold":true,"name":"宋体"},"border":{"top":["thin","#ffffff"]}},{"border":{"top":["thin","#ffffff"],"right":["thin","#ffffff"]},"font":{"name":"Microsoft YaHei"}},{"border":{"left":["thin","#ffffff"]},"font":{"name":"宋体"}},{"border":{"right":["thin","#ffffff"]},"font":{"name":"Microsoft YaHei"}},{"border":{"bottom":["thin","#ffffff"],"left":["thin","#ffffff"]},"font":{"name":"宋体"}},{"border":{"bottom":["thin","#ffffff"]},"font":{"name":"宋体"}},{"border":{"bottom":["thin","#ffffff"],"right":["thin","#ffffff"]},"font":{"name":"Microsoft YaHei"}},{"align":"left","font":{"name":"宋体"},"border":{"bottom":["thin","#000100"],"top":["thin","#000100"],"left":["thin","#000100"],"right":["thin","#000100"]}},{"align":"left","font":{"name":"宋体"}},{"font":{"name":"宋体","size":10},"border":{"bottom":["thin","#000"],"top":["thin","#000"],"left":["thin","#000"],"right":["thin","#000"]}},{"border":{"top":["thin","#000"],"left":["thin","#000"],"right":["thin","#000"]}},{"font":{"name":"宋体","size":10},"border":{"left":["thin","#000"],"right":["thin","#000"]}},{"font":{"name":"宋体","size":10},"border":{"bottom":["thin","#000"],"left":["thin","#000"],"right":["thin","#000"]}},{"font":{"name":"宋体","bold":true},"align":"right"},{"font":{"name":"宋体","bold":true},"align":"right","valign":"bottom"},{"font":{"name":"宋体","bold":true},"align":"left","valign":"bottom"},{"font":{"name":"宋体","bold":true},"valign":"bottom"},{"align":"center","font":{"name":"宋体","size":10},"border":{"bottom":["thin","#000"],"top":["thin","#000"],"left":["thin","#000"],"right":["thin","#000"]}},{"font":{"name":"宋体","size":10,"bold":true},"border":{"bottom":["thin","#000"],"top":["thin","#000"],"left":["thin","#000"],"right":["thin","#000"]}},{"textwrap":true,"align":"center","font":{"name":"宋体","bold":true},"border":{"bottom":["thin","#000"],"top":["thin","#000"],"left":["thin","#000"],"right":["thin","#000"]}},{"align":"left","font":{"name":"宋体"},"border":{"bottom":["thin","#000"],"top":["thin","#000"],"left":["thin","#000"],"right":["thin","#000"]}},{"border":{"bottom":["thin","#000100"],"top":["thin","#000100"],"left":["thin","#000100"],"right":["thin","#000100"]}},{"font":{"name":"宋体","size":10},"border":{"bottom":["thin","#000100"],"top":["thin","#000100"],"left":["thin","#000100"],"right":["thin","#000100"]},"format":"datetime"},{"font":{"name":"宋体","size":10},"format":"datetime"},{"font":{"name":"宋体","size":10},"border":{"bottom":["thin","#000100"],"top":["thin","#000100"],"left":["thin","#000100"],"right":["thin","#000100"]},"format":"normal"},{"font":{"name":"宋体","size":10},"format":"normal"}],"validations":[],"cols":{"0":{"width":73},"1":{"width":71},"2":{"width":69},"3":{"width":89},"4":{"width":64},"5":{"width":47},"6":{"width":68},"7":{"width":100},"8":{"width":103},"9":{"width":19},"10":{"width":146},"11":{"width":85},"len":50},"merges":["H3:I3","B3:D3","A2:I2","D6:F6","D7:F7","A8:B8","G8:H8","A9:B9","A10:B10","C10:E10","C8:E8","C9:E9","A11:B11","C11:E11","F11:G11","H11:I11","C12:I14","A15:B15","C15:E15","F15:G15","H15:I15","A16:B16","A17:B17","A18:B18","C17:I17","C18:I18","A20:E20","A21:B21","C21:D21","E21:F21","G21:H21","A22:B22","A24:E24","A25:B25","C25:D25","G25:H25","A26:B26","A28:E28","A29:B29","C29:D29","A30:B30","A32:B32","A33:B33","C33:D33","A34:B34","C34:D34","A36:C36","C16:D16","F16:G16","QAAAAAACI1:JAAAAAABJ38","A1:I1","H4:I4","G9:I9","G22:H22","E22:F22","C22:D22","C26:D26","G26:H26","C30:D30","G30:H30","E30:F30","D37:F37","D38:F38","A38:C38","A37:C37","G37:I37","G38:I38","E29:F29","G29:H29","E25:F25","E26:F26","F33:G33","F34:G34","A12:B14","I5:I8"],"imgList":[{"row":4,"col":8,"width":"101","height":"128","src":"https://jimureport.oss-cn-beijing.aliyuncs.com/designreport/images/QQ截图20210115102648_1610694177544_1617244906979.png","layer_id":"cvkWDQVZhfJPgcS4","offsetX":0,"offsetY":0,"virtualCellRange":[[4,8]]}]}', NULL, 'https://static.jeecg.com/designreport/images/1122_1607312336469.png', 'admin', '2020-10-10 16:32:53', 'admin', '2021-04-01 02:42:07', 0, NULL, NULL, 1, 609, NULL, NULL, NULL, NULL, 0, NULL); -INSERT INTO "public"."jimu_report" VALUES ('1316944968992034816', '20201016113231', '员工信息登记', NULL, NULL, '984302991393210368', '{"loopBlockList":[],"area":false,"printElWidth":718,"excel_config_id":"1316944968992034816","printElHeight":1047,"rows":{"1":{"cells":{"0":{"text":"员工信息登记表","merge":[0,6],"style":28},"1":{"style":21,"text":" "},"2":{"style":21,"text":" "},"3":{"style":21,"text":" "},"4":{"style":21,"text":" "},"5":{"style":21,"text":" "},"6":{"style":21,"text":" "}},"height":46},"2":{"cells":{"0":{"text":"编号:","style":29},"1":{"text":"${employee.num}","style":30,"merge":[0,3]},"2":{"text":" ","style":24},"3":{"text":" ","style":24},"4":{"text":" ","style":24},"5":{"text":"填写日期:","style":29},"6":{"text":"${employee.create_time}","style":36}},"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":"Ym8ny6lYTdutY5tT"}},"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]},"2":{"text":" ","style":24},"3":{"text":" ","style":24},"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]},"2":{"text":" ","style":24},"3":{"text":" ","style":24},"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]},"2":{"text":" ","style":24},"3":{"text":" ","style":24},"4":{"text":"邮编:","style":29},"5":{"text":"${employee.zip_code}","style":30,"merge":[0,1]},"6":{"text":" ","style":24}},"isDrag":true,"height":45},"9":{"cells":{"0":{"text":"Email:","style":29},"1":{"text":"${employee.email}","style":30,"merge":[0,2]},"2":{"text":" ","style":24},"3":{"text":" ","style":24},"4":{"text":"手机号:","style":29},"5":{"text":"${employee.phone}","style":30,"merge":[0,1]},"6":{"text":" ","style":24}},"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]},"6":{"text":" ","style":24}},"isDrag":true,"height":41},"11":{"cells":{"0":{"text":"毕业时间:","style":29},"1":{"text":"${employee.graduation_time}","style":34},"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]},"6":{"text":" ","style":24}},"isDrag":true,"height":42},"12":{"cells":{"0":{"text":"教育经历:","style":32},"1":{"text":"","style":35,"merge":[0,5]},"2":{"text":" ","style":40},"3":{"text":" ","style":40},"4":{"text":" ","style":40},"5":{"text":" ","style":40},"6":{"text":" ","style":40}},"isDrag":true,"height":39},"13":{"cells":{"0":{"text":"${employee.education_experience}","style":33,"merge":[0,6]},"1":{"style":27,"text":" "},"2":{"style":27,"text":" "},"3":{"style":27,"text":" "},"4":{"style":27,"text":" "},"5":{"style":27,"text":" "},"6":{"style":27,"text":" "}},"isDrag":true,"height":70},"14":{"cells":{"0":{"text":"工作经历:","style":32},"1":{"merge":[0,5],"style":30,"text":" "},"2":{"text":" ","style":24},"3":{"text":" ","style":24},"4":{"text":" ","style":24},"5":{"text":" ","style":24},"6":{"text":" ","style":24}},"height":43},"15":{"cells":{"0":{"text":"${employee.work_experience}","style":30,"merge":[0,6]},"1":{"text":" ","style":24},"2":{"text":" ","style":24},"3":{"text":" ","style":24},"4":{"text":" ","style":24},"5":{"text":" ","style":24},"6":{"text":" ","style":24}},"isDrag":true,"height":61},"17":{"cells":{"1":{"text":"","style":37}}},"len":100},"dbexps":[],"toolPrintSizeObj":{"printType":"A4","widthPx":718,"heightPx":1047},"dicts":["sex1"],"freeze":"A1","dataRectWidth":712,"background":false,"name":"sheet1","autofilter":{},"styles":[{"align":"center"},{"align":"center","font":{"bold":true}},{"align":"center","font":{"bold":true,"size":16}},{"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":{"bold":true}},{"font":{"bold":true}},{"align":"center","font":{"bold":true,"size":16},"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":{"bold":false}},{"font":{"bold":false}},{"border":{"bottom":["thin","#000"],"top":["thin","#000"],"left":["thin","#000"],"right":["thin","#000"]},"font":{"bold":true},"align":"right"},{"align":"center","font":{"bold":true,"size":16},"border":{"bottom":["thin","#a5a5a5"],"top":["thin","#a5a5a5"],"left":["thin","#a5a5a5"],"right":["thin","#a5a5a5"]}},{"border":{"bottom":["thin","#a5a5a5"],"top":["thin","#a5a5a5"],"left":["thin","#a5a5a5"],"right":["thin","#a5a5a5"]},"font":{"bold":true},"align":"right"},{"border":{"bottom":["thin","#a5a5a5"],"top":["thin","#a5a5a5"],"left":["thin","#a5a5a5"],"right":["thin","#a5a5a5"]}},{"border":{"bottom":["thin","#a5a5a5"],"top":["thin","#a5a5a5"],"left":["thin","#a5a5a5"],"right":["thin","#a5a5a5"]},"font":{"bold":true}},{"border":{"bottom":["thin","#a5a5a5"],"top":["thin","#a5a5a5"],"left":["thin","#a5a5a5"],"right":["thin","#a5a5a5"]},"font":{"bold":false}},{"align":"center","font":{"bold":true,"size":16},"border":{"bottom":["thin","#262626"],"top":["thin","#262626"],"left":["thin","#262626"],"right":["thin","#262626"]}},{"border":{"bottom":["thin","#262626"],"top":["thin","#262626"],"left":["thin","#262626"],"right":["thin","#262626"]},"font":{"bold":true},"align":"right"},{"border":{"bottom":["thin","#262626"],"top":["thin","#262626"],"left":["thin","#262626"],"right":["thin","#262626"]}},{"border":{"bottom":["thin","#262626"],"top":["thin","#262626"],"left":["thin","#262626"],"right":["thin","#262626"]},"font":{"bold":true}},{"border":{"bottom":["thin","#262626"],"top":["thin","#262626"],"left":["thin","#262626"],"right":["thin","#262626"]},"font":{"bold":false}},{"align":"center","font":{"bold":true,"size":16,"name":"宋体"},"border":{"bottom":["thin","#262626"],"top":["thin","#262626"],"left":["thin","#262626"],"right":["thin","#262626"]}},{"align":"center","font":{"bold":true,"size":16,"name":"宋体"}},{"border":{"bottom":["thin","#262626"],"top":["thin","#262626"],"left":["thin","#262626"],"right":["thin","#262626"]},"font":{"bold":true,"name":"宋体"},"align":"right"},{"border":{"bottom":["thin","#262626"],"top":["thin","#262626"],"left":["thin","#262626"],"right":["thin","#262626"]},"font":{"name":"宋体"}},{"font":{"name":"宋体"}},{"border":{"bottom":["thin","#262626"],"top":["thin","#262626"],"left":["thin","#262626"],"right":["thin","#262626"]},"font":{"bold":true,"name":"宋体"}},{"border":{"bottom":["thin","#262626"],"top":["thin","#262626"],"left":["thin","#262626"],"right":["thin","#262626"]},"font":{"bold":false,"name":"宋体"}},{"font":{"bold":false,"name":"宋体"}},{"align":"center","font":{"bold":true,"size":16,"name":"宋体"},"border":{"bottom":["thin","#000100"],"top":["thin","#000100"],"left":["thin","#000100"],"right":["thin","#000100"]}},{"border":{"bottom":["thin","#000100"],"top":["thin","#000100"],"left":["thin","#000100"],"right":["thin","#000100"]},"font":{"bold":true,"name":"宋体"},"align":"right"},{"border":{"bottom":["thin","#000100"],"top":["thin","#000100"],"left":["thin","#000100"],"right":["thin","#000100"]},"font":{"name":"宋体"}},{"border":{"bottom":["thin","#000100"],"top":["thin","#000100"],"left":["thin","#000100"],"right":["thin","#000100"]}},{"border":{"bottom":["thin","#000100"],"top":["thin","#000100"],"left":["thin","#000100"],"right":["thin","#000100"]},"font":{"bold":true,"name":"宋体"}},{"border":{"bottom":["thin","#000100"],"top":["thin","#000100"],"left":["thin","#000100"],"right":["thin","#000100"]},"font":{"bold":false,"name":"宋体"}},{"border":{"bottom":["thin","#000100"],"top":["thin","#000100"],"left":["thin","#000100"],"right":["thin","#000100"]},"font":{"name":"宋体"},"format":"date2"},{"border":{"bottom":["thin","#000100"],"top":["thin","#000100"],"left":["thin","#000100"],"right":["thin","#000100"]},"font":{"name":"宋体"},"format":"normal"},{"border":{"bottom":["thin","#000100"],"top":["thin","#000100"],"left":["thin","#000100"],"right":["thin","#000100"]},"font":{"name":"宋体"},"format":"date"},{"format":"date2"},{"font":{"name":"宋体"},"format":"date2"},{"border":{"bottom":["thin","#000100"],"top":["thin","#000100"],"left":["thin","#000100"],"right":["thin","#000100"]},"font":{"name":"宋体"},"format":"time"},{"font":{"name":"宋体"},"format":"normal"}],"validations":[],"cols":{"0":{"width":79},"1":{"width":92},"2":{"width":76},"3":{"width":106},"5":{"width":123},"6":{"width":136},"len":50},"merges":["A2:G2","B3:E3","B7:D7","B8:D8","B9:D9","B10:D10","F9:G9","F10:G10","F11:G11","F12:G12","B13:G13","A14:G14","B15:G15","A16:G16","G4:G8"],"imgList":[{"row":3,"col":6,"width":"135","height":"192","src":"https://static.jeecg.com/designreport/images/QQ截图20210108095848_1610071294294.png","layer_id":"Ym8ny6lYTdutY5tT","offsetX":0,"offsetY":0,"virtualCellRange":[[3,6]]}]}', NULL, 'https://static.jeecg.com/designreport/images/1133_1607312428261.png', 'admin', '2020-10-16 11:32:32', 'admin', '2021-02-03 13:59:35', 0, NULL, NULL, 1, 1413, NULL, NULL, NULL, NULL, 0, NULL); -INSERT INTO "public"."jimu_report" VALUES ('1331503965770223616', '20201125155042', '房屋销售综合展示大屏', NULL, NULL, '984302961118724096', '{"loopBlockList":[],"chartList":[{"row":1,"col":1,"width":"338","height":"378","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\":[2,2,2,3,4,3,3,5,2,7,4,8],\"name\":\"房子\",\"itemStyle\":{\"color\":\"#67994B\",\"barBorderRadius\":7},\"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},\"backgroundColor\":{\"src\":\"https://jimureport.oss-cn-beijing.aliyuncs.com/designreport/images/bg1_1606961907450_1617248229528.png\"}}","url":"","extData":{"dataType":"api","apiStatus":"1","dataId":"1331511745851731969","axisX":"name","axisY":"value","series":"type","yText":"","xText":"","dbCode":"chengjiao","chartType":"bar.multi.horizontal","isTiming":true,"intervalTime":"5"},"layer_id":"5ggWQtDUvSopC4iL","offsetX":0,"offsetY":0,"virtualCellRange":[[1,1],[1,2],[1,3]]},{"row":1,"col":12,"width":"327","height":"152","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]},\"backgroundColor\":{\"src\":\"https://static.jeecg.com/designreport/images/bg1_1607938818911.png\"}}","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,"virtualCellRange":[[1,12],[1,13],[1,14],[1,15]]},{"row":7,"col":12,"width":"324","height":"215","config":"{\"legend\":{\"padding\":[25,20,25,10],\"data\":[\"1室\",\"2室\",\"3室\",\"4室\",\"5室\"],\"top\":\"bottom\",\"orient\":\"vertical\",\"left\":\"right\",\"show\":true,\"textStyle\":{\"color\":\"#FFFFFF\",\"fontSize\":\"10\"}},\"series\":[{\"isRose\":false,\"data\":[{\"name\":\"1室\",\"value\":10,\"itemStyle\":{\"color\":\"rgba(53,165,180,1)\"}},{\"name\":\"2室\",\"value\":30,\"itemStyle\":{\"color\":\"rgba(60,140,198,1)\"}},{\"name\":\"3室\",\"value\":20,\"itemStyle\":{\"color\":\"rgba(93,144,81,1)\"}},{\"name\":\"4室\",\"value\":5,\"itemStyle\":{\"color\":\"rgba(191,146,68,1)\"}},{\"name\":\"5室\",\"value\":3,\"itemStyle\":{\"color\":\"rgba(188,69,117,1)\"}}],\"isRadius\":true,\"roseType\":\"\",\"notCount\":false,\"center\":[\"160\",\"120\"],\"name\":\"访问来源\",\"minAngle\":0,\"label\":{\"show\":false,\"position\":\"outside\",\"textStyle\":{\"color\":\"\",\"fontSize\":\"8\",\"fontWeight\":\"bolder\"}},\"type\":\"pie\",\"radius\":[\"40%\",\"50%\"],\"autoSort\":false}],\"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]},\"backgroundColor\":{\"src\":\"https://static.jeecg.com/designreport/images/bg1_1608536502813.png\"}}","url":"","extData":{"dataType":"api","apiStatus":"1","dataId":"1331919172472524801","axisX":"name","axisY":"value","series":"type","yText":"","xText":"","dbCode":"huxingxiaoshou","chartType":"pie.doughnut","isTiming":true,"intervalTime":"5","id":"MCJP8uqwe57YoCvF"},"layer_id":"MCJP8uqwe57YoCvF","offsetX":0,"offsetY":0,"virtualCellRange":[[7,12],[7,13],[7,14],[7,15]]},{"row":7,"col":4,"width":"662","height":"222","config":"{\"yAxis\":{\"axisLabel\":{\"textStyle\":{\"color\":\"#FFFFFF\",\"fontSize\":\"10\"}},\"axisLine\":{\"lineStyle\":{\"color\":\"#FFFFFF\"}},\"show\":true,\"splitLine\":{\"lineStyle\":{\"color\":\"red\",\"width\":1,\"type\":\"solid\"},\"show\":false},\"type \":\"value\"},\"xAxis\":{\"axisLabel\":{\"rotate\":0,\"interval\":0,\"textStyle\":{\"color\":\"#FFFFFF\",\"fontSize\":\"10\"}},\"data\":[\"1月\",\"2月\",\"3月\",\"4月\",\"5月\",\"6月\",\"7月\",\"8月\",\"9月\",\"10月\",\"11月\",\"12月\"],\"axisLine\":{\"lineStyle\":{\"color\":\"#FFFFFF\"}},\"show\":true,\"splitLine\":{\"lineStyle\":{\"color\":\"#A98E8E\",\"width\":1,\"type\":\"solid\"},\"show\":false},\"type\":\"category\"},\"legend\":{\"padding\":[25,20,25,10],\"data\":[\"成交量\",\"成交价\"],\"top\":\"top\",\"orient\":\"vertical\",\"left\":\"center\",\"show\":false,\"textStyle\":{\"color\":\"#FBF8F8\",\"fontSize\":\"10\"}},\"grid\":{\"top\":58,\"left\":30,\"bottom\":43,\"right\":32},\"series\":[{\"barWidth\":15,\"stack\":\"1\",\"data\":[10,7,5,5,7,9,3,6,5,8,6,6],\"name\":\"成交量\",\"itemStyle\":{\"color\":\"#37A5B1\",\"barBorderRadius\":13},\"type\":\"bar\",\"barMinHeight\":7,\"typeData\":[{\"name\":\"成交量\",\"type\":\"\",\"_index\":0,\"_rowKey\":136,\"stack\":\"1\"},{\"name\":\"成交价\",\"type\":\"\",\"stack\":\"1\",\"_index\":1,\"_rowKey\":139}]},{\"barWidth\":15,\"stack\":\"1\",\"data\":[5,5,12,5,5,5,5,10,5,5,5,5],\"name\":\"成交价\",\"itemStyle\":{\"color\":\"#2E72A7\",\"barBorderRadius\":13},\"type\":\"bar\",\"barMinHeight\":7,\"typeData\":[{\"name\":\"成交量\",\"type\":\"\",\"_index\":0,\"_rowKey\":136,\"stack\":\"1\"},{\"name\":\"成交价\",\"type\":\"\",\"stack\":\"1\",\"_index\":1,\"_rowKey\":139}]}],\"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},\"backgroundColor\":{\"src\":\"https://static.jeecg.com/designreport/images/QQ截图20201207201434_1607343287788.png\"}}","url":"","extData":{"dataType":"api","apiStatus":"1","dataId":"1331872643531526146","axisX":"name","axisY":"value","series":"type","yText":"","xText":"","dbCode":"chengjiao1","chartType":"bar.stack","chartId":"","isTiming":true,"intervalTime":"5"},"layer_id":"Nf6Xud4fZqEfvQw4","offsetX":0,"offsetY":0,"virtualCellRange":[[7,4],[7,5],[7,6],[7,7],[7,8],[7,9],[7,10],[7,11]]},{"row":16,"col":12,"width":"326","height":"200","config":"{\"radar\":[{\"indicator\":[{\"name\":\"房产证\",\"max\":520},{\"name\":\"购房发票\",\"max\":310},{\"name\":\"购房合同\",\"max\":380},{\"name\":\"预售合同\",\"max\":450},{\"name\":\"抵押合同\",\"max\":600},{\"name\":\"预收合同\",\"max\":350}],\"shape\":\"polygon\",\"axisLine\":{\"lineStyle\":{\"color\":\"gray\",\"opacity\":0.5}},\"center\":[\"50%\",\"50%\"],\"name\":{\"formatter\":\"【{value}】\",\"textStyle\":{\"color\":\"#72ACD1\",\"fontSize\":\"10\"}},\"splitLine\":{\"lineStyle\":{\"color\":\"gray\",\"opacity\":0.5}}}],\"legend\":{\"padding\":[25,20,25,10],\"data\":[\"售后产权\",\"单位产权\",\"个人产权\"],\"top\":\"top\",\"orient\":\"horizontal\",\"left\":\"center\",\"show\":false,\"textStyle\":{\"color\":\"#333\",\"fontSize\":12}},\"series\":[{\"type\":\"radar\",\"data\":[{\"name\":\"售后产权\",\"value\":[43,100,280,350,500,250],\"areaStyle\":{\"color\":\"#3F9AFB\",\"opacity\":1},\"lineStyle\":{\"color\":\"#2D8CF0\"}},{\"name\":\"单位产权\",\"value\":[190,50,140,280,310,150],\"areaStyle\":{\"color\":\"#A6F65C\",\"opacity\":1},\"lineStyle\":{\"color\":\"#55FE4D\"}},{\"name\":\"个人产权\",\"value\":[420,210,160,0,120,130],\"areaStyle\":{\"color\":\"rgba(188,69,117,1)\",\"opacity\":1},\"lineStyle\":{\"color\":\"rgba(188,69,117,1)\"}}]}],\"tooltip\":{\"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,20]},\"backgroundColor\":{\"src\":\"https://static.jeecg.com/designreport/images/bg1_1608274537110.png\"}}","url":"","extData":{"dataType":"api","apiStatus":"1","dataId":"1331916030221602818","axisX":"name","axisY":"value","series":"type","yText":"","xText":"","dbCode":"btchanquan","chartType":"radar.basic","isTiming":true,"intervalTime":"10","id":"IWoBtyiRxjkEbkfD"},"layer_id":"IWoBtyiRxjkEbkfD","offsetX":0,"offsetY":0,"virtualCellRange":[[16,12],[16,13],[16,14],[16,15]]},{"row":16,"col":1,"width":"337","height":"205","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\":\"#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\":55,\"left\":70,\"bottom\":40,\"right\":24},\"series\":[{\"barWidth\":13,\"data\":[20,15,12,10,7],\"name\":\"房子\",\"itemStyle\":{\"color\":\"#37A5B1\",\"barBorderRadius\":7},\"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},\"backgroundColor\":{\"src\":\"https://static.jeecg.com/designreport/images/bg1_1606961907450.png\"}}","url":"","extData":{"dataType":"api","apiStatus":"1","dataId":"1331514838211407873","axisX":"name","axisY":"value","series":"type","yText":"","xText":"","dbCode":"cjpaihang","chartType":"bar.multi.horizontal","isTiming":true,"intervalTime":"5"},"layer_id":"Cror94F1kmbP71ip","offsetX":0,"offsetY":0,"virtualCellRange":[[16,1],[16,2],[16,3]]},{"row":16,"col":4,"width":"334","height":"206","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\":\"#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\":55,\"left\":56,\"bottom\":38,\"right\":30},\"series\":[{\"barWidth\":13,\"data\":[20,15,12,10,7],\"name\":\"房子\",\"itemStyle\":{\"color\":\"#2E72A7\",\"barBorderRadius\":7},\"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},\"backgroundColor\":{\"src\":\"https://static.jeecg.com/designreport/images/bg1_1606961918589.png\"}}","url":"","extData":{"dataType":"api","apiStatus":"1","dataId":"1331514838211407873","axisX":"name","axisY":"value","series":"type","yText":"","xText":"","dbCode":"cjpaihang","chartType":"bar.multi.horizontal","isTiming":true,"intervalTime":"5","chartId":""},"layer_id":"pBOwp0Q0g4iuJCVm","offsetX":0,"offsetY":0,"virtualCellRange":[[16,4],[16,5],[16,6],[16,7]]},{"row":16,"col":8,"width":"324","height":"206","config":"{\"legend\":{\"padding\":[25,20,25,10],\"data\":[\"简装\",\"中装\",\"精装\",\"豪装\",\"毛坯\"],\"top\":\"bottom\",\"orient\":\"vertical\",\"left\":\"left\",\"show\":true,\"textStyle\":{\"color\":\"#FFFFFF\",\"fontSize\":\"10\"}},\"series\":[{\"isRose\":false,\"data\":[{\"name\":\"简装\",\"value\":10,\"itemStyle\":{\"color\":\"rgba(52,158,172,1)\"}},{\"name\":\"中装\",\"value\":10,\"itemStyle\":{\"color\":\"rgba(56,131,185,1)\"}},{\"name\":\"精装\",\"value\":10,\"itemStyle\":{\"color\":\"rgba(103,153,75,1)\"}},{\"name\":\"豪装\",\"value\":10,\"itemStyle\":{\"color\":\"rgba(230,165,55,1)\"}},{\"name\":\"毛坯\",\"value\":10,\"itemStyle\":{\"color\":\"\"}}],\"isRadius\":false,\"roseType\":\"\",\"notCount\":false,\"center\":[\"180\",\"100\"],\"name\":\"访问来源\",\"minAngle\":0,\"label\":{\"show\":false,\"position\":\"outside\",\"textStyle\":{\"fontSize\":\"10\",\"fontWeight\":\"bolder\"}},\"type\":\"pie\",\"radius\":\"52%\",\"autoSort\":false}],\"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]},\"backgroundColor\":{\"src\":\"https://static.jeecg.com/designreport/images/bg1_1608535503498.png\"}}","url":"","extData":{"dataType":"api","apiStatus":"1","dataId":"1331878107552010242","axisX":"name","axisY":"value","series":"type","yText":"","xText":"","dbCode":"zhuangxiu","chartType":"pie.simple","isTiming":true,"intervalTime":"5","id":"rQgkcYfLy4x0EP6h"},"layer_id":"rQgkcYfLy4x0EP6h","offsetX":0,"offsetY":0,"virtualCellRange":[[16,8],[16,9],[16,10],[16,11]]}],"area":{"sri":16,"sci":1,"eri":23,"eci":3,"width":340,"height":200},"excel_config_id":"1331503965770223616","printConfig":{"paper":"A4","width":210,"height":297,"definition":1,"isBackend":false,"marginX":10,"marginY":10},"rows":{"0":{"cells":{"0":{"text":""},"1":{"style":60,"merge":[0,13],"text":"房屋销售综合展示大屏"}},"height":113},"1":{"cells":{"1":{"merge":[14,2],"style":43,"text":" ","virtual":"5ggWQtDUvSopC4iL"},"2":{"text":" ","virtual":"5ggWQtDUvSopC4iL"},"3":{"text":" ","virtual":"5ggWQtDUvSopC4iL"},"4":{"style":53,"text":"成交量:","merge":[2,0],"virtual":"5ggWQtDUvSopC4iL"},"5":{"text":"#{qingkuang.cjl}","style":64,"merge":[2,0]},"7":{"style":53,"text":"成交金额:","merge":[2,0]},"8":{"text":"#{qingkuang.cjje}","style":68,"merge":[2,0]},"10":{"style":53,"text":"销售面积:","merge":[2,0]},"11":{"text":"#{qingkuang.xsmj}","style":64,"merge":[2,0]},"12":{"text":" ","virtual":"nk6I2RCefm9scS1k"},"13":{"text":" ","virtual":"nk6I2RCefm9scS1k"},"14":{"text":" ","virtual":"nk6I2RCefm9scS1k"},"15":{"text":" ","virtual":"nk6I2RCefm9scS1k"}},"isDrag":true},"2":{"cells":{"12":{"text":" "},"13":{"text":" "},"14":{"text":" "}}},"3":{"cells":{"12":{"text":" "},"13":{"text":" "},"14":{"text":" "}}},"4":{"cells":{"4":{"style":58,"text":"成交均价:","merge":[2,0]},"5":{"text":"#{qingkuang.cjjj}","style":65,"merge":[2,0]},"7":{"style":58,"text":"售房佣金:","merge":[2,0]},"8":{"text":"#{qingkuang.sfyj}","style":65,"merge":[2,0]},"10":{"style":58,"text":"预定客户:","merge":[2,0]},"11":{"text":"#{qingkuang.ydkh}","style":65,"merge":[2,0]},"12":{"text":" "},"13":{"text":" "},"14":{"text":" "}},"isDrag":true,"height":25},"5":{"cells":{"12":{"text":" "},"13":{"text":" "},"14":{"text":" "}}},"6":{"cells":{"12":{"text":" "},"13":{"text":" "},"14":{"text":" "}}},"7":{"cells":{"4":{"text":" ","virtual":"Nf6Xud4fZqEfvQw4"},"5":{"text":" ","virtual":"Nf6Xud4fZqEfvQw4"},"6":{"text":" ","virtual":"Nf6Xud4fZqEfvQw4"},"7":{"text":" ","virtual":"Nf6Xud4fZqEfvQw4"},"8":{"text":" ","virtual":"Nf6Xud4fZqEfvQw4"},"9":{"text":" ","virtual":"Nf6Xud4fZqEfvQw4"},"10":{"text":" ","virtual":"Nf6Xud4fZqEfvQw4"},"11":{"text":" ","virtual":"Nf6Xud4fZqEfvQw4"},"12":{"text":" ","virtual":"MCJP8uqwe57YoCvF"},"13":{"text":" ","virtual":"MCJP8uqwe57YoCvF"},"14":{"text":" ","virtual":"MCJP8uqwe57YoCvF"},"15":{"text":" ","virtual":"MCJP8uqwe57YoCvF"}}},"8":{"cells":{"4":{"text":" "},"5":{"text":" "},"6":{"text":" "},"7":{"text":" "},"8":{"text":" "},"9":{"text":" "},"10":{"text":" "},"11":{"text":" "},"12":{"text":" "},"13":{"text":" "},"14":{"text":" "}}},"9":{"cells":{"4":{"text":" "},"5":{"text":" "},"6":{"text":" "},"7":{"text":" "},"8":{"text":" "},"9":{"text":" "},"10":{"text":" "},"11":{"text":" "},"12":{"text":" "},"13":{"text":" "},"14":{"text":" "}}},"10":{"cells":{"4":{"text":" "},"5":{"text":" "},"6":{"text":" "},"7":{"text":" "},"8":{"text":" "},"9":{"text":" "},"10":{"text":" "},"11":{"text":" "},"12":{"text":" "},"13":{"text":" "},"14":{"text":" "}}},"11":{"cells":{"4":{"text":" "},"5":{"text":" "},"6":{"text":" "},"7":{"text":" "},"8":{"text":" "},"9":{"text":" "},"10":{"text":" "},"11":{"text":" "},"12":{"text":" "},"13":{"text":" "},"14":{"text":" "}}},"12":{"cells":{"4":{"text":" "},"5":{"text":" "},"6":{"text":" "},"7":{"text":" "},"8":{"text":" "},"9":{"text":" "},"10":{"text":" "},"11":{"text":" "},"12":{"text":" "},"13":{"text":" "},"14":{"text":" "}}},"13":{"cells":{"4":{"text":" "},"5":{"text":" "},"6":{"text":" "},"7":{"text":" "},"8":{"text":" "},"9":{"text":" "},"10":{"text":" "},"11":{"text":" "},"12":{"text":" "},"13":{"text":" "},"14":{"text":" "}}},"14":{"cells":{"4":{"text":" "},"5":{"text":" "},"6":{"text":" "},"7":{"text":" "},"8":{"text":" "},"9":{"text":" "},"10":{"text":" "},"11":{"text":" "},"12":{"text":" "},"13":{"text":" "},"14":{"text":" "}}},"15":{"cells":{"4":{"text":" "},"5":{"text":" "},"6":{"text":" "},"7":{"text":" "},"8":{"text":" "},"9":{"text":" "},"10":{"text":" "},"11":{"text":" "},"12":{"text":" "},"13":{"text":" "},"14":{"text":" "}}},"16":{"cells":{"1":{"style":43,"text":" ","merge":[7,2],"virtual":"Cror94F1kmbP71ip"},"2":{"text":" ","virtual":"Cror94F1kmbP71ip"},"3":{"text":" ","virtual":"Cror94F1kmbP71ip"},"4":{"text":" ","virtual":"pBOwp0Q0g4iuJCVm"},"5":{"text":" ","virtual":"pBOwp0Q0g4iuJCVm"},"6":{"text":" ","virtual":"pBOwp0Q0g4iuJCVm"},"7":{"text":" ","virtual":"pBOwp0Q0g4iuJCVm"},"8":{"text":" ","virtual":"rQgkcYfLy4x0EP6h"},"9":{"text":" ","virtual":"rQgkcYfLy4x0EP6h"},"10":{"text":" ","virtual":"rQgkcYfLy4x0EP6h"},"11":{"text":" ","virtual":"rQgkcYfLy4x0EP6h"},"12":{"text":" ","virtual":"IWoBtyiRxjkEbkfD"},"13":{"text":" ","virtual":"IWoBtyiRxjkEbkfD"},"14":{"text":" ","virtual":"IWoBtyiRxjkEbkfD"},"15":{"text":" ","virtual":"IWoBtyiRxjkEbkfD"}}},"17":{"cells":{"4":{"text":" "},"5":{"text":" "},"6":{"text":" "},"7":{"text":" "},"8":{"text":" "},"9":{"text":" "},"10":{"text":" "},"11":{"text":" "},"12":{"text":" "},"13":{"text":" "},"14":{"text":" "}}},"18":{"cells":{"4":{"text":" "},"5":{"text":" "},"6":{"text":" "},"7":{"text":" "},"8":{"text":" "},"9":{"text":" "},"10":{"text":" "},"11":{"text":" "},"12":{"text":" "},"13":{"text":" "},"14":{"text":" "}}},"19":{"cells":{"4":{"text":" "},"5":{"text":" "},"6":{"text":" "},"7":{"text":" "},"8":{"text":" "},"9":{"text":" "},"10":{"text":" "},"11":{"text":" "},"12":{"text":" "},"13":{"text":" "},"14":{"text":" "}}},"20":{"cells":{"4":{"text":" "},"5":{"text":" "},"6":{"text":" "},"7":{"text":" "},"8":{"text":" "},"9":{"text":" "},"10":{"text":" "},"11":{"text":" "},"12":{"text":" "},"13":{"text":" "},"14":{"text":" "}}},"21":{"cells":{"4":{"text":" "},"5":{"text":" "},"6":{"text":" "},"7":{"text":" "},"8":{"text":" "},"9":{"text":" "},"10":{"text":" "},"11":{"text":" "},"12":{"text":" "},"13":{"text":" "},"14":{"text":" "}}},"22":{"cells":{"4":{"text":" "},"5":{"text":" "},"6":{"text":" "},"7":{"text":" "},"8":{"text":" "},"9":{"text":" "},"10":{"text":" "},"11":{"text":" "},"12":{"text":" "},"13":{"text":" "},"14":{"text":" "}}},"23":{"cells":{"4":{"text":" "},"5":{"text":" "},"6":{"text":" "},"7":{"text":" "},"8":{"text":" "},"9":{"text":" "},"10":{"text":" "},"11":{"text":" "},"12":{"text":" "},"13":{"text":" "},"14":{"text":" "}}},"24":{"cells":{"1":{"text":" "},"2":{"text":" "},"3":{"text":" "},"4":{"text":" "},"5":{"text":" "},"6":{"text":" "},"7":{"text":" "},"8":{"text":" "},"9":{"text":" "},"10":{"text":" "},"11":{"text":" "},"12":{"text":" "},"13":{"text":" "},"14":{"text":" "}}},"len":98},"dbexps":[],"toolPrintSizeObj":{"printType":"A4","widthPx":794,"heightPx":1047},"dicts":[],"freeze":"A1","dataRectWidth":1546,"displayConfig":{},"background":{"path":"https://static.jeecg.com/designreport/images/bg_1606961893275.png","repeat":"repeat","width":"","height":""},"name":"sheet1","autofilter":{},"styles":[{"font":{"bold":true}},{"font":{"bold":true,"name":"宋体"}},{"font":{"name":"宋体"}},{"font":{"bold":true,"name":"Microsoft YaHei"}},{"font":{"name":"Microsoft YaHei"}},{"font":{"bold":true,"name":"Microsoft YaHei","size":18}},{"font":{"name":"Microsoft YaHei","size":18}},{"font":{"bold":true,"name":"Microsoft YaHei","size":16}},{"font":{"name":"Microsoft YaHei","size":16}},{"font":{"bold":true,"name":"Microsoft YaHei","size":16},"align":"center"},{"font":{"name":"Microsoft YaHei","size":16},"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":"right"},{"align":"right"},{"align":"center"},{"border":{"bottom":["thin","#d8d8d8"],"top":["thin","#d8d8d8"],"left":["thin","#d8d8d8"],"right":["thin","#d8d8d8"]},"align":"right","font":{"size":14}},{"align":"right","font":{"size":14}},{"border":{"bottom":["thin","#d8d8d8"],"top":["thin","#d8d8d8"],"left":["thin","#d8d8d8"],"right":["thin","#d8d8d8"]},"align":"right","font":{"size":12}},{"align":"right","font":{"size":12}},{"align":"center","font":{"size":12}},{"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"]},"align":"center","font":{"size":12}},{"border":{"bottom":["thin","#d8d8d8"],"top":["thin","#d8d8d8"],"left":["thin","#d8d8d8"],"right":["thin","#d8d8d8"]},"font":{"size":12}},{"font":{"size":12}},{"border":{"bottom":["thin","#d8d8d8"],"top":["thin","#d8d8d8"],"left":["thin","#d8d8d8"],"right":["thin","#d8d8d8"]},"align":"right","font":{"size":11}},{"align":"right","font":{"size":11}},{"border":{"bottom":["thin","#d8d8d8"],"top":["thin","#d8d8d8"],"left":["thin","#d8d8d8"],"right":["thin","#d8d8d8"]},"align":"center","font":{"size":11}},{"align":"center","font":{"size":11}},{"border":{"bottom":["thin","#d8d8d8"],"top":["thin","#d8d8d8"],"left":["thin","#d8d8d8"],"right":["thin","#d8d8d8"]},"font":{"size":11}},{"font":{"size":11}},{"border":{"bottom":["thin","#d8d8d8"],"top":["thin","#d8d8d8"],"left":["thin","#d8d8d8"],"right":["thin","#d8d8d8"]},"align":"right","font":{"size":11,"bold":true}},{"align":"right","font":{"size":11,"bold":true}},{"font":{"bold":true,"name":"Microsoft YaHei","size":16},"align":"center","color":"#ffffff"},{"color":"#ffffff"},{"font":{"bold":true,"name":"Microsoft YaHei","size":22},"align":"center","color":"#ffffff"},{"color":"#ffffff","font":{"size":22}},{"font":{"bold":true,"name":"Microsoft YaHei","size":22},"align":"center","color":"#000100"},{"color":"#000100","font":{"size":22}},{"border":{"bottom":["thin","#d8d8d8"],"top":["thin","#d8d8d8"],"left":["thin","#d8d8d8"],"right":["thin","#d8d8d8"]},"align":"right","font":{"size":11,"bold":true},"color":"#ffffff"},{"align":"right","font":{"size":11,"bold":true},"color":"#ffffff"},{"border":{"bottom":["thin","#d8d8d8"],"top":["thin","#d8d8d8"],"left":["thin","#d8d8d8"],"right":["thin","#d8d8d8"]},"align":"center","font":{"size":11},"color":"#ffffff"},{"align":"center","font":{"size":11},"color":"#ffffff"},{"font":{"size":11},"color":"#ffffff"},{},{"border":{"bottom":["thin","#d8d8d8"],"top":["thin","#d8d8d8"],"left":["thin","#d8d8d8"],"right":["thin","#d8d8d8"]},"align":"right","font":{"size":11,"bold":false},"color":"#ffffff"},{"align":"right","font":{"size":11,"bold":false},"color":"#ffffff"},{"border":{"bottom":["thin","#d8d8d8"],"top":["thin","#d8d8d8"],"left":["thin","#d8d8d8"],"right":["thin","#d8d8d8"]},"align":"right","font":{"size":11,"bold":true,"name":"宋体"},"color":"#ffffff"},{"align":"right","font":{"size":11,"bold":true,"name":"宋体"},"color":"#ffffff"},{"border":{"bottom":["thin","#d8d8d8"],"top":["thin","#d8d8d8"],"left":["thin","#d8d8d8"],"right":["thin","#d8d8d8"]},"align":"right","font":{"size":11,"bold":false,"name":"宋体"},"color":"#ffffff"},{"align":"right","font":{"size":11,"bold":false,"name":"宋体"},"color":"#ffffff"},{"align":"center","font":{"size":11},"color":"#ffffff","border":{"right":["thin","#eee"]}},{"align":"right","font":{"size":16,"bold":false,"name":"宋体"},"color":"#ffffff"},{"align":"right","font":{"size":15,"bold":false,"name":"宋体"},"color":"#ffffff"},{"align":"right","font":{"size":14,"bold":false,"name":"宋体"},"color":"#ffffff"},{"align":"center","font":{"size":14},"color":"#ffffff"},{"font":{"size":14},"color":"#ffffff"},{"align":"left","font":{"size":14},"color":"#ffffff"},{"align":"left","font":{"size":14,"bold":false,"name":"宋体"},"color":"#ffffff"},{"align":"right","font":{"size":14,"bold":false,"name":"宋体"},"color":"#ffffff","valign":"top"},{"align":"left","font":{"size":14},"color":"#ffffff","valign":"top"},{"font":{"bold":true,"name":"宋体","size":22},"align":"center","color":"#ffffff"},{"color":"#ffffff","font":{"size":22,"name":"宋体"}},{"align":"left","font":{"size":14,"name":"宋体"},"color":"#ffffff","valign":"top"},{"align":"left","font":{"size":14,"name":"宋体"},"color":"#ffffff"},{"align":"left","font":{"size":14,"name":"宋体"},"color":"#ffff01"},{"align":"left","font":{"size":14,"name":"宋体"},"color":"#ffff01","valign":"top"},{"align":"left","font":{"size":14,"name":"宋体"},"color":"#ffffff","bgcolor":"#ffff01"},{"align":"left","font":{"size":14,"name":"宋体"},"color":"#ffffff","bgcolor":""},{"align":"left","font":{"size":14,"name":"宋体"},"color":"#ffff01","bgcolor":""}],"validations":[],"cols":{"0":{"width":117},"3":{"width":140},"4":{"width":136},"5":{"width":79},"6":{"width":1},"7":{"width":123},"8":{"width":102},"9":{"width":24},"11":{"width":100},"14":{"width":124},"len":50},"merges":["B2:D16","E8:L16","B17:D24","E17:H24","E2:E4","F2:F4","E5:E7","F5:F7","H2:H4","H5:H7","I5:I7","I2:I4","K2:K4","L2:L4","K5:K7","L5:L7","M17:O24","B1:O1"]}', NULL, 'https://static.jeecg.com/designreport/images/QQ截图20201125161646_1606705892603.png', 'admin', '2020-11-25 15:50:43', 'admin', '2021-04-01 03:37:15', 0, NULL, NULL, 1, 712, NULL, NULL, NULL, NULL, 0, NULL); -INSERT INTO "public"."jimu_report" VALUES ('1334378897302753280', '20201203140834', '区域销售表', NULL, NULL, '984272091947253760', '{"loopBlockList":[],"area":false,"printElWidth":718,"excel_config_id":"1334378897302753280","printElHeight":1047,"rows":{"0":{"cells":{"1":{"text":"区域销售表","merge":[0,22],"style":10},"2":{"style":10},"3":{"style":10},"4":{"style":10},"5":{"style":10},"6":{"style":10},"7":{"style":10},"8":{"style":10},"9":{"style":10},"10":{"style":10},"11":{"style":10},"12":{"style":10},"13":{"style":10},"14":{"style":10},"15":{"style":10},"16":{"style":10},"17":{"style":10},"18":{"style":10},"19":{"style":10},"20":{"style":10},"21":{"style":10},"22":{"style":10},"23":{"style":10}},"height":72},"1":{"cells":{"0":{"style":64},"1":{"text":"区域","merge":[1,0],"style":65},"2":{"text":"省份","merge":[1,0],"style":65},"3":{"text":"1月","merge":[0,2],"style":65},"4":{"style":66,"text":" "},"5":{"style":66,"text":" "},"6":{"text":"2月","merge":[0,2],"style":65},"7":{"style":66,"text":" "},"8":{"style":66,"text":" "},"9":{"text":"3月","merge":[0,2],"style":65},"10":{"style":66,"text":" "},"11":{"style":66,"text":" "},"12":{"text":"4月","merge":[0,2],"style":65},"13":{"style":66,"text":" "},"14":{"style":66,"text":" "},"15":{"text":"5月","merge":[0,2],"style":65},"16":{"style":66,"text":" "},"17":{"style":66,"text":" "},"18":{"text":"6月","merge":[0,2],"style":65},"19":{"style":66,"text":" "},"20":{"style":66,"text":" "},"21":{"text":"总合计","merge":[0,2],"style":65},"22":{"style":66,"text":" "},"23":{"style":66,"text":" "},"24":{"style":64},"25":{"style":64}},"height":22},"2":{"cells":{"0":{"style":64},"1":{"style":66,"text":" "},"2":{"style":65,"text":" "},"3":{"text":"销售额","style":65},"4":{"text":"搭赠","style":65},"5":{"text":"比例","style":65},"6":{"text":"销售额","style":65},"7":{"text":"搭赠","style":65},"8":{"text":"比例","style":65},"9":{"text":"销售额","style":65},"10":{"text":"搭赠","style":65},"11":{"text":"比例","style":65},"12":{"text":"销售额","style":65},"13":{"text":"搭赠","style":65},"14":{"text":"比例","style":65},"15":{"text":"销售额","style":65},"16":{"text":"搭赠","style":65},"17":{"text":"比例","style":65},"18":{"text":"销售额","style":65},"19":{"text":"搭赠","style":65},"20":{"text":"比例","style":65},"21":{"text":"销售额","style":65},"22":{"text":"搭赠","style":65},"23":{"text":"比例","style":65},"24":{"style":64},"25":{"style":64}},"height":24},"3":{"cells":{"0":{"style":67},"1":{"text":"#{quyuxiaoshou.group(region)}","style":52,"aggregate":"group"},"2":{"text":"#{quyuxiaoshou.province}","style":53},"3":{"text":"#{quyuxiaoshou.sales_1}","style":17},"4":{"text":"#{quyuxiaoshou.gift_1}","style":17},"5":{"text":"#{quyuxiaoshou.proportion_1}","style":17},"6":{"text":"#{quyuxiaoshou.sales_2}","style":17},"7":{"text":"#{quyuxiaoshou.gift_2}","style":17},"8":{"text":"#{quyuxiaoshou.proportion_2}","style":17},"9":{"text":"#{quyuxiaoshou.sales_3}","style":17},"10":{"text":"#{quyuxiaoshou.gift_3}","style":17},"11":{"text":"#{quyuxiaoshou.proportion_3}","style":17},"12":{"text":"#{quyuxiaoshou.sales_4}","style":17},"13":{"text":"#{quyuxiaoshou.gift_4}","style":17},"14":{"text":"#{quyuxiaoshou.proportion_4}","style":17},"15":{"text":"#{quyuxiaoshou.sales_5}","style":17},"16":{"text":"#{quyuxiaoshou.gift_5}","style":17},"17":{"text":"#{quyuxiaoshou.proportion_5}","style":15},"18":{"text":"#{quyuxiaoshou.sales_6}","style":15},"19":{"text":"#{quyuxiaoshou.gift_6}","style":15},"20":{"text":"#{quyuxiaoshou.proportion_6}","style":15},"21":{"text":"#{quyuxiaoshou.sales_z}","style":15},"22":{"text":"#{quyuxiaoshou.gift_z}","style":15},"23":{"text":"#{quyuxiaoshou.proportion_z}","style":15},"24":{"style":67},"25":{"style":67}},"isDrag":true,"height":56},"4":{"cells":{"0":{"style":64},"1":{"style":39,"text":"总计","merge":[0,1]},"3":{"style":68,"text":"=SUM(D4)"},"4":{"style":69,"text":"=SUM(E4)"},"5":{"style":70,"text":"=SUM(F4)"},"6":{"style":69,"text":"=SUM(G4)"},"7":{"style":69,"text":"=SUM(H4)"},"8":{"style":70,"text":"=SUM(I4)"},"9":{"style":69,"text":"=SUM(J4)"},"10":{"style":69,"text":"=SUM(K4)"},"11":{"style":70,"text":"=SUM(L4)"},"12":{"style":69,"text":"=SUM(M4)"},"13":{"style":69,"text":"=SUM(N4)"},"14":{"style":70,"text":"=SUM(O4)"},"15":{"style":69,"text":"=SUM(P4)"},"16":{"style":69,"text":"=SUM(Q4)"},"17":{"style":70,"text":"=SUM(R4)"},"18":{"style":69,"text":"=SUM(S4)"},"19":{"style":69,"text":"=SUM(T4)"},"20":{"style":70,"text":"=SUM(U4)"},"21":{"style":69,"text":"=SUM(V4)"},"22":{"style":69,"text":"=SUM(W4)"},"23":{"style":69,"text":"=SUM(X4)"},"24":{"style":64},"25":{"style":64}},"height":38},"len":100},"dbexps":[],"toolPrintSizeObj":{"printType":"A4","widthPx":718,"heightPx":1047},"dicts":[],"groupField":"quyuxiaoshou.region","freeze":"A1","dataRectWidth":1554,"background":false,"name":"sheet1","autofilter":{},"styles":[{"align":"center"},{"align":"center","bgcolor":""},{"align":"center","bgcolor":"#02a274"},{"align":"center","bgcolor":"#02a274","color":"#ffffff"},{"bgcolor":"#02a274"},{"align":"center","bgcolor":"#02a274","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":"#02a274","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","font":{"size":16}},{"align":"center","font":{"size":16,"bold":true}},{"border":{"bottom":["thin","#bfbfbf"],"top":["thin","#bfbfbf"],"left":["thin","#bfbfbf"],"right":["thin","#bfbfbf"]},"font":{"size":8}},{"border":{"bottom":["thin","#bfbfbf"],"top":["thin","#bfbfbf"],"left":["thin","#bfbfbf"],"right":["thin","#bfbfbf"]},"font":{"size":8},"align":"center"},{"border":{"bottom":["thin","#bfbfbf"],"top":["thin","#bfbfbf"],"left":["thin","#bfbfbf"],"right":["thin","#bfbfbf"]},"font":{"size":8,"name":"宋体"},"align":"center"},{"border":{"bottom":["thin","#bfbfbf"],"top":["thin","#bfbfbf"],"left":["thin","#bfbfbf"],"right":["thin","#bfbfbf"]},"font":{"size":8,"name":"隶书"},"align":"center"},{"border":{"bottom":["thin","#bfbfbf"],"top":["thin","#bfbfbf"],"left":["thin","#bfbfbf"],"right":["thin","#bfbfbf"]},"font":{"size":8,"name":"Microsoft YaHei"},"align":"center"},{"border":{"bottom":["thin","#bfbfbf"],"top":["thin","#bfbfbf"],"left":["thin","#bfbfbf"],"right":["thin","#bfbfbf"]},"font":{"size":8,"name":"Microsoft YaHei"},"align":"center","color":"#7f7f7f"},{"border":{"bottom":["thin","#bfbfbf"],"top":["thin","#bfbfbf"],"left":["thin","#bfbfbf"],"right":["thin","#bfbfbf"]},"font":{"size":8,"name":"Microsoft YaHei"},"align":"center","color":"#262626"},{"align":"center","bgcolor":"#02a274","color":"#ffffff","border":{"bottom":["thin","#bfbfbf"],"top":["thin","#bfbfbf"],"left":["thin","#bfbfbf"],"right":["thin","#bfbfbf"]},"font":{"bold":true}},{"align":"center","bgcolor":"#02a274","color":"#ffffff","font":{"bold":true}},{"border":{"bottom":["thin","#bfbfbf"],"top":["thin","#bfbfbf"],"left":["thin","#bfbfbf"],"right":["thin","#bfbfbf"]},"font":{"size":8,"name":"Microsoft YaHei"},"align":"center","color":"#262626","bgcolor":"#"},{"border":{"bottom":["thin","#bfbfbf"],"top":["thin","#bfbfbf"],"left":["thin","#bfbfbf"],"right":["thin","#bfbfbf"]},"font":{"size":8,"name":"Microsoft YaHei"},"align":"center","color":"#262626","bgcolor":"#f1f9f6"},{"border":{"bottom":["thin","#bfbfbf"],"top":["thin","#bfbfbf"],"left":["thin","#bfbfbf"],"right":["thin","#bfbfbf"]},"font":{"size":8,"name":"Microsoft YaHei"},"align":"center","color":"#262626","bgcolor":"#ddefe8"},{"align":"center","bgcolor":"#02a274","color":"#ffffff","border":{"bottom":["thin","#bfbfbf"],"top":["thin","#bfbfbf"],"left":["thin","#bfbfbf"],"right":["thin","#bfbfbf"]},"font":{"bold":true,"size":9}},{"align":"center","bgcolor":"#02a274","color":"#ffffff","font":{"bold":true,"size":9}},{"border":{"bottom":["thin","#bfbfbf"],"top":["thin","#bfbfbf"],"left":["thin","#bfbfbf"],"right":["thin","#bfbfbf"]},"font":{"size":8,"name":"华文中宋"},"align":"center","color":"#262626","bgcolor":"#f1f9f6"},{"border":{"bottom":["thin","#bfbfbf"],"top":["thin","#bfbfbf"],"left":["thin","#bfbfbf"],"right":["thin","#bfbfbf"]},"font":{"size":8,"name":"Arial"},"align":"center","color":"#262626","bgcolor":"#f1f9f6"},{"border":{"bottom":["thin","#bfbfbf"],"top":["thin","#bfbfbf"],"left":["thin","#bfbfbf"],"right":["thin","#bfbfbf"]},"font":{"size":10}},{"border":{"bottom":["thin","#bfbfbf"],"top":["thin","#bfbfbf"],"left":["thin","#bfbfbf"],"right":["thin","#bfbfbf"]},"font":{"size":8},"bgcolor":"#"},{"border":{"bottom":["thin","#bfbfbf"],"top":["thin","#bfbfbf"],"left":["thin","#bfbfbf"],"right":["thin","#bfbfbf"]},"bgcolor":"#"},{"border":{"bottom":["thin","#bfbfbf"],"top":["thin","#bfbfbf"],"left":["thin","#bfbfbf"],"right":["thin","#bfbfbf"]},"font":{"size":8,"name":"Microsoft YaHei"},"align":"center","color":"#262626","bgcolor":"#aedac8"},{"border":{"bottom":["thin","#bfbfbf"],"top":["thin","#bfbfbf"],"left":["thin","#bfbfbf"],"right":["thin","#bfbfbf"]},"font":{"size":8},"bgcolor":"#aedac8"},{"border":{"bottom":["thin","#bfbfbf"],"top":["thin","#bfbfbf"],"left":["thin","#bfbfbf"],"right":["thin","#bfbfbf"]},"bgcolor":"#aedac8"},{"border":{"bottom":["thin","#bfbfbf"],"top":["thin","#bfbfbf"],"left":["thin","#bfbfbf"],"right":["thin","#bfbfbf"]},"font":{"size":8},"bgcolor":"#aedac8","align":"center"},{"border":{"bottom":["thin","#bfbfbf"],"top":["thin","#bfbfbf"],"left":["thin","#bfbfbf"],"right":["thin","#bfbfbf"]},"font":{"size":8},"bgcolor":"#aedac8","align":"center","format":"number"},{"border":{"bottom":["thin","#bfbfbf"],"top":["thin","#bfbfbf"],"left":["thin","#bfbfbf"],"right":["thin","#bfbfbf"]},"font":{"size":8},"bgcolor":"#aedac8","align":"center","format":"normal"},{"border":{"bottom":["thin","#bfbfbf"],"top":["thin","#bfbfbf"],"left":["thin","#bfbfbf"],"right":["thin","#bfbfbf"]},"bgcolor":"#aedac8","align":"center"},{"align":"center","bgcolor":"#02a274","color":"#ffffff","border":{"bottom":["thin","#bfbfbf"],"top":["thin","#bfbfbf"],"left":["thin","#bfbfbf"],"right":["thin","#bfbfbf"]},"font":{"bold":false,"size":9}},{"align":"center","bgcolor":"#02a274","color":"#ffffff","font":{"bold":false,"size":9}},{"border":{"bottom":["thin","#bfbfbf"],"top":["thin","#bfbfbf"],"left":["thin","#bfbfbf"],"right":["thin","#bfbfbf"]},"font":{"size":10,"name":"Microsoft YaHei"},"align":"center","color":"#262626","bgcolor":"#aedac8"},{"font":{"size":10}},{"border":{"bottom":["thin","#bfbfbf"],"top":["thin","#bfbfbf"],"left":["thin","#bfbfbf"],"right":["thin","#bfbfbf"]},"font":{"size":10},"bgcolor":"#aedac8","align":"center","format":"normal"},{"border":{"bottom":["thin","#bfbfbf"],"top":["thin","#bfbfbf"],"left":["thin","#bfbfbf"],"right":["thin","#bfbfbf"]},"font":{"size":10},"bgcolor":"#aedac8","align":"center"},{"border":{"bottom":["thin","#bfbfbf"],"top":["thin","#bfbfbf"],"left":["thin","#bfbfbf"],"right":["thin","#bfbfbf"]},"bgcolor":"#aedac8","font":{"size":10}},{"font":{"size":10},"bgcolor":"#aedac8"},{"align":"center","bgcolor":"#02a274","color":"#ffffff","border":{"bottom":["thin","#bfbfbf"],"top":["thin","#bfbfbf"],"left":["thin","#bfbfbf"],"right":["thin","#bfbfbf"]},"font":{"bold":false,"size":10}},{"align":"center","bgcolor":"#02a274","color":"#ffffff","font":{"bold":false,"size":10}},{"border":{"bottom":["thin","#bfbfbf"],"top":["thin","#bfbfbf"],"left":["thin","#bfbfbf"],"right":["thin","#bfbfbf"]},"font":{"size":10,"name":"Microsoft YaHei"},"align":"center","color":"#262626","bgcolor":"#f1f9f6"},{"border":{"bottom":["thin","#bfbfbf"],"top":["thin","#bfbfbf"],"left":["thin","#bfbfbf"],"right":["thin","#bfbfbf"]},"font":{"size":10,"name":"Microsoft YaHei"},"align":"center","color":"#262626","bgcolor":"#ddefe8"},{"border":{"bottom":["thin","#bfbfbf"],"top":["thin","#bfbfbf"],"left":["thin","#bfbfbf"],"right":["thin","#bfbfbf"]},"font":{"size":10,"name":"Microsoft YaHei"},"align":"center","color":"#262626"},{"border":{"bottom":["thin","#bfbfbf"],"top":["thin","#bfbfbf"],"left":["thin","#bfbfbf"],"right":["thin","#bfbfbf"]},"font":{"size":10,"name":"Microsoft YaHei"},"align":"center"},{"font":{"size":8}},{"border":{"bottom":["thin","#bfbfbf"],"top":["thin","#bfbfbf"],"left":["thin","#bfbfbf"],"right":["thin","#bfbfbf"]},"font":{"size":9,"name":"Microsoft YaHei"},"align":"center","color":"#262626","bgcolor":"#f1f9f6"},{"border":{"bottom":["thin","#bfbfbf"],"top":["thin","#bfbfbf"],"left":["thin","#bfbfbf"],"right":["thin","#bfbfbf"]},"font":{"size":9,"name":"Microsoft YaHei"},"align":"center","color":"#262626","bgcolor":"#ddefe8"},{"align":"center","bgcolor":"#02a274","color":"#ffffff","border":{"bottom":["thin","#bfbfbf"],"top":["thin","#bfbfbf"],"left":["thin","#bfbfbf"],"right":["thin","#bfbfbf"]},"font":{"bold":false,"size":10,"name":"宋体"}},{"align":"center","bgcolor":"#02a274","color":"#ffffff","font":{"bold":false,"size":10,"name":"宋体"}},{"border":{"bottom":["thin","#bfbfbf"],"top":["thin","#bfbfbf"],"left":["thin","#bfbfbf"],"right":["thin","#bfbfbf"]},"font":{"size":9,"name":"宋体"},"align":"center","color":"#262626","bgcolor":"#f1f9f6"},{"border":{"bottom":["thin","#bfbfbf"],"top":["thin","#bfbfbf"],"left":["thin","#bfbfbf"],"right":["thin","#bfbfbf"]},"font":{"size":9,"name":"宋体"},"align":"center","color":"#262626","bgcolor":"#ddefe8"},{"border":{"bottom":["thin","#bfbfbf"],"top":["thin","#bfbfbf"],"left":["thin","#bfbfbf"],"right":["thin","#bfbfbf"]},"font":{"size":8,"name":"宋体"},"align":"center","color":"#262626"},{"border":{"bottom":["thin","#bfbfbf"],"top":["thin","#bfbfbf"],"left":["thin","#bfbfbf"],"right":["thin","#bfbfbf"]},"font":{"size":10,"name":"宋体"},"align":"center","color":"#262626","bgcolor":"#aedac8"},{"font":{"name":"宋体"}},{"border":{"bottom":["thin","#bfbfbf"],"top":["thin","#bfbfbf"],"left":["thin","#bfbfbf"],"right":["thin","#bfbfbf"]},"font":{"size":10,"name":"宋体"},"bgcolor":"#aedac8","align":"center","format":"normal"},{"border":{"bottom":["thin","#bfbfbf"],"top":["thin","#bfbfbf"],"left":["thin","#bfbfbf"],"right":["thin","#bfbfbf"]},"font":{"size":10,"name":"宋体"},"bgcolor":"#aedac8","align":"center"},{"border":{"bottom":["thin","#bfbfbf"],"top":["thin","#bfbfbf"],"left":["thin","#bfbfbf"],"right":["thin","#bfbfbf"]},"bgcolor":"#aedac8","font":{"size":10,"name":"宋体"}},{"font":{"name":"Microsoft YaHei"}},{"align":"center","bgcolor":"#02a274","color":"#ffffff","border":{"bottom":["thin","#bfbfbf"],"top":["thin","#bfbfbf"],"left":["thin","#bfbfbf"],"right":["thin","#bfbfbf"]},"font":{"bold":false,"size":10,"name":"Microsoft YaHei"}},{"align":"center","bgcolor":"#02a274","color":"#ffffff","font":{"bold":false,"size":10,"name":"Microsoft YaHei"}},{"font":{"size":8,"name":"Microsoft YaHei"}},{"border":{"bottom":["thin","#bfbfbf"],"top":["thin","#bfbfbf"],"left":["thin","#bfbfbf"],"right":["thin","#bfbfbf"]},"font":{"size":10,"name":"Microsoft YaHei"},"bgcolor":"#aedac8","align":"center","format":"normal"},{"border":{"bottom":["thin","#bfbfbf"],"top":["thin","#bfbfbf"],"left":["thin","#bfbfbf"],"right":["thin","#bfbfbf"]},"font":{"size":10,"name":"Microsoft YaHei"},"bgcolor":"#aedac8","align":"center"},{"border":{"bottom":["thin","#bfbfbf"],"top":["thin","#bfbfbf"],"left":["thin","#bfbfbf"],"right":["thin","#bfbfbf"]},"bgcolor":"#aedac8","font":{"size":10,"name":"Microsoft YaHei"}}],"validations":[],"isGroup":true,"cols":{"0":{"width":20},"1":{"width":84},"2":{"width":81},"3":{"width":75},"4":{"width":63},"5":{"width":59},"6":{"width":70},"7":{"width":57},"8":{"width":60},"9":{"width":75},"10":{"width":66},"11":{"width":64},"12":{"width":70},"13":{"width":61},"14":{"width":61},"15":{"width":70},"16":{"width":58},"17":{"width":63},"18":{"width":60},"19":{"width":63},"20":{"width":59},"21":{"width":73},"22":{"width":69},"23":{"width":73},"len":50},"merges":["B2:B3","C2:C3","D2:F2","G2:I2","J2:L2","M2:O2","P2:R2","S2:U2","V2:X2","B1:X1","B5:C5"]}', NULL, 'https://static.jeecg.com/designreport/images/quyu_1607069899537.png', 'admin', '2020-12-03 14:08:34', 'admin', '2021-02-03 13:59:12', 0, NULL, NULL, 1, 450, NULL, NULL, NULL, NULL, 0, NULL); -INSERT INTO "public"."jimu_report" VALUES ('1334420681185566722', '202012031408346166', '学校经费一览表', NULL, NULL, '984272091947253760', '{"loopBlockList":[],"area":{"sri":7,"sci":1,"eri":7,"eci":2,"width":216,"height":25},"printElWidth":718,"excel_config_id":"1334420681185566722","printElHeight":1047,"rows":{"0":{"cells":{"1":{"text":"学校经费一览表","merge":[0,22],"style":10},"2":{"style":10},"3":{"style":10},"4":{"style":10},"5":{"style":10},"6":{"style":10},"7":{"style":10},"8":{"style":10},"9":{"style":10},"10":{"style":10},"11":{"style":10},"12":{"style":10},"13":{"style":10},"14":{"style":10},"15":{"style":10},"16":{"style":10},"17":{"style":10},"18":{"style":10},"19":{"style":10},"20":{"style":10},"21":{"style":10},"22":{"style":10},"23":{"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},"4":{"style":40,"text":" "},"5":{"style":40,"text":" "},"6":{"style":40,"text":" "},"7":{"style":40,"text":" "},"8":{"style":40,"text":" "},"9":{"style":40,"text":" "},"10":{"style":40,"text":" "},"11":{"style":40,"text":" "},"12":{"text":"其他投入","merge":[0,7],"style":84},"13":{"text":" ","style":40},"14":{"text":" ","style":40},"15":{"text":" ","style":40},"16":{"text":" ","style":40},"17":{"text":" ","style":40},"18":{"text":" ","style":40},"19":{"text":" ","style":40},"20":{"style":84,"text":"补充资料","merge":[0,4]},"21":{"text":" ","style":40},"22":{"text":" ","style":40},"23":{"text":" ","style":40},"24":{"text":" ","style":40}},"height":28},"2":{"cells":{"1":{"text":" ","style":40},"2":{"style":222,"text":" "},"3":{"text":"总计","style":117,"merge":[3,0]},"4":{"text":"教育事业费","style":117,"merge":[0,6]},"5":{"style":118,"text":" "},"6":{"style":118,"text":" "},"7":{"style":118,"text":" "},"8":{"style":118,"text":" "},"9":{"style":118,"text":" "},"10":{"style":118,"text":" "},"11":{"text":"基础拨款","style":117,"merge":[3,0]},"12":{"text":"村投入","style":117,"merge":[0,4]},"13":{"text":" ","style":223},"14":{"text":" ","style":223},"15":{"text":" ","style":223},"16":{"text":" ","style":223},"17":{"text":"社会捐款","style":117,"merge":[0,2]},"18":{"text":" ","style":223},"19":{"text":" ","style":223},"20":{"style":126,"merge":[0,4],"text":"信息化建设"},"21":{"style":122,"text":" "},"22":{"style":122,"text":" "},"23":{"style":122,"text":" "},"24":{"style":122,"text":" "}},"height":24},"3":{"cells":{"1":{"text":" ","style":40},"2":{"style":222,"text":" "},"3":{"style":118,"text":" "},"4":{"merge":[0,1],"text":"合计","style":121},"5":{"style":122,"text":" "},"6":{"merge":[2,0],"text":"人员经费","style":121},"7":{"merge":[2,0],"text":"日常公用费用","style":123},"8":{"merge":[0,2],"text":"项目经费","style":121},"9":{"style":122,"text":" "},"10":{"style":122,"text":" "},"11":{"style":118,"text":" "},"12":{"merge":[2,0],"text":"合计","style":121},"13":{"merge":[0,3],"text":"其中","style":121},"14":{"text":" ","style":223},"15":{"text":" ","style":223},"16":{"text":" ","style":223},"17":{"merge":[2,0],"text":"合计","style":121},"18":{"merge":[0,1],"text":"其中","style":121},"19":{"style":122,"text":" "},"20":{"merge":[2,0],"text":"本年投入金额(万元)","style":230},"21":{"merge":[0,1],"text":"电脑数(台数)","style":121},"22":{"style":122,"text":" "},"23":{"merge":[0,1],"text":"校园网数(个)","style":121},"24":{"style":122,"text":" "}}},"4":{"cells":{"1":{"text":" ","style":40},"2":{"style":222,"text":" "},"3":{"style":118,"text":" "},"4":{"merge":[1,0],"text":"金额","style":126},"5":{"merge":[1,0],"text":"比上年增长(%)","style":127},"6":{"style":122,"text":" "},"7":{"style":123,"text":" "},"8":{"merge":[1,0],"text":"合计","style":121},"9":{"merge":[0,1],"text":"其中","style":121},"10":{"style":122,"text":" "},"11":{"style":118,"text":" "},"12":{"style":121,"text":" "},"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},"17":{"style":121,"text":" "},"18":{"merge":[1,0],"text":"项目经费","style":131},"19":{"merge":[1,0],"text":"基础投入","style":131},"20":{"style":231,"text":" "},"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":{"1":{"text":" ","style":40},"2":{"style":222,"text":" "},"3":{"style":118,"text":" "},"4":{"style":126,"text":" "},"5":{"style":129,"text":" "},"6":{"style":121,"text":" "},"7":{"style":130,"text":" "},"8":{"style":121,"text":" "},"9":{"text":"标准化建设","style":131},"10":{"text":"信息化建设","style":121},"11":{"style":118,"text":" "},"12":{"style":121,"text":" "},"13":{"text":" ","style":223},"14":{"style":131,"text":" "},"15":{"text":" ","style":223},"16":{"style":131,"text":" "},"17":{"style":121,"text":" "},"18":{"text":" ","style":223},"19":{"style":131,"text":" "},"20":{"style":231,"text":" "},"21":{"style":121,"text":" "},"22":{"style":122,"text":" "},"23":{"style":131,"text":" "},"24":{"style":122,"text":" "}}},"6":{"cells":{"0":{"style":236},"1":{"text":"#{laiyuan.group(class)}","style":233,"aggregate":"group"},"2":{"text":"#{laiyuan.school}","style":234},"3":{"style":15,"text":"=SUM(E7,I7)"},"4":{"style":15,"text":"=SUM(G7,H7)"},"5":{"text":"#{laiyuan.lv}","style":12},"6":{"text":"#{laiyuan.renyuan_jy}","style":12},"7":{"text":"#{laiyuan.richang_jy}","style":12},"8":{"style":12,"text":"=SUM(J7,K7)"},"9":{"text":"#{laiyuan.biaozhun_jy}","style":12},"10":{"text":"#{laiyuan.xinxi_jy}","style":12},"11":{"text":"#{laiyuan.jichubokuan_jy}","style":12},"12":{"style":12,"text":"=SUM(N7,O7)"},"13":{"text":"#{laiyuan.renyuan_ct}","style":12},"14":{"text":"#{laiyuan.richang_ct}","style":12},"15":{"text":"#{laiyuan.xiangmu_ct}","style":12},"16":{"text":"#{laiyuan.jichubokuan_ct}","style":12},"17":{"style":12,"text":"=SUM(S7,T7)"},"18":{"text":"#{laiyuan.xiangmu_sh}","style":12},"19":{"text":"#{laiyuan.jichubokuan_sh}","style":12},"20":{"style":12,"text":"=SUM(V7,X7)"},"21":{"style":12,"text":"#{laiyuan.diannao}"},"22":{"text":"#{laiyuan.diannao}","style":12},"23":{"style":12,"text":"#{laiyuan.xiaoyuanwang}"},"24":{"text":"#{laiyuan.xiaoyuanwang}","style":12},"25":{"style":236}},"isDrag":true},"7":{"cells":{"1":{"text":"总计","style":226,"rendered":"","merge":[0,1]},"3":{"style":228,"text":"=SUM(D7)"},"4":{"style":228,"text":"=SUM(E7)"},"5":{"style":228,"text":""},"6":{"style":228,"text":"=SUM(G7)"},"7":{"style":228,"text":"=SUM(H7)"},"8":{"style":228,"text":"=SUM(I7)"},"9":{"style":228,"text":"=SUM(J7)"},"10":{"style":228,"text":"=SUM(K7)"},"11":{"style":228,"text":"=SUM(L7)"},"12":{"style":228,"text":"=SUM(M7)"},"13":{"style":229,"text":"=SUM(N7)"},"14":{"style":229,"text":"=SUM(O7)"},"15":{"style":229,"text":"=SUM(P7)"},"16":{"style":229,"text":"=SUM(Q7)"},"17":{"style":229,"text":"=SUM(R7)"},"18":{"style":229,"text":"=SUM(S7)"},"19":{"style":229,"text":"=SUM(T7)"},"20":{"style":229,"text":"=SUM(U7)"},"21":{"style":229,"text":"=SUM(V8)"},"22":{"style":229,"text":"=SUM(W7)"},"23":{"style":232,"text":"=SUM(X7)"},"24":{"style":229,"text":"=SUM(Y7)"}}},"9":{"cells":{"4":{"lineStart":"leftbottom","text":""}}},"len":100},"dbexps":[],"toolPrintSizeObj":{"printType":"A4","widthPx":718,"heightPx":1047},"dicts":[],"groupField":"laiyuan.class","freeze":"A1","dataRectWidth":1738,"background":false,"name":"sheet1","autofilter":{},"styles":[{"align":"center"},{"align":"center","bgcolor":""},{"align":"center","bgcolor":"#02a274"},{"align":"center","bgcolor":"#02a274","color":"#ffffff"},{"bgcolor":"#02a274"},{"align":"center","bgcolor":"#02a274","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":"#02a274","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","font":{"size":16}},{"align":"center","font":{"size":16,"bold":true}},{"border":{"bottom":["thin","#bfbfbf"],"top":["thin","#bfbfbf"],"left":["thin","#bfbfbf"],"right":["thin","#bfbfbf"]},"font":{"size":8}},{"border":{"bottom":["thin","#bfbfbf"],"top":["thin","#bfbfbf"],"left":["thin","#bfbfbf"],"right":["thin","#bfbfbf"]},"font":{"size":8},"align":"center"},{"border":{"bottom":["thin","#bfbfbf"],"top":["thin","#bfbfbf"],"left":["thin","#bfbfbf"],"right":["thin","#bfbfbf"]},"font":{"size":8,"name":"宋体"},"align":"center"},{"border":{"bottom":["thin","#bfbfbf"],"top":["thin","#bfbfbf"],"left":["thin","#bfbfbf"],"right":["thin","#bfbfbf"]},"font":{"size":8,"name":"隶书"},"align":"center"},{"border":{"bottom":["thin","#bfbfbf"],"top":["thin","#bfbfbf"],"left":["thin","#bfbfbf"],"right":["thin","#bfbfbf"]},"font":{"size":8,"name":"Microsoft YaHei"},"align":"center"},{"border":{"bottom":["thin","#bfbfbf"],"top":["thin","#bfbfbf"],"left":["thin","#bfbfbf"],"right":["thin","#bfbfbf"]},"font":{"size":8,"name":"Microsoft YaHei"},"align":"center","color":"#7f7f7f"},{"border":{"bottom":["thin","#bfbfbf"],"top":["thin","#bfbfbf"],"left":["thin","#bfbfbf"],"right":["thin","#bfbfbf"]},"font":{"size":8,"name":"Microsoft YaHei"},"align":"center","color":"#262626"},{"align":"center","bgcolor":"#02a274","color":"#ffffff","border":{"bottom":["thin","#bfbfbf"],"top":["thin","#bfbfbf"],"left":["thin","#bfbfbf"],"right":["thin","#bfbfbf"]},"font":{"bold":true}},{"align":"center","bgcolor":"#02a274","color":"#ffffff","font":{"bold":true}},{"border":{"bottom":["thin","#bfbfbf"],"top":["thin","#bfbfbf"],"left":["thin","#bfbfbf"],"right":["thin","#bfbfbf"]},"font":{"size":8,"name":"Microsoft YaHei"},"align":"center","color":"#262626","bgcolor":"#"},{"border":{"bottom":["thin","#bfbfbf"],"top":["thin","#bfbfbf"],"left":["thin","#bfbfbf"],"right":["thin","#bfbfbf"]},"font":{"size":8,"name":"Microsoft YaHei"},"align":"center","color":"#262626","bgcolor":"#f1f9f6"},{"border":{"bottom":["thin","#bfbfbf"],"top":["thin","#bfbfbf"],"left":["thin","#bfbfbf"],"right":["thin","#bfbfbf"]},"font":{"size":8,"name":"Microsoft YaHei"},"align":"center","color":"#262626","bgcolor":"#ddefe8"},{"align":"center","bgcolor":"#02a274","color":"#ffffff","border":{"bottom":["thin","#bfbfbf"],"top":["thin","#bfbfbf"],"left":["thin","#bfbfbf"],"right":["thin","#bfbfbf"]},"font":{"bold":true,"size":9}},{"align":"center","bgcolor":"#02a274","color":"#ffffff","font":{"bold":true,"size":9}},{"border":{"bottom":["thin","#bfbfbf"],"top":["thin","#bfbfbf"],"left":["thin","#bfbfbf"],"right":["thin","#bfbfbf"]},"font":{"size":8,"name":"华文中宋"},"align":"center","color":"#262626","bgcolor":"#f1f9f6"},{"border":{"bottom":["thin","#bfbfbf"],"top":["thin","#bfbfbf"],"left":["thin","#bfbfbf"],"right":["thin","#bfbfbf"]},"font":{"size":8,"name":"Arial"},"align":"center","color":"#262626","bgcolor":"#f1f9f6"},{"border":{"bottom":["thin","#bfbfbf"],"top":["thin","#bfbfbf"],"left":["thin","#bfbfbf"],"right":["thin","#bfbfbf"]},"font":{"size":10}},{"border":{"bottom":["thin","#bfbfbf"],"top":["thin","#bfbfbf"],"left":["thin","#bfbfbf"],"right":["thin","#bfbfbf"]},"font":{"size":8},"bgcolor":"#"},{"border":{"bottom":["thin","#bfbfbf"],"top":["thin","#bfbfbf"],"left":["thin","#bfbfbf"],"right":["thin","#bfbfbf"]},"bgcolor":"#"},{"border":{"bottom":["thin","#bfbfbf"],"top":["thin","#bfbfbf"],"left":["thin","#bfbfbf"],"right":["thin","#bfbfbf"]},"font":{"size":8,"name":"Microsoft YaHei"},"align":"center","color":"#262626","bgcolor":"#aedac8"},{"border":{"bottom":["thin","#bfbfbf"],"top":["thin","#bfbfbf"],"left":["thin","#bfbfbf"],"right":["thin","#bfbfbf"]},"font":{"size":8},"bgcolor":"#aedac8"},{"border":{"bottom":["thin","#bfbfbf"],"top":["thin","#bfbfbf"],"left":["thin","#bfbfbf"],"right":["thin","#bfbfbf"]},"bgcolor":"#aedac8"},{"border":{"bottom":["thin","#bfbfbf"],"top":["thin","#bfbfbf"],"left":["thin","#bfbfbf"],"right":["thin","#bfbfbf"]},"font":{"size":8},"bgcolor":"#aedac8","align":"center"},{"border":{"bottom":["thin","#bfbfbf"],"top":["thin","#bfbfbf"],"left":["thin","#bfbfbf"],"right":["thin","#bfbfbf"]},"font":{"size":8},"bgcolor":"#aedac8","align":"center","format":"number"},{"border":{"bottom":["thin","#bfbfbf"],"top":["thin","#bfbfbf"],"left":["thin","#bfbfbf"],"right":["thin","#bfbfbf"]},"font":{"size":8},"bgcolor":"#aedac8","align":"center","format":"normal"},{"border":{"bottom":["thin","#bfbfbf"],"top":["thin","#bfbfbf"],"left":["thin","#bfbfbf"],"right":["thin","#bfbfbf"]},"bgcolor":"#aedac8","align":"center"},{"align":"center","bgcolor":"#02a274","color":"#ffffff","border":{"bottom":["thin","#bfbfbf"],"top":["thin","#bfbfbf"],"left":["thin","#bfbfbf"],"right":["thin","#bfbfbf"]},"font":{"bold":false,"size":9}},{"align":"center","bgcolor":"#02a274","color":"#ffffff","font":{"bold":false,"size":9}},{"border":{"bottom":["thin","#bfbfbf"],"top":["thin","#bfbfbf"],"left":["thin","#bfbfbf"],"right":["thin","#bfbfbf"]},"font":{"size":10,"name":"Microsoft YaHei"},"align":"center","color":"#262626","bgcolor":"#aedac8"},{"font":{"size":10}},{"border":{"bottom":["thin","#bfbfbf"],"top":["thin","#bfbfbf"],"left":["thin","#bfbfbf"],"right":["thin","#bfbfbf"]},"font":{"size":10},"bgcolor":"#aedac8","align":"center","format":"normal"},{"border":{"bottom":["thin","#bfbfbf"],"top":["thin","#bfbfbf"],"left":["thin","#bfbfbf"],"right":["thin","#bfbfbf"]},"font":{"size":10},"bgcolor":"#aedac8","align":"center"},{"border":{"bottom":["thin","#bfbfbf"],"top":["thin","#bfbfbf"],"left":["thin","#bfbfbf"],"right":["thin","#bfbfbf"]},"bgcolor":"#aedac8","font":{"size":10}},{"font":{"size":10},"bgcolor":"#aedac8"},{"bgcolor":"#02a274","font":{"size":9}},{"bgcolor":"#02a274","font":{"size":9},"align":"center"},{"bgcolor":"#02a274","font":{"size":9},"align":"center","color":"#ffffff"},{"textwrap":true},{"textwrap":true,"font":{"size":9}},{"textwrap":true,"font":{"size":9},"bgcolor":"#02a274"},{"textwrap":true,"font":{"size":9},"bgcolor":"#02a274","color":"#ffffff"},{"align":"center","bgcolor":"#02a274","color":"#000100","border":{"bottom":["thin","#bfbfbf"],"top":["thin","#bfbfbf"],"left":["thin","#bfbfbf"],"right":["thin","#bfbfbf"]},"font":{"bold":false,"size":9}},{"color":"#000100"},{"bgcolor":"#02a274","font":{"size":9},"align":"center","color":"#000100"},{"textwrap":true,"font":{"size":9},"bgcolor":"#02a274","color":"#000100"},{"bgcolor":"","font":{"size":9},"align":"center","color":"#000100"},{"textwrap":true,"font":{"size":9},"bgcolor":"","color":"#000100"},{"align":"center","bgcolor":"","color":"#000100","border":{"bottom":["thin","#bfbfbf"],"top":["thin","#bfbfbf"],"left":["thin","#bfbfbf"],"right":["thin","#bfbfbf"]},"font":{"bold":false,"size":9}},{"color":"#000100","bgcolor":""},{"textwrap":true,"font":{"size":9},"bgcolor":"","color":"#000100","align":"center"},{"font":{"size":9}},{"font":{"size":9},"align":"center"},{"textwrap":true,"align":"center"},{"font":{"size":9},"align":"center","border":{"bottom":["thin","#595959"],"top":["thin","#595959"],"left":["thin","#595959"],"right":["thin","#595959"]}},{"textwrap":true,"align":"center","border":{"bottom":["thin","#595959"],"top":["thin","#595959"],"left":["thin","#595959"],"right":["thin","#595959"]}},{"align":"center","border":{"bottom":["thin","#595959"],"top":["thin","#595959"],"left":["thin","#595959"],"right":["thin","#595959"]}},{"bgcolor":"","font":{"size":9},"align":"center","color":"#000100","border":{"bottom":["thin","#595959"],"top":["thin","#595959"],"left":["thin","#595959"],"right":["thin","#595959"]}},{"textwrap":true,"font":{"size":9},"bgcolor":"","color":"#000100","align":"center","border":{"bottom":["thin","#595959"],"top":["thin","#595959"],"left":["thin","#595959"],"right":["thin","#595959"]}},{"font":{"size":9},"border":{"bottom":["thin","#595959"],"top":["thin","#595959"],"left":["thin","#595959"],"right":["thin","#595959"]}},{"font":{"size":9},"align":"center","border":{"bottom":["thin","#7f7f7f"],"top":["thin","#7f7f7f"],"left":["thin","#7f7f7f"],"right":["thin","#7f7f7f"]}},{"textwrap":true,"align":"center","border":{"bottom":["thin","#7f7f7f"],"top":["thin","#7f7f7f"],"left":["thin","#7f7f7f"],"right":["thin","#7f7f7f"]}},{"align":"center","border":{"bottom":["thin","#7f7f7f"],"top":["thin","#7f7f7f"],"left":["thin","#7f7f7f"],"right":["thin","#7f7f7f"]}},{"bgcolor":"","font":{"size":9},"align":"center","color":"#000100","border":{"bottom":["thin","#7f7f7f"],"top":["thin","#7f7f7f"],"left":["thin","#7f7f7f"],"right":["thin","#7f7f7f"]}},{"textwrap":true,"font":{"size":9},"bgcolor":"","color":"#000100","align":"center","border":{"bottom":["thin","#7f7f7f"],"top":["thin","#7f7f7f"],"left":["thin","#7f7f7f"],"right":["thin","#7f7f7f"]}},{"font":{"size":9},"border":{"bottom":["thin","#7f7f7f"],"top":["thin","#7f7f7f"],"left":["thin","#7f7f7f"],"right":["thin","#7f7f7f"]}},{"font":{"size":9},"align":"center","border":{"bottom":["thin","#756f6f"],"top":["thin","#756f6f"],"left":["thin","#756f6f"],"right":["thin","#756f6f"]}},{"textwrap":true,"align":"center","border":{"bottom":["thin","#756f6f"],"top":["thin","#756f6f"],"left":["thin","#756f6f"],"right":["thin","#756f6f"]}},{"align":"center","border":{"bottom":["thin","#756f6f"],"top":["thin","#756f6f"],"left":["thin","#756f6f"],"right":["thin","#756f6f"]}},{"bgcolor":"","font":{"size":9},"align":"center","color":"#000100","border":{"bottom":["thin","#756f6f"],"top":["thin","#756f6f"],"left":["thin","#756f6f"],"right":["thin","#756f6f"]}},{"textwrap":true,"font":{"size":9},"bgcolor":"","color":"#000100","align":"center","border":{"bottom":["thin","#756f6f"],"top":["thin","#756f6f"],"left":["thin","#756f6f"],"right":["thin","#756f6f"]}},{"font":{"size":9},"border":{"bottom":["thin","#756f6f"],"top":["thin","#756f6f"],"left":["thin","#756f6f"],"right":["thin","#756f6f"]}},{"align":"center","bgcolor":"","color":"#ffffff","border":{"bottom":["thin","#bfbfbf"],"top":["thin","#bfbfbf"],"left":["thin","#bfbfbf"],"right":["thin","#bfbfbf"]},"font":{"bold":false,"size":9}},{"bgcolor":""},{"align":"center","bgcolor":"#02a274","color":"#ffffff","border":{"bottom":["thin","#bfbfbf"],"top":["thin","#bfbfbf"],"left":["thin","#bfbfbf"],"right":["thin","#bfbfbf"]},"font":{"bold":false,"size":10}},{"align":"center","bgcolor":"","color":"#000100","border":{"bottom":["thin","#bfbfbf"],"top":["thin","#bfbfbf"],"left":["thin","#bfbfbf"],"right":["thin","#bfbfbf"]},"font":{"bold":false,"size":10}},{"color":"#000100","font":{"size":10}},{"color":"#000100","bgcolor":"","font":{"size":10}},{"font":{"size":10},"align":"center","border":{"bottom":["thin","#7f7f7f"],"top":["thin","#7f7f7f"],"left":["thin","#7f7f7f"],"right":["thin","#7f7f7f"]}},{"font":{"size":10},"align":"center"},{"textwrap":true,"align":"center","border":{"bottom":["thin","#7f7f7f"],"top":["thin","#7f7f7f"],"left":["thin","#7f7f7f"],"right":["thin","#7f7f7f"]},"font":{"size":10}},{"bgcolor":"","font":{"size":10},"align":"center","color":"#000100","border":{"bottom":["thin","#7f7f7f"],"top":["thin","#7f7f7f"],"left":["thin","#7f7f7f"],"right":["thin","#7f7f7f"]}},{"textwrap":true,"font":{"size":10},"bgcolor":"","color":"#000100","align":"center","border":{"bottom":["thin","#7f7f7f"],"top":["thin","#7f7f7f"],"left":["thin","#7f7f7f"],"right":["thin","#7f7f7f"]}},{"bgcolor":"","font":{"size":10},"align":"center","color":"#000100"},{"font":{"size":10},"border":{"bottom":["thin","#7f7f7f"],"top":["thin","#7f7f7f"],"left":["thin","#7f7f7f"],"right":["thin","#7f7f7f"]}},{"color":"#000100","bgcolor":"","align":"center"},{"font":{"size":10},"align":"center","border":{"bottom":["thin","#bfbfbf"],"top":["thin","#bfbfbf"],"left":["thin","#bfbfbf"],"right":["thin","#bfbfbf"]}},{"textwrap":true,"align":"center","border":{"bottom":["thin","#bfbfbf"],"top":["thin","#bfbfbf"],"left":["thin","#bfbfbf"],"right":["thin","#bfbfbf"]},"font":{"size":10}},{"align":"center","border":{"bottom":["thin","#bfbfbf"],"top":["thin","#bfbfbf"],"left":["thin","#bfbfbf"],"right":["thin","#bfbfbf"]}},{"bgcolor":"","font":{"size":10},"align":"center","color":"#000100","border":{"bottom":["thin","#bfbfbf"],"top":["thin","#bfbfbf"],"left":["thin","#bfbfbf"],"right":["thin","#bfbfbf"]}},{"textwrap":true,"font":{"size":10},"bgcolor":"","color":"#000100","align":"center","border":{"bottom":["thin","#bfbfbf"],"top":["thin","#bfbfbf"],"left":["thin","#bfbfbf"],"right":["thin","#bfbfbf"]}},{"color":"#000100","bgcolor":"","align":"center","border":{"bottom":["thin","#bfbfbf"],"top":["thin","#bfbfbf"],"left":["thin","#bfbfbf"],"right":["thin","#bfbfbf"]}},{"textwrap":true,"border":{"bottom":["thin","#bfbfbf"],"top":["thin","#bfbfbf"],"left":["thin","#bfbfbf"],"right":["thin","#bfbfbf"]}},{"align":"center","bgcolor":"#","color":"#000100","border":{"bottom":["thin","#bfbfbf"],"top":["thin","#bfbfbf"],"left":["thin","#bfbfbf"],"right":["thin","#bfbfbf"]},"font":{"bold":false,"size":10}},{"color":"#000100","font":{"size":10},"bgcolor":"#"},{"align":"center","bgcolor":"#","color":"#000100","border":{"bottom":["thin","#bfbfbf"],"top":["thin","#bfbfbf"],"left":["thin","#bfbfbf"],"right":["thin","#bfbfbf"]},"font":{"bold":false,"size":9}},{"bgcolor":"#"},{"font":{"size":10},"align":"center","border":{"bottom":["thin","#bfbfbf"],"top":["thin","#bfbfbf"],"left":["thin","#bfbfbf"],"right":["thin","#bfbfbf"]},"bgcolor":"#"},{"font":{"size":10},"align":"center","bgcolor":"#"},{"textwrap":true,"align":"center","border":{"bottom":["thin","#bfbfbf"],"top":["thin","#bfbfbf"],"left":["thin","#bfbfbf"],"right":["thin","#bfbfbf"]},"font":{"size":10},"bgcolor":"#"},{"align":"center","border":{"bottom":["thin","#bfbfbf"],"top":["thin","#bfbfbf"],"left":["thin","#bfbfbf"],"right":["thin","#bfbfbf"]},"bgcolor":"#"},{"align":"center","bgcolor":"#"},{"bgcolor":"#","font":{"size":10},"align":"center","color":"#000100","border":{"bottom":["thin","#bfbfbf"],"top":["thin","#bfbfbf"],"left":["thin","#bfbfbf"],"right":["thin","#bfbfbf"]}},{"textwrap":true,"font":{"size":10},"bgcolor":"#","color":"#000100","align":"center","border":{"bottom":["thin","#bfbfbf"],"top":["thin","#bfbfbf"],"left":["thin","#bfbfbf"],"right":["thin","#bfbfbf"]}},{"textwrap":true,"font":{"size":10},"bgcolor":"#","color":"#000100","align":"center","border":{"bottom":["thin","#7f7f7f"],"top":["thin","#7f7f7f"],"left":["thin","#7f7f7f"],"right":["thin","#7f7f7f"]}},{"textwrap":true,"align":"center","border":{"bottom":["thin","#7f7f7f"],"top":["thin","#7f7f7f"],"left":["thin","#7f7f7f"],"right":["thin","#7f7f7f"]},"font":{"size":10},"bgcolor":"#"},{"border":{"bottom":["thin","#bfbfbf"],"top":["thin","#bfbfbf"],"left":["thin","#bfbfbf"],"right":["thin","#bfbfbf"]},"font":{"size":10},"bgcolor":"#"},{"align":"center","bgcolor":"#ddefe8","color":"#000100","border":{"bottom":["thin","#bfbfbf"],"top":["thin","#bfbfbf"],"left":["thin","#bfbfbf"],"right":["thin","#bfbfbf"]},"font":{"bold":false,"size":10}},{"color":"#000100","font":{"size":10},"bgcolor":"#ddefe8"},{"align":"center","bgcolor":"#ddefe8","color":"#000100","border":{"bottom":["thin","#bfbfbf"],"top":["thin","#bfbfbf"],"left":["thin","#bfbfbf"],"right":["thin","#bfbfbf"]},"font":{"bold":false,"size":9}},{"bgcolor":"#ddefe8"},{"font":{"size":10},"align":"center","border":{"bottom":["thin","#bfbfbf"],"top":["thin","#bfbfbf"],"left":["thin","#bfbfbf"],"right":["thin","#bfbfbf"]},"bgcolor":"#ddefe8"},{"font":{"size":10},"align":"center","bgcolor":"#ddefe8"},{"textwrap":true,"align":"center","border":{"bottom":["thin","#bfbfbf"],"top":["thin","#bfbfbf"],"left":["thin","#bfbfbf"],"right":["thin","#bfbfbf"]},"font":{"size":10},"bgcolor":"#ddefe8"},{"align":"center","border":{"bottom":["thin","#bfbfbf"],"top":["thin","#bfbfbf"],"left":["thin","#bfbfbf"],"right":["thin","#bfbfbf"]},"bgcolor":"#ddefe8"},{"align":"center","bgcolor":"#ddefe8"},{"bgcolor":"#ddefe8","font":{"size":10},"align":"center","color":"#000100","border":{"bottom":["thin","#bfbfbf"],"top":["thin","#bfbfbf"],"left":["thin","#bfbfbf"],"right":["thin","#bfbfbf"]}},{"textwrap":true,"font":{"size":10},"bgcolor":"#ddefe8","color":"#000100","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"]},"bgcolor":"#ddefe8"},{"textwrap":true,"font":{"size":10},"bgcolor":"#ddefe8","color":"#000100","align":"center","border":{"bottom":["thin","#7f7f7f"],"top":["thin","#7f7f7f"],"left":["thin","#7f7f7f"],"right":["thin","#7f7f7f"]}},{"textwrap":true,"align":"center","border":{"bottom":["thin","#7f7f7f"],"top":["thin","#7f7f7f"],"left":["thin","#7f7f7f"],"right":["thin","#7f7f7f"]},"font":{"size":10},"bgcolor":"#ddefe8"},{"border":{"bottom":["thin","#bfbfbf"],"top":["thin","#bfbfbf"],"left":["thin","#bfbfbf"],"right":["thin","#bfbfbf"]},"font":{"size":10},"bgcolor":"#ddefe8"},{"color":"#000100","bgcolor":"#fffff","align":"center","border":{"bottom":["thin","#bfbfbf"],"top":["thin","#bfbfbf"],"left":["thin","#bfbfbf"],"right":["thin","#bfbfbf"]}},{"align":"center","bgcolor":"#fffff"},{"textwrap":true,"border":{"bottom":["thin","#bfbfbf"],"top":["thin","#bfbfbf"],"left":["thin","#bfbfbf"],"right":["thin","#bfbfbf"]},"bgcolor":"#fffff"},{"align":"center","border":{"bottom":["thin","#bfbfbf"],"top":["thin","#bfbfbf"],"left":["thin","#bfbfbf"],"right":["thin","#bfbfbf"]},"bgcolor":"#fffff"},{"textwrap":true,"bgcolor":"#fffff"},{"border":{"bottom":["thin","#bfbfbf"],"top":["thin","#bfbfbf"],"left":["thin","#bfbfbf"],"right":["thin","#bfbfbf"]},"bgcolor":"#fffff"},{"color":"#000100","bgcolor":"#ffff","align":"center","border":{"bottom":["thin","#bfbfbf"],"top":["thin","#bfbfbf"],"left":["thin","#bfbfbf"],"right":["thin","#bfbfbf"]}},{"align":"center","bgcolor":"#ffff"},{"textwrap":true,"border":{"bottom":["thin","#bfbfbf"],"top":["thin","#bfbfbf"],"left":["thin","#bfbfbf"],"right":["thin","#bfbfbf"]},"bgcolor":"#ffff"},{"align":"center","border":{"bottom":["thin","#bfbfbf"],"top":["thin","#bfbfbf"],"left":["thin","#bfbfbf"],"right":["thin","#bfbfbf"]},"bgcolor":"#ffff"},{"textwrap":true,"bgcolor":"#ffff"},{"border":{"bottom":["thin","#bfbfbf"],"top":["thin","#bfbfbf"],"left":["thin","#bfbfbf"],"right":["thin","#bfbfbf"]},"bgcolor":"#ffff"},{"color":"#000100","bgcolor":"#fff","align":"center","border":{"bottom":["thin","#bfbfbf"],"top":["thin","#bfbfbf"],"left":["thin","#bfbfbf"],"right":["thin","#bfbfbf"]}},{"align":"center","bgcolor":"#fff"},{"textwrap":true,"border":{"bottom":["thin","#bfbfbf"],"top":["thin","#bfbfbf"],"left":["thin","#bfbfbf"],"right":["thin","#bfbfbf"]},"bgcolor":"#fff"},{"align":"center","border":{"bottom":["thin","#bfbfbf"],"top":["thin","#bfbfbf"],"left":["thin","#bfbfbf"],"right":["thin","#bfbfbf"]},"bgcolor":"#fff"},{"textwrap":true,"bgcolor":"#fff"},{"border":{"bottom":["thin","#bfbfbf"],"top":["thin","#bfbfbf"],"left":["thin","#bfbfbf"],"right":["thin","#bfbfbf"]},"bgcolor":"#fff"},{"color":"#000100","bgcolor":"#ff","align":"center","border":{"bottom":["thin","#bfbfbf"],"top":["thin","#bfbfbf"],"left":["thin","#bfbfbf"],"right":["thin","#bfbfbf"]}},{"align":"center","bgcolor":"#ff"},{"textwrap":true,"border":{"bottom":["thin","#bfbfbf"],"top":["thin","#bfbfbf"],"left":["thin","#bfbfbf"],"right":["thin","#bfbfbf"]},"bgcolor":"#ff"},{"align":"center","border":{"bottom":["thin","#bfbfbf"],"top":["thin","#bfbfbf"],"left":["thin","#bfbfbf"],"right":["thin","#bfbfbf"]},"bgcolor":"#ff"},{"textwrap":true,"bgcolor":"#ff"},{"border":{"bottom":["thin","#bfbfbf"],"top":["thin","#bfbfbf"],"left":["thin","#bfbfbf"],"right":["thin","#bfbfbf"]},"bgcolor":"#ff"},{"color":"#000100","bgcolor":"#f","align":"center","border":{"bottom":["thin","#bfbfbf"],"top":["thin","#bfbfbf"],"left":["thin","#bfbfbf"],"right":["thin","#bfbfbf"]}},{"align":"center","bgcolor":"#f"},{"textwrap":true,"border":{"bottom":["thin","#bfbfbf"],"top":["thin","#bfbfbf"],"left":["thin","#bfbfbf"],"right":["thin","#bfbfbf"]},"bgcolor":"#f"},{"align":"center","border":{"bottom":["thin","#bfbfbf"],"top":["thin","#bfbfbf"],"left":["thin","#bfbfbf"],"right":["thin","#bfbfbf"]},"bgcolor":"#f"},{"textwrap":true,"bgcolor":"#f"},{"border":{"bottom":["thin","#bfbfbf"],"top":["thin","#bfbfbf"],"left":["thin","#bfbfbf"],"right":["thin","#bfbfbf"]},"bgcolor":"#f"},{"color":"#000100","bgcolor":"#","align":"center","border":{"bottom":["thin","#bfbfbf"],"top":["thin","#bfbfbf"],"left":["thin","#bfbfbf"],"right":["thin","#bfbfbf"]}},{"textwrap":true,"border":{"bottom":["thin","#bfbfbf"],"top":["thin","#bfbfbf"],"left":["thin","#bfbfbf"],"right":["thin","#bfbfbf"]},"bgcolor":"#"},{"textwrap":true,"bgcolor":"#"},{"color":"#000100","bgcolor":"#ddefe8","align":"center","border":{"bottom":["thin","#bfbfbf"],"top":["thin","#bfbfbf"],"left":["thin","#bfbfbf"],"right":["thin","#bfbfbf"]}},{"textwrap":true,"border":{"bottom":["thin","#bfbfbf"],"top":["thin","#bfbfbf"],"left":["thin","#bfbfbf"],"right":["thin","#bfbfbf"]},"bgcolor":"#ddefe8"},{"textwrap":true,"bgcolor":"#ddefe8"},{"border":{"bottom":["thin","#bfbfbf"],"top":["thin","#bfbfbf"],"left":["thin","#bfbfbf"],"right":["thin","#bfbfbf"]},"font":{"size":9}},{"color":"#000100","font":{"size":9},"bgcolor":"#ddefe8"},{"bgcolor":"#ddefe8","font":{"size":9}},{"font":{"size":9},"align":"center","border":{"bottom":["thin","#bfbfbf"],"top":["thin","#bfbfbf"],"left":["thin","#bfbfbf"],"right":["thin","#bfbfbf"]},"bgcolor":"#ddefe8"},{"font":{"size":9},"align":"center","bgcolor":"#ddefe8"},{"textwrap":true,"align":"center","border":{"bottom":["thin","#bfbfbf"],"top":["thin","#bfbfbf"],"left":["thin","#bfbfbf"],"right":["thin","#bfbfbf"]},"font":{"size":9},"bgcolor":"#ddefe8"},{"bgcolor":"#ddefe8","font":{"size":9},"align":"center","color":"#000100","border":{"bottom":["thin","#bfbfbf"],"top":["thin","#bfbfbf"],"left":["thin","#bfbfbf"],"right":["thin","#bfbfbf"]}},{"textwrap":true,"font":{"size":9},"bgcolor":"#ddefe8","color":"#000100","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"]},"bgcolor":"#ddefe8","font":{"size":9}},{"textwrap":true,"font":{"size":9},"bgcolor":"#ddefe8","color":"#000100","align":"center","border":{"bottom":["thin","#7f7f7f"],"top":["thin","#7f7f7f"],"left":["thin","#7f7f7f"],"right":["thin","#7f7f7f"]}},{"textwrap":true,"align":"center","border":{"bottom":["thin","#7f7f7f"],"top":["thin","#7f7f7f"],"left":["thin","#7f7f7f"],"right":["thin","#7f7f7f"]},"font":{"size":9},"bgcolor":"#ddefe8"},{"textwrap":true,"border":{"bottom":["thin","#bfbfbf"],"top":["thin","#bfbfbf"],"left":["thin","#bfbfbf"],"right":["thin","#bfbfbf"]},"bgcolor":"#ddefe8","font":{"size":9}},{"textwrap":true,"bgcolor":"#ddefe8","font":{"size":9}},{"align":"center","bgcolor":"#aedac8"},{"bgcolor":"#aedac8"},{"bgcolor":"#fffff"},{"bgcolor":"#ffff"},{"bgcolor":"#fff"},{"bgcolor":"#ff"},{"bgcolor":"#f"},{"align":"center","bgcolor":"#aedac8","font":{"size":8}},{"align":"center","bgcolor":"#aedac8","font":{"size":9}},{"align":"center","bgcolor":"#aedac8","font":{"size":9},"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"]},"font":{"size":8,"name":"Arial"},"align":"center"},{"border":{"bottom":["thin","#bfbfbf"],"top":["thin","#bfbfbf"],"left":["thin","#bfbfbf"],"right":["thin","#bfbfbf"]},"font":{"size":8,"name":"Microsoft YaHei"},"align":"center","bgcolor":"#"},{"border":{"bottom":["thin","#bfbfbf"],"top":["thin","#bfbfbf"],"left":["thin","#bfbfbf"],"right":["thin","#bfbfbf"]},"font":{"size":8,"name":"Microsoft YaHei"},"align":"center","bgcolor":"#f1f9f6"},{"border":{"bottom":["thin","#bfbfbf"],"top":["thin","#bfbfbf"],"left":["thin","#bfbfbf"],"right":["thin","#bfbfbf"]},"bgcolor":"#aedac8","font":{"size":9}},{"align":"center","bgcolor":"#02a274","color":"#ffffff","border":{"bottom":["thin","#d8d8d8"],"top":["thin","#d8d8d8"],"left":["thin","#d8d8d8"],"right":["thin","#d8d8d8"]},"font":{"bold":false,"size":9}},{"bgcolor":"#02a274","font":{"size":9},"align":"center","color":"#ffffff","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"]}},{"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":""},{"align":"center","border":{"bottom":["thin","#d8d8d8"],"top":["thin","#d8d8d8"],"left":["thin","#d8d8d8"],"right":["thin","#d8d8d8"]},"bgcolor":"aedac8"},{"align":"center","bgcolor":"aedac8"},{"align":"center","border":{"bottom":["thin","#d8d8d8"],"top":["thin","#d8d8d8"],"left":["thin","#d8d8d8"],"right":["thin","#d8d8d8"]},"bgcolor":"#aedac8"},{"align":"center","border":{"bottom":["thin","#d8d8d8"],"top":["thin","#d8d8d8"],"left":["thin","#d8d8d8"],"right":["thin","#d8d8d8"]},"bgcolor":"#aedac8","color":"#ffffff"},{"align":"center","bgcolor":"#aedac8","color":"#ffffff"},{"align":"center","border":{"bottom":["thin","#d8d8d8"],"top":["thin","#d8d8d8"],"left":["thin","#d8d8d8"],"right":["thin","#d8d8d8"]},"bgcolor":"#aedac8","color":"#ffffff","font":{"size":9}},{"align":"center","bgcolor":"#aedac8","color":"#ffffff","font":{"size":9}},{"align":"center","border":{"bottom":["thin","#d8d8d8"],"top":["thin","#d8d8d8"],"left":["thin","#d8d8d8"],"right":["thin","#d8d8d8"]},"bgcolor":"#aedac8","color":"#000100","font":{"size":9}},{"align":"center","bgcolor":"#aedac8","color":"#000100","font":{"size":9}},{"align":"center","border":{"bottom":["thin","#d8d8d8"],"top":["thin","#d8d8d8"],"left":["thin","#d8d8d8"],"right":["thin","#d8d8d8"]},"bgcolor":"#aedac8","color":"#000100","font":{"size":8}},{"align":"center","bgcolor":"#aedac8","color":"#000100","font":{"size":8}},{"border":{"bottom":["thin","#d8d8d8"],"top":["thin","#d8d8d8"],"left":["thin","#d8d8d8"],"right":["thin","#d8d8d8"]},"bgcolor":"#"},{"border":{"bottom":["thin","#d8d8d8"],"top":["thin","#d8d8d8"],"left":["thin","#d8d8d8"],"right":["thin","#d8d8d8"]},"bgcolor":"##aedac8"},{"bgcolor":"##aedac8"},{"border":{"bottom":["thin","#d8d8d8"],"top":["thin","#d8d8d8"],"left":["thin","#d8d8d8"],"right":["thin","#d8d8d8"]},"bgcolor":"#aedac8"},{"border":{"bottom":["thin","#d8d8d8"],"top":["thin","#d8d8d8"],"left":["thin","#d8d8d8"],"right":["thin","#d8d8d8"]},"bgcolor":"#aedac8","font":{"size":8}},{"border":{"bottom":["thin","#d8d8d8"],"top":["thin","#d8d8d8"],"left":["thin","#d8d8d8"],"right":["thin","#d8d8d8"]},"bgcolor":"#aedac8","font":{"size":8},"align":"center"},{"align":"center","border":{"bottom":["thin","#d8d8d8"],"top":["thin","#d8d8d8"],"left":["thin","#d8d8d8"],"right":["thin","#d8d8d8"]},"bgcolor":"#aedac8","font":{"size":9}},{"bgcolor":"#aedac8","font":{"size":8}},{"bgcolor":"#aedac8","font":{"size":8},"align":"left"},{"bgcolor":"#aedac8","font":{"size":8},"align":"left","valign":"middle"},{"align":"center","bgcolor":"#02a274","color":"#ffffff","border":{"bottom":["thin","#d8d8d8"],"top":["thin","#d8d8d8"],"left":["thin","#d8d8d8"],"right":["thin","#d8d8d8"]},"font":{"bold":false,"size":10}},{"bgcolor":"#02a274","font":{"size":10},"align":"center","color":"#ffffff","border":{"bottom":["thin","#d8d8d8"],"top":["thin","#d8d8d8"],"left":["thin","#d8d8d8"],"right":["thin","#d8d8d8"]}},{"bgcolor":"#ddefe8","font":{"size":10}},{"border":{"bottom":["thin","#bfbfbf"],"top":["thin","#bfbfbf"],"left":["thin","#bfbfbf"],"right":["thin","#bfbfbf"]},"font":{"size":10,"name":"Microsoft YaHei"},"align":"center","bgcolor":"#f1f9f6"},{"border":{"bottom":["thin","#bfbfbf"],"top":["thin","#bfbfbf"],"left":["thin","#bfbfbf"],"right":["thin","#bfbfbf"]},"font":{"size":10,"name":"Microsoft YaHei"},"align":"center"},{"align":"center","border":{"bottom":["thin","#d8d8d8"],"top":["thin","#d8d8d8"],"left":["thin","#d8d8d8"],"right":["thin","#d8d8d8"]},"bgcolor":"#aedac8","color":"#000100","font":{"size":10}},{"align":"center","bgcolor":"#aedac8","color":"#000100","font":{"size":10}},{"border":{"bottom":["thin","#d8d8d8"],"top":["thin","#d8d8d8"],"left":["thin","#d8d8d8"],"right":["thin","#d8d8d8"]},"bgcolor":"#aedac8","font":{"size":10},"align":"center"},{"align":"center","bgcolor":"#aedac8","font":{"size":10}},{"textwrap":true,"border":{"bottom":["thin","#bfbfbf"],"top":["thin","#bfbfbf"],"left":["thin","#bfbfbf"],"right":["thin","#bfbfbf"]},"bgcolor":"#ddefe8","font":{"size":10}},{"textwrap":true,"bgcolor":"#ddefe8","font":{"size":10}},{"bgcolor":"#aedac8","font":{"size":10},"align":"left","valign":"middle"},{"border":{"bottom":["thin","#bfbfbf"],"top":["thin","#bfbfbf"],"left":["thin","#bfbfbf"],"right":["thin","#bfbfbf"]},"font":{"size":9,"name":"Microsoft YaHei"},"align":"center","bgcolor":"#f1f9f6"},{"border":{"bottom":["thin","#bfbfbf"],"top":["thin","#bfbfbf"],"left":["thin","#bfbfbf"],"right":["thin","#bfbfbf"]},"font":{"size":9,"name":"Microsoft YaHei"},"align":"center"},{"font":{"size":9},"align":"center","border":{"bottom":["thin","#bfbfbf"],"top":["thin","#bfbfbf"],"left":["thin","#bfbfbf"],"right":["thin","#bfbfbf"]}},{"font":{"size":8}}],"validations":[],"isGroup":true,"cols":{"0":{"width":20},"1":{"width":84},"2":{"width":132},"3":{"width":75},"4":{"width":63},"5":{"width":59},"6":{"width":70},"7":{"width":61},"8":{"width":60},"9":{"width":75},"10":{"width":75},"11":{"width":64},"12":{"width":70},"13":{"width":63},"14":{"width":86},"15":{"width":64},"16":{"width":58},"17":{"width":63},"18":{"width":60},"19":{"width":63},"20":{"width":59},"21":{"width":73},"22":{"width":82},"23":{"width":73},"24":{"width":86},"len":50},"merges":["B1:X1","D3:D6","E5:E6","F5:F6","E4:F4","G4:G6","H4:H6","I5:I6","J5:K5","I4:K4","E3:K3","L3:L6","D2:L2","M4:M6","N5:N6","O5:O6","P5:P6","Q5:Q6","N4:Q4","M3:Q3","R4:R6","R3:T3","S4:T4","S5:S6","T5:T6","U4:U6","V4:W4","V5:V6","W5:W6","X4:Y4","X5:X6","Y5:Y6","U3:Y3","M2:T2","U2:Y2","B2:B6","C2:C6","B8:C8"]}', NULL, 'https://static.jeecg.com/designreport/images/jingfei_1607069843358.png', 'admin', '2020-12-03 16:54:17', 'admin', '2021-02-03 13:59:08', 0, NULL, NULL, 1, 443, NULL, NULL, NULL, NULL, 0, NULL); -INSERT INTO "public"."jimu_report" VALUES ('1334457419857793024', '20201203192154', '超市各地区销售额', NULL, NULL, '984272091947253760', '{"loopBlockList":[],"area":{"sri":1,"sci":26,"eri":4,"eci":28,"width":300,"height":100},"excel_config_id":"1334457419857793024","printConfig":{"paper":"A4","width":210,"height":297,"definition":1,"isBackend":false,"marginX":10,"marginY":10},"rows":{"0":{"cells":{"1":{"text":"各地区商品销售额一栏表","merge":[0,18],"style":13}},"height":82},"1":{"cells":{"1":{"text":"地区/类别/时间","merge":[1,1],"style":46},"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":20},"4":{"text":"#{xiaoshou.sales_12}","style":20},"5":{"text":"#{xiaoshou.sales_13}","style":20},"6":{"text":"#{xiaoshou.sales_14}","style":20},"7":{"text":"#{xiaoshou.sales_15}","style":20},"8":{"text":"#{xiaoshou.sales_16}","style":20},"9":{"text":"#{xiaoshou.sales_17}","style":20},"10":{"text":"#{xiaoshou.sales_18}","style":20},"11":{"text":"#{xiaoshou.sales_19}","style":20},"12":{"text":"#{xiaoshou.sales_20}","style":20},"13":{"text":"#{xiaoshou.sales_21}","style":20},"14":{"text":"#{xiaoshou.sales_22}","style":20},"15":{"style":48,"text":"=SUM(D4:O4)"},"16":{"text":"#{xiaoshou.sales_31}","style":20},"17":{"text":"#{xiaoshou.sales_32}","style":20},"18":{"text":"#{xiaoshou.sales_33}","style":20},"19":{"text":"#{xiaoshou.sales_34}","style":20},"20":{"text":"#{xiaoshou.sales_35}","style":20},"21":{"text":"#{xiaoshou.sales_36}","style":20},"22":{"text":"#{xiaoshou.sales_37}","style":20},"23":{"text":"#{xiaoshou.sales_38}","style":20},"24":{"text":"#{xiaoshou.sales_39}","style":20},"25":{"style":48,"text":"=SUM(Q4:Y4)"}},"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":"=SUM(I4)","style":55},"9":{"text":"=SUM(J4)","style":55},"10":{"text":"=SUM(K4)","style":55},"11":{"text":"=SUM(L4)","style":55},"12":{"text":"=SUM(M4)","style":55},"13":{"text":"=SUM(N4)","style":55},"14":{"text":"=SUM(O4)","style":55},"15":{"text":"=SUM(P4)","style":55},"16":{"text":"=SUM(Q4)","style":55},"17":{"text":"=SUM(R4)","style":55},"18":{"text":"=SUM(S4)","style":55},"19":{"text":"=SUM(T4)","style":55},"20":{"text":"=SUM(U4)","style":55},"21":{"text":"=SUM(V4)","style":55},"22":{"text":"=SUM(W4)","style":55},"23":{"text":"=SUM(X4)","style":55},"24":{"text":"=SUM(Y4)","style":55},"25":{"text":"=SUM(Z4)","style":55}},"isDrag":true},"len":100},"dbexps":[],"toolPrintSizeObj":{"printType":"A4","widthPx":718,"heightPx":1047},"dicts":[],"groupField":"xiaoshou.diqu","freeze":"A1","dataRectWidth":2464,"displayConfig":{},"background":false,"name":"sheet1","autofilter":{},"styles":[{"bgcolor":"#"},{"bgcolor":"#d7f2f9"},{"bgcolor":"#d7f2f9","align":"center"},{"align":"center"},{"align":"center","bgcolor":"#"},{"bgcolor":"#d7f2f9","align":"center","border":{"bottom":["thin","2896ea"],"top":["thin","2896ea"],"left":["thin","2896ea"],"right":["thin","2896ea"]}},{"align":"center","border":{"bottom":["thin","2896ea"],"top":["thin","2896ea"],"left":["thin","2896ea"],"right":["thin","2896ea"]}},{"border":{"bottom":["thin","2896ea"],"top":["thin","2896ea"],"left":["thin","2896ea"],"right":["thin","2896ea"]}},{"bgcolor":"#d7f2f9","align":"center","border":{"bottom":["thin","#2896ea"],"top":["thin","#2896ea"],"left":["thin","#2896ea"],"right":["thin","#2896ea"]}},{"align":"center","border":{"bottom":["thin","#2896ea"],"top":["thin","#2896ea"],"left":["thin","#2896ea"],"right":["thin","#2896ea"]}},{"border":{"bottom":["thin","#2896ea"],"top":["thin","#2896ea"],"left":["thin","#2896ea"],"right":["thin","#2896ea"]}},{"font":{"bold":true}},{"font":{"bold":true,"size":16}},{"font":{"bold":true,"size":16},"align":"center"},{"border":{"bottom":["thin","#2896ea"],"top":["thin","#2896ea"],"left":["thin","#2896ea"],"right":["thin","#2896ea"]},"font":{"size":8}},{"border":{"bottom":["thin","#2896ea"],"top":["thin","#2896ea"],"left":["thin","#2896ea"],"right":["thin","#2896ea"]},"font":{"size":8},"align":"center"},{"border":{"bottom":["thin","#2896ea"],"top":["thin","#2896ea"],"left":["thin","#2896ea"],"right":["thin","#2896ea"]},"font":{"size":8},"align":"center","format":"number"},{"bgcolor":"#5b9cd6","align":"center","border":{"bottom":["thin","#2896ea"],"top":["thin","#2896ea"],"left":["thin","#2896ea"],"right":["thin","#2896ea"]}},{"bgcolor":"#5b9cd6"},{"bgcolor":"#5b9cd6","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"]},"font":{"size":8},"align":"center"},{"border":{"bottom":["thin","#d8d8d8"],"top":["thin","#d8d8d8"],"left":["thin","#d8d8d8"],"right":["thin","#d8d8d8"]},"font":{"size":8},"align":"center","format":"number"},{"bgcolor":"#5b9cd6","align":"center","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"]},"font":{"size":8},"align":"center"},{"border":{"bottom":["thin","#9cc2e6"],"top":["thin","#9cc2e6"],"left":["thin","#9cc2e6"],"right":["thin","#9cc2e6"]},"font":{"size":8},"align":"center","format":"number"},{"bgcolor":"#5b9cd6","align":"center","border":{"bottom":["thin","#4371c6"],"top":["thin","#4371c6"],"left":["thin","#4371c6"],"right":["thin","#4371c6"]}},{"border":{"bottom":["thin","#4371c6"],"top":["thin","#4371c6"],"left":["thin","#4371c6"],"right":["thin","#4371c6"]},"font":{"size":8},"align":"center"},{"border":{"bottom":["thin","#4371c6"],"top":["thin","#4371c6"],"left":["thin","#4371c6"],"right":["thin","#4371c6"]},"font":{"size":8},"align":"center","format":"number"},{"bgcolor":"#5b9cd6","align":"center","border":{"bottom":["thin","#a5a5a5"],"top":["thin","#a5a5a5"],"left":["thin","#a5a5a5"],"right":["thin","#a5a5a5"]}},{"bgcolor":"#5b9cd6","align":"center","border":{"bottom":["thin","#7f7f7f"],"top":["thin","#7f7f7f"],"left":["thin","#7f7f7f"],"right":["thin","#7f7f7f"]}},{"border":{"bottom":["thin","#7f7f7f"],"top":["thin","#7f7f7f"],"left":["thin","#7f7f7f"],"right":["thin","#7f7f7f"]},"font":{"size":8},"align":"center"},{"border":{"bottom":["thin","#7f7f7f"],"top":["thin","#7f7f7f"],"left":["thin","#7f7f7f"],"right":["thin","#7f7f7f"]},"font":{"size":8},"align":"center","format":"number"},{"bgcolor":"#5b9cd6","align":"center","border":{"bottom":["thin","#e7e5e6"],"top":["thin","#e7e5e6"],"left":["thin","#e7e5e6"],"right":["thin","#e7e5e6"]}},{"border":{"bottom":["thin","#e7e5e6"],"top":["thin","#e7e5e6"],"left":["thin","#e7e5e6"],"right":["thin","#e7e5e6"]},"font":{"size":8},"align":"center"},{"border":{"bottom":["thin","#e7e5e6"],"top":["thin","#e7e5e6"],"left":["thin","#e7e5e6"],"right":["thin","#e7e5e6"]},"font":{"size":8},"align":"center","format":"number"},{"bgcolor":"#5b9cd6","align":"center","border":{"bottom":["thin","#d0cecf"],"top":["thin","#d0cecf"],"left":["thin","#d0cecf"],"right":["thin","#d0cecf"]}},{"border":{"bottom":["thin","#d0cecf"],"top":["thin","#d0cecf"],"left":["thin","#d0cecf"],"right":["thin","#d0cecf"]},"font":{"size":8},"align":"center"},{"border":{"bottom":["thin","#d0cecf"],"top":["thin","#d0cecf"],"left":["thin","#d0cecf"],"right":["thin","#d0cecf"]},"font":{"size":8},"align":"center","format":"number"},{"bgcolor":"#5b9cd6","align":"center","border":{"bottom":["thin","#d0cecf"],"top":["thin","#d0cecf"],"left":["thin","#d0cecf"],"right":["thin","#d0cecf"]},"color":"#ffffff"},{"bgcolor":"#5b9cd6","color":"#ffffff"},{"bgcolor":"#5b9cd6","align":"center","border":{"bottom":["thin","#afabac"],"top":["thin","#afabac"],"left":["thin","#afabac"],"right":["thin","#afabac"]},"color":"#ffffff"},{"border":{"bottom":["thin","#afabac"],"top":["thin","#afabac"],"left":["thin","#afabac"],"right":["thin","#afabac"]},"font":{"size":8},"align":"center"},{"border":{"bottom":["thin","#afabac"],"top":["thin","#afabac"],"left":["thin","#afabac"],"right":["thin","#afabac"]},"font":{"size":8},"align":"center","format":"number"},{"bgcolor":"#5b9cd6","align":"center","border":{"bottom":["thin","#f2f2f2"],"top":["thin","#f2f2f2"],"left":["thin","#f2f2f2"],"right":["thin","#f2f2f2"]},"color":"#ffffff"},{"border":{"bottom":["thin","#f2f2f2"],"top":["thin","#f2f2f2"],"left":["thin","#f2f2f2"],"right":["thin","#f2f2f2"]},"font":{"size":8},"align":"center"},{"border":{"bottom":["thin","#f2f2f2"],"top":["thin","#f2f2f2"],"left":["thin","#f2f2f2"],"right":["thin","#f2f2f2"]},"font":{"size":8},"align":"center","format":"number"},{"bgcolor":"#5b9cd6","align":"center","border":{"bottom":["thin","#d8d8d8"],"top":["thin","#d8d8d8"],"left":["thin","#d8d8d8"],"right":["thin","#d8d8d8"]},"color":"#ffffff"},{"border":{"bottom":["thin","#d8d8d8"],"top":["thin","#d8d8d8"],"left":["thin","#d8d8d8"],"right":["thin","#d8d8d8"]},"font":{"size":8},"align":"center","bgcolor":"#d7f2f9"},{"border":{"bottom":["thin","#d8d8d8"],"top":["thin","#d8d8d8"],"left":["thin","#d8d8d8"],"right":["thin","#d8d8d8"]},"font":{"size":8},"align":"center","format":"number","bgcolor":"#deeaf6"},{"border":{"bottom":["thin","#d8d8d8"],"top":["thin","#d8d8d8"],"left":["thin","#d8d8d8"],"right":["thin","#d8d8d8"]},"font":{"size":8},"align":"center","format":"number","bgcolor":"#bdd7ee"},{"border":{"bottom":["thin","#d8d8d8"],"top":["thin","#d8d8d8"],"left":["thin","#d8d8d8"],"right":["thin","#d8d8d8"]},"font":{"size":10},"align":"center","bgcolor":"#d7f2f9"},{"border":{"bottom":["thin","#d8d8d8"],"top":["thin","#d8d8d8"],"left":["thin","#d8d8d8"],"right":["thin","#d8d8d8"]},"font":{"size":9},"align":"center","bgcolor":"#d7f2f9"},{"align":"center","bgcolor":"#bdd7ee"},{"bgcolor":"#bdd7ee"},{"bgcolor":"#bdd7ee","format":"number"},{"bgcolor":"#bdd7ee","format":"number","align":"center"}],"validations":[],"isGroup":true,"cols":{"0":{"width":21},"1":{"width":63},"2":{"width":85},"3":{"width":95},"4":{"width":83},"5":{"width":81},"6":{"width":88},"7":{"width":89},"8":{"width":87},"9":{"width":95},"10":{"width":92},"11":{"width":95},"12":{"width":96},"13":{"width":98},"14":{"width":98},"15":{"width":78},"16":{"width":110},"17":{"width":111},"18":{"width":102},"19":{"width":102},"20":{"width":114},"21":{"width":111},"22":{"width":113},"23":{"width":107},"24":{"width":115},"25":{"width":135},"len":49},"merges":["D2:P2","B2:C3","Q2:Z2","B1:T1","B5:C5"]}', NULL, 'https://static.jeecg.com/designreport/images/chaoshi_1607069609875.png', 'admin', '2020-12-03 19:21:55', 'admin', '2021-04-05 18:47:20', 0, NULL, NULL, 1, 376, NULL, NULL, NULL, NULL, 0, NULL); -INSERT INTO "public"."jimu_report" VALUES ('1334696790477377536', '20201204111149', '学校收入一览表', NULL, NULL, '984272091947253760', '{"loopBlockList":[],"area":{"sri":1,"sci":24,"eri":5,"eci":24,"width":100,"height":138},"excel_config_id":"1334696790477377536","printConfig":{"paper":"A4","width":210,"height":297,"definition":1,"isBackend":false,"marginX":10,"marginY":10},"rows":{"0":{"cells":{"1":{"text":"学校收入一览表","merge":[0,13],"style":25}},"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,10],"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,2]}},"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}}},"4":{"cells":{"1":{"text":"#{shouru.group(city)}","style":45,"aggregate":"group"},"2":{"text":"#{shouru.group(school)}","style":45,"aggregate":"group"},"3":{"text":"#{shouru.group(ncnum)}","style":35,"aggregate":"group"},"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":33,"text":"=SUM(W5,X5)"},"22":{"style":35,"text":"=SUM(O5,S5)"},"23":{"style":35,"text":"=SUM(P5,T5)"}},"isDrag":true,"height":25},"5":{"cells":{"1":{"style":66,"text":"合计"},"2":{"text":" ","style":66},"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":66,"text":" "},"14":{"style":66,"text":" "},"15":{"style":66,"text":" "},"16":{"style":66,"text":" "},"17":{"style":66,"text":" "},"18":{"text":" ","style":66},"19":{"style":66,"text":" "},"20":{"style":66,"text":" "},"21":{"style":15,"text":"=SUM(V5)"},"22":{"style":15,"text":"=SUM(W5)"},"23":{"style":15,"text":"=SUM(X5)"}}},"9":{"cells":{}},"11":{"cells":{}},"len":101},"dbexps":[],"toolPrintSizeObj":{"printType":"A4","widthPx":718,"heightPx":1047},"dicts":[],"groupField":"shouru.city","freeze":"A1","dataRectWidth":1881,"displayConfig":{},"background":false,"name":"sheet1","autofilter":{},"styles":[{"align":"center"},{"align":"center","bgcolor":"#"},{"align":"center","bgcolor":"#309fc6"},{"bgcolor":"#ffffff"},{"align":"center","bgcolor":"#309fc6","color":"#ffffff"},{"align":"center","bgcolor":"#b2ddec"},{"align":"center","bgcolor":"#309fc6","color":"#ffffff","font":{"size":8}},{"align":"center","bgcolor":"#b2ddec","font":{"size":8}},{"align":"center","bgcolor":"#309fc6","color":"#ffffff","font":{"size":9}},{"align":"center","bgcolor":"#b2ddec","font":{"size":9}},{"align":"center","bgcolor":"#309fc6","color":"#ffffff","font":{"size":10}},{"align":"center","bgcolor":""},{"align":"center","bgcolor":"#309fc6","color":"#ffffff","font":{"size":10},"border":{"bottom":["thin","#bfbfbf"],"top":["thin","#bfbfbf"],"left":["thin","#bfbfbf"],"right":["thin","#bfbfbf"]}},{"align":"center","bgcolor":"#309fc6","color":"#ffffff","border":{"bottom":["thin","#bfbfbf"],"top":["thin","#bfbfbf"],"left":["thin","#bfbfbf"],"right":["thin","#bfbfbf"]}},{"align":"center","bgcolor":"#b2ddec","font":{"size":9},"border":{"bottom":["thin","#bfbfbf"],"top":["thin","#bfbfbf"],"left":["thin","#bfbfbf"],"right":["thin","#bfbfbf"]}},{"align":"center","bgcolor":"#b2ddec","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"]}},{"font":{"size":9}},{"align":"center","font":{"size":9}},{"align":"center","bgcolor":"#dff2f9"},{"bgcolor":""},{"bgcolor":"#309fc6"},{"align":"center","color":"#ffffff"},{"align":"center","bgcolor":"#dff2f9","border":{"bottom":["thin","#bfbfbf"],"top":["thin","#bfbfbf"],"left":["thin","#bfbfbf"],"right":["thin","#bfbfbf"]}},{"align":"center","font":{"size":16}},{"align":"center","font":{"size":16,"bold":true}},{"border":{"bottom":["thin","#bfbfbf"],"top":["thin","#bfbfbf"],"left":["thin","#bfbfbf"],"right":["thin","#bfbfbf"]},"bgcolor":"#"},{"border":{"bottom":["thin","#bfbfbf"],"top":["thin","#bfbfbf"],"left":["thin","#bfbfbf"],"right":["thin","#bfbfbf"]},"bgcolor":"#b2ddec"},{"border":{"bottom":["thin","#bfbfbf"],"top":["thin","#bfbfbf"],"left":["thin","#bfbfbf"],"right":["thin","#bfbfbf"]},"bgcolor":"#dff2f9"},{"border":{"bottom":["thin","#bfbfbf"],"top":["thin","#bfbfbf"],"left":["thin","#bfbfbf"],"right":["thin","#bfbfbf"]},"bgcolor":"b2ddec"},{"border":{"bottom":["thin","#bfbfbf"],"top":["thin","#bfbfbf"],"left":["thin","#bfbfbf"],"right":["thin","#bfbfbf"]},"bgcolor":"¥b2ddec"},{"border":{"bottom":["thin","#bfbfbf"],"top":["thin","#bfbfbf"],"left":["thin","#bfbfbf"],"right":["thin","#bfbfbf"]},"align":"center"},{"align":"center","font":{"size":8}},{"align":"center","bgcolor":"#b2ddec","border":{"bottom":["thin","#bfbfbf"],"top":["thin","#bfbfbf"],"left":["thin","#bfbfbf"],"right":["thin","#bfbfbf"]},"font":{"size":8}},{"align":"center","bgcolor":"#dff2f9","border":{"bottom":["thin","#bfbfbf"],"top":["thin","#bfbfbf"],"left":["thin","#bfbfbf"],"right":["thin","#bfbfbf"]},"font":{"size":8}},{"border":{"bottom":["thin","#bfbfbf"],"top":["thin","#bfbfbf"],"left":["thin","#bfbfbf"],"right":["thin","#bfbfbf"]},"align":"center","font":{"size":8}},{"align":"center","bgcolor":"#dff2f9","border":{"bottom":["thin","#bfbfbf"],"top":["thin","#bfbfbf"],"left":["thin","#bfbfbf"],"right":["thin","#bfbfbf"]},"font":{"size":9}},{"border":{"bottom":["thin","#bfbfbf"],"top":["thin","#bfbfbf"],"left":["thin","#bfbfbf"],"right":["thin","#bfbfbf"]},"align":"center","font":{"size":9}},{"align":"center","bgcolor":"","color":"#ffffff","font":{"size":10},"border":{"bottom":["thin","#bfbfbf"],"top":["thin","#bfbfbf"],"left":["thin","#bfbfbf"],"right":["thin","#bfbfbf"]}},{"align":"center","bgcolor":"","color":"#ffffff","border":{"bottom":["thin","#bfbfbf"],"top":["thin","#bfbfbf"],"left":["thin","#bfbfbf"],"right":["thin","#bfbfbf"]}},{"align":"center","bgcolor":"#5b9cd6","color":"#ffffff","font":{"size":10},"border":{"bottom":["thin","#bfbfbf"],"top":["thin","#bfbfbf"],"left":["thin","#bfbfbf"],"right":["thin","#bfbfbf"]}},{"bgcolor":"#5b9cd6"},{"align":"center","bgcolor":"#5b9cd6","color":"#ffffff","border":{"bottom":["thin","#bfbfbf"],"top":["thin","#bfbfbf"],"left":["thin","#bfbfbf"],"right":["thin","#bfbfbf"]}},{"align":"center","bgcolor":"#5b9cd6","color":"#ffffff"},{"align":"center","bgcolor":"#d7f2f9","font":{"size":9},"border":{"bottom":["thin","#bfbfbf"],"top":["thin","#bfbfbf"],"left":["thin","#bfbfbf"],"right":["thin","#bfbfbf"]}},{"align":"center","bgcolor":"#d7f2f9","font":{"size":8},"border":{"bottom":["thin","#bfbfbf"],"top":["thin","#bfbfbf"],"left":["thin","#bfbfbf"],"right":["thin","#bfbfbf"]}},{"align":"center","bgcolor":"#5b9cd6","border":{"bottom":["thin","#bfbfbf"],"top":["thin","#bfbfbf"],"left":["thin","#bfbfbf"],"right":["thin","#bfbfbf"]}},{"align":"center","bgcolor":"#5b9cd6"},{"align":"center","bgcolor":"#bdd7ee","font":{"size":9},"border":{"bottom":["thin","#bfbfbf"],"top":["thin","#bfbfbf"],"left":["thin","#bfbfbf"],"right":["thin","#bfbfbf"]}},{"font":{"size":8}},{"align":"center","bgcolor":"#bdd7ee","font":{"size":8},"border":{"bottom":["thin","#bfbfbf"],"top":["thin","#bfbfbf"],"left":["thin","#bfbfbf"],"right":["thin","#bfbfbf"]}},{"font":{"size":10}},{"align":"center","bgcolor":"#bdd7ee","font":{"size":10},"border":{"bottom":["thin","#bfbfbf"],"top":["thin","#bfbfbf"],"left":["thin","#bfbfbf"],"right":["thin","#bfbfbf"]}},{"align":"center","font":{"size":10}},{"align":"center","bgcolor":"#d7f2f9","font":{"size":10},"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","font":{"size":10}},{"font":{"size":12}},{"align":"center","bgcolor":"#bdd7ee","font":{"size":12},"border":{"bottom":["thin","#bfbfbf"],"top":["thin","#bfbfbf"],"left":["thin","#bfbfbf"],"right":["thin","#bfbfbf"]}},{"align":"center","font":{"size":12}},{"align":"center","bgcolor":"#d7f2f9","font":{"size":12},"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","font":{"size":12}},{"font":{"size":10.5}},{"align":"center","bgcolor":"#bdd7ee","font":{"size":10.5},"border":{"bottom":["thin","#bfbfbf"],"top":["thin","#bfbfbf"],"left":["thin","#bfbfbf"],"right":["thin","#bfbfbf"]}},{"align":"center","font":{"size":10.5}},{"align":"center","bgcolor":"#d7f2f9","font":{"size":10.5},"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","font":{"size":10.5}},{"align":"left","bgcolor":"#b2ddec","border":{"bottom":["thin","#bfbfbf"],"top":["thin","#bfbfbf"],"left":["thin","#bfbfbf"],"right":["thin","#bfbfbf"]}},{"align":"left"}],"validations":[],"isGroup":true,"cols":{"0":{"width":37},"1":{"width":79},"2":{"width":87},"3":{"width":79},"4":{"width":92},"5":{"width":90},"6":{"width":77},"7":{"width":83},"8":{"width":89},"9":{"width":79},"10":{"width":89},"11":{"width":84},"12":{"width":76},"13":{"width":67},"14":{"width":74},"15":{"width":69},"16":{"width":74},"17":{"width":68},"18":{"width":76},"19":{"width":79},"20":{"width":78},"21":{"width":74},"22":{"width":81},"len":49},"merges":["B2:D3","E2:G3","H2:M3","N3:Q3","R3:U3","V3:X3","N2:X2","B1:O1"]}', NULL, 'https://static.jeecg.com/designreport/images/xuexiao_1607069724407.png', 'admin', '2020-12-04 11:11:50', 'admin', '2021-04-01 02:46:23', 0, NULL, NULL, 1, 434, NULL, NULL, NULL, NULL, 0, NULL); -INSERT INTO "public"."jimu_report" VALUES ('1334757703079301120', '20201204151358', '车间零件完工一览表', NULL, NULL, '984272091947253760', '{"loopBlockList":[],"area":false,"printElWidth":718,"excel_config_id":"1334757703079301120","printElHeight":1047,"rows":{"0":{"cells":{"1":{"text":"车间零件完工一览表","merge":[0,12],"style":23}},"height":81},"1":{"cells":{"0":{"style":11},"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},"16":{"style":11},"17":{"style":11},"18":{"style":11},"19":{"style":11},"20":{"style":11},"21":{"style":11},"22":{"style":11},"23":{"style":11},"24":{"style":11},"25":{"style":11},"26":{"style":11}},"height":55},"2":{"cells":{"0":{"style":13},"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":14},"12":{"text":"#{chejian.hc}","style":14},"13":{"text":"#{chejian.jtime}","style":14},"14":{"text":"#{chejian.yield}","style":14},"15":{"text":"#{chejian.beizhu}","style":14},"16":{"style":13},"17":{"style":13},"18":{"style":13},"19":{"style":13},"20":{"style":13},"21":{"style":13},"22":{"style":13},"23":{"style":13},"24":{"style":13},"25":{"style":13},"26":{"style":13}},"isDrag":true,"height":35},"len":100},"dbexps":[],"toolPrintSizeObj":{"printType":"A4","widthPx":718,"heightPx":1047},"dicts":[],"groupField":"chejian.city","freeze":"A1","dataRectWidth":1494,"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","bgcolor":"#b2ddec"},{"font":{"size":8}},{"align":"center","bgcolor":"#309fc6","color":"#ffffff","border":{"bottom":["thin","#bfbfbf"],"top":["thin","#bfbfbf"],"left":["thin","#bfbfbf"],"right":["thin","#bfbfbf"]},"font":{"size":8}},{"font":{"size":8},"align":"center"},{"border":{"bottom":["thin","#bfbfbf"],"top":["thin","#bfbfbf"],"left":["thin","#bfbfbf"],"right":["thin","#bfbfbf"]},"font":{"size":8},"align":"center","bgcolor":"#b2ddec"},{"border":{"bottom":["thin","#bfbfbf"],"top":["thin","#bfbfbf"],"left":["thin","#bfbfbf"],"right":["thin","#bfbfbf"]},"font":{"size":8},"align":"center"},{"align":"center","bgcolor":"#309fc6","color":"#ffffff","border":{"bottom":["thin","#bfbfbf"],"top":["thin","#bfbfbf"],"left":["thin","#bfbfbf"],"right":["thin","#bfbfbf"]},"font":{"size":9}},{"font":{"bold":true,"size":16},"align":"center"}],"validations":[],"isGroup":true,"cols":{"0":{"width":45},"1":{"width":106},"2":{"width":121},"3":{"width":124},"4":{"width":87},"5":{"width":76},"6":{"width":82},"7":{"width":81},"8":{"width":69},"9":{"width":76},"10":{"width":81},"15":{"width":146},"len":50},"merges":["B1:N1"]}', NULL, 'https://static.jeecg.com/designreport/images/QQ截图20201216185352_1608116050060.png', 'admin', '2020-12-04 15:13:58', 'admin', '2021-04-05 18:47:24', 0, NULL, NULL, 1, 523, NULL, NULL, NULL, NULL, 0, NULL); -INSERT INTO "public"."jimu_report" VALUES ('1338370016550195200', '20201214142804', '条形码报表', NULL, NULL, '984272091947253760', '{"loopBlockList":[],"area":false,"printElWidth":718,"excel_config_id":"1338370016550195200","printElHeight":1047,"rows":{"0":{"cells":{"1":{"merge":[1,3],"text":"居民身份证申领登记表","style":39},"2":{"style":39},"3":{"style":39},"4":{"style":39},"5":{"merge":[0,2],"text":"","rendered":"","display":"text"},"-1":{"text":"${tm.tp}"}},"height":27},"1":{"cells":{"1":{"style":39},"2":{"style":39},"3":{"style":39},"4":{"style":39},"5":{"style":2,"virtual":"ZiOFmILaRjdmVs6E","rendered":"NUsGZXpylLVeKQ7J","display":"barcode","text":"${tm.tm}","merge":[0,2]}},"height":52},"2":{"cells":{"1":{"text":"受理单位(盖章)珠海市公安局","merge":[0,3],"style":36},"2":{"style":36},"3":{"style":36},"4":{"style":36},"5":{"style":6},"6":{"style":6},"7":{"style":6},"8":{"text":"","rendered":""}},"height":34},"3":{"cells":{"1":{"text":"姓名","style":24},"2":{"text":"${tm.name}","style":7,"rendered":""},"3":{"text":"性别","style":16},"4":{"text":"${tm.sex}","style":7,"isDict":1,"dictCode":"sex1","rendered":""},"5":{"text":"民族","style":16},"6":{"text":"${tm.nation}","style":7},"7":{"text":"${tm.tp}","style":7,"merge":[2,0],"rendered":"ftkUSZOje4A5gVO3","display":"img"},"9":{"text":"","rendered":""}},"isDrag":true,"height":47},"4":{"cells":{"1":{"text":"出生日期","style":24},"2":{"text":"${tm.birth}","style":32,"merge":[0,4]},"3":{"style":33},"4":{"style":33},"5":{"style":33},"6":{"style":33},"8":{"text":"","rendered":""}},"isDrag":true,"height":51},"5":{"cells":{"1":{"text":"常住户口所在地住址","style":21},"2":{"text":"${tm.zhuzhi}","style":7,"merge":[0,4]},"8":{"text":"","rendered":""}},"isDrag":true,"height":62},"6":{"cells":{"1":{"text":"公民身份证","style":24},"2":{"text":"${tm.card}","style":7,"merge":[0,5]}},"isDrag":true,"height":55},"7":{"cells":{"1":{"text":"有限期限","style":24},"2":{"text":"${tm.ydate}","style":34,"merge":[0,1]},"3":{"style":35},"4":{"text":"签发机关","style":24},"5":{"text":"${tm.qfjg}","style":7,"merge":[0,2]}},"isDrag":true,"height":52},"8":{"cells":{"1":{"text":"申领原因","style":24},"2":{"text":"${tm.slyy}","style":7,"merge":[0,5]}},"isDrag":true,"height":55},"9":{"cells":{"1":{"text":"受理时间","style":24},"2":{"text":"${tm.sdate}","style":32,"merge":[0,1]},"3":{"style":33},"4":{"text":"受理号","style":24},"5":{"text":"${tm.shao}","style":7,"merge":[0,2]}},"isDrag":true,"height":49},"10":{"cells":{"1":{"text":"承办人","style":24},"2":{"text":"${tm.cbr}","style":7,"merge":[0,1]},"4":{"text":"受理单位领导","style":24},"5":{"text":"${tm.sld}","style":7,"merge":[0,2]}},"isDrag":true,"height":42},"11":{"cells":{"1":{"text":"申请(监护)人签名","style":21},"2":{"text":"${tm.sr}","style":7,"merge":[0,1]},"4":{"text":"申请(监护)人联系电话","style":21},"5":{"text":"${tm.jphone}","style":7,"merge":[0,2]}},"isDrag":true,"height":59},"12":{"cells":{"1":{"text":"领证人签名","style":24},"2":{"text":"${tm.lzr}","style":7,"merge":[0,1]},"4":{"text":"领证时间","style":24},"5":{"text":"${tm.ldate}","style":32,"merge":[0,2]},"6":{"style":33},"7":{"style":33}},"isDrag":true,"height":57},"13":{"cells":{"1":{"text":"是否通过邮政特快专递方式领取二代","merge":[0,1],"style":24},"2":{"text":" ","style":25},"3":{"text":"${tm.sk}","style":7,"merge":[0,4]}},"isDrag":true,"height":50},"14":{"cells":{"1":{"text":"投递地址","style":24},"2":{"text":"${tm.dizhi}","style":7,"merge":[0,2]},"5":{"text":"收件人","style":24},"6":{"style":7,"text":" ","merge":[0,1]}},"isDrag":true,"height":53},"15":{"cells":{"1":{"text":"邮政编码","style":24},"2":{"text":"","style":7,"merge":[0,1]},"4":{"text":"备注","style":24},"5":{"text":"","style":7,"merge":[0,2]}},"isDrag":true,"height":47},"16":{"cells":{"1":{"merge":[0,6],"text":"公安部治安管理局治","style":31},"2":{"style":31},"3":{"style":31},"4":{"style":31},"5":{"style":31},"6":{"style":31},"7":{"style":31}}},"len":100},"dbexps":[],"toolPrintSizeObj":{"printType":"A4","widthPx":718,"heightPx":1047},"dicts":["sex1","sex1","sex1"],"freeze":"A1","dataRectWidth":704,"background":false,"name":"sheet1","autofilter":{},"styles":[{"font":{"size":16}},{"font":{"size":16},"align":"center"},{"align":"center"},{"textwrap":true},{"border":{"bottom":["thin","#000"],"top":["thin","#000"],"left":["thin","#000"],"right":["thin","#000"]}},{"textwrap":true,"border":{"bottom":["thin","#000"],"top":["thin","#000"],"left":["thin","#000"],"right":["thin","#000"]}},{"font":{"name":"宋体"}},{"border":{"bottom":["thin","#000"],"top":["thin","#000"],"left":["thin","#000"],"right":["thin","#000"]},"font":{"name":"宋体"}},{"textwrap":true,"border":{"bottom":["thin","#000"],"top":["thin","#000"],"left":["thin","#000"],"right":["thin","#000"]},"font":{"name":"宋体"}},{"font":{"name":"宋体","size":9}},{"font":{"name":"宋体","size":9},"color":"#3f3f3f"},{"font":{"name":"宋体","size":9},"color":"#0c0c0c"},{"font":{"name":"宋体","size":9},"color":"#7f7f7f"},{"font":{"name":"宋体","size":9},"color":"#595959"},{"border":{"bottom":["thin","#000"],"top":["thin","#000"],"left":["thin","#000"],"right":["thin","#000"]},"font":{"name":"宋体"},"align":"right"},{"textwrap":true,"border":{"bottom":["thin","#000"],"top":["thin","#000"],"left":["thin","#000"],"right":["thin","#000"]},"font":{"name":"宋体"},"align":"center"},{"border":{"bottom":["thin","#000"],"top":["thin","#000"],"left":["thin","#000"],"right":["thin","#000"]},"font":{"name":"宋体","bold":true}},{"border":{"bottom":["thin","#000"],"top":["thin","#000"],"left":["thin","#000"],"right":["thin","#000"]},"font":{"name":"宋体","bold":false}},{"textwrap":true,"border":{"bottom":["thin","#000"],"top":["thin","#000"],"left":["thin","#000"],"right":["thin","#000"]},"font":{"name":"宋体","bold":false}},{"textwrap":true,"border":{"bottom":["thin","#000"],"top":["thin","#000"],"left":["thin","#000"],"right":["thin","#000"]},"font":{"name":"宋体","bold":false},"align":"center"},{"textwrap":true,"border":{"bottom":["thin","#000"],"top":["thin","#000"],"left":["thin","#000"],"right":["thin","#000"]},"font":{"name":"宋体","bold":true}},{"textwrap":true,"border":{"bottom":["thin","#000"],"top":["thin","#000"],"left":["thin","#000"],"right":["thin","#000"]},"font":{"name":"宋体","bold":true},"align":"center"},{"font":{"name":"宋体","bold":true}},{"border":{"bottom":["thin","#000"],"top":["thin","#000"],"left":["thin","#000"],"right":["thin","#000"]},"font":{"name":"宋体","bold":true},"align":"right"},{"border":{"bottom":["thin","#000"],"top":["thin","#000"],"left":["thin","#000"],"right":["thin","#000"]},"font":{"name":"宋体","bold":true},"align":"center"},{"font":{"name":"宋体","bold":true},"align":"center"},{"border":{"bottom":["thin","#000"],"top":["thin","#000"],"left":["thin","#000"],"right":["thin","#000"]},"font":{"name":"宋体"},"align":"center"},{"font":{"size":8}},{"font":{"size":8},"align":"center"},{"font":{"size":8},"align":"right"},{"font":{"size":10},"align":"right"},{"font":{"size":10},"align":"right","color":"#7f7f7f"},{"border":{"bottom":["thin","#000"],"top":["thin","#000"],"left":["thin","#000"],"right":["thin","#000"]},"font":{"name":"宋体"},"format":"date2"},{"format":"date2"},{"border":{"bottom":["thin","#000"],"top":["thin","#000"],"left":["thin","#000"],"right":["thin","#000"]},"font":{"name":"宋体"},"format":"date"},{"format":"date"},{"font":{"name":"宋体","size":9},"color":"#595959","valign":"bottom"},{"align":"center","font":{"bold":true}},{"align":"center","font":{"bold":true,"size":16}},{"align":"center","font":{"bold":true,"size":16},"valign":"bottom"}],"validations":[],"cols":{"0":{"width":16},"1":{"width":103},"2":{"width":156},"3":{"width":51},"4":{"width":96},"5":{"width":61},"6":{"width":106},"7":{"width":115},"8":{"width":135},"len":50},"merges":["B3:E3","B14:C14","C6:G6","C5:G5","C7:H7","C8:D8","F8:H8","C9:H9","D14:H14","C10:D10","F10:H10","C11:D11","F11:H11","C13:D13","C12:D12","F12:H12","F13:H13","C15:E15","G15:H15","F16:H16","C16:D16","B17:H17","H4:H6","B1:E2","F1:H1","F2:H2"]}', NULL, 'https://static.jeecg.com/designreport/images/未标题-1_1608118350039.png', 'admin', '2020-12-14 14:28:04', 'admin', '2021-02-03 13:58:47', 0, NULL, NULL, 1, 769, NULL, NULL, NULL, NULL, 0, NULL); -INSERT INTO "public"."jimu_report" VALUES ('1338744112815411200', '20201215151426', '简单条件查询报表', NULL, NULL, '984272091947253760', '{"loopBlockList":[],"area":false,"printElWidth":718,"excel_config_id":"1338744112815411200","printElHeight":1047,"rows":{"1":{"cells":{"1":{"text":"职务","style":51},"2":{"text":"雇员ID","style":51},"3":{"text":"姓名","style":51},"4":{"text":"性别","style":51},"5":{"text":"雇佣日期","style":51},"6":{"text":"家庭电话","style":51},"7":{"text":"出生日期","style":51},"8":{"text":"户口所在地","style":51},"9":{"text":"联系地址","style":51},"10":{"text":"紧急联系人","style":52}},"height":37},"2":{"cells":{"0":{"style":18},"1":{"style":21,"text":"#{jdcx.group(update_by)}","aggregate":"group"},"2":{"style":21,"text":"#{jdcx.id}"},"3":{"style":21,"text":"#{jdcx.name}"},"4":{"style":21,"text":"#{jdcx.sex}"},"5":{"style":24,"text":"#{jdcx.gtime}"},"6":{"style":21,"text":"#{jdcx.jphone}"},"7":{"style":24,"text":"#{jdcx.birth}"},"8":{"style":21,"text":"#{jdcx.hukou}"},"9":{"style":21,"text":"#{jdcx.laddress}"},"10":{"style":56,"text":"#{jdcx.jperson}"},"11":{"style":18},"12":{"style":18},"13":{"style":18},"14":{"style":18},"15":{"style":18},"16":{"style":18},"17":{"style":18},"18":{"style":18},"19":{"style":18},"20":{"style":18},"21":{"style":18},"22":{"style":18},"23":{"style":18},"24":{"style":18},"25":{"style":18},"26":{"style":18},"27":{"style":18},"28":{"style":18},"29":{"style":18},"30":{"style":18},"31":{"style":18},"32":{"style":18},"33":{"style":18},"34":{"style":18},"35":{"style":18},"36":{"style":18},"37":{"style":18},"38":{"style":18},"39":{"style":18},"40":{"style":18},"41":{"style":18},"42":{"style":18},"43":{"style":18},"44":{"style":18},"45":{"style":18},"46":{"style":18},"47":{"style":18},"48":{"style":18}},"height":34},"3":{"cells":{"0":{"style":39},"1":{"style":39},"2":{"style":39},"3":{"style":39},"4":{"style":39},"5":{"style":39},"6":{"style":39},"7":{"style":39},"8":{"style":39},"9":{"style":39},"10":{"style":39},"11":{"style":39},"12":{"style":39},"13":{"style":39},"14":{"style":39},"15":{"style":39},"16":{"style":39},"17":{"style":39},"18":{"style":39},"19":{"style":39},"20":{"style":39},"21":{"style":39},"22":{"style":39},"23":{"style":39},"24":{"style":39}}},"4":{"cells":{"1":{"text":"备注:","style":62},"2":{"style":63,"text":" "},"3":{"style":63,"text":" "},"4":{"style":63,"text":" "},"5":{"style":63,"text":" "},"6":{"style":63,"text":" "},"7":{"style":64,"text":" "}}},"5":{"cells":{"1":{"text":"1、支持模糊查询,需要输入 “*+字符串”或 “字符串+* ”或“*+字符串+*”,如:张* / *丽 / *亚*;","style":65,"merge":[0,6]}}},"6":{"cells":{"1":{"text":"2、以上“出生日期”为时间类型;","style":65,"merge":[0,6]}}},"7":{"cells":{"1":{"text":"3、以上“雇佣日期”为日期类型","style":65,"merge":[0,6]}}},"8":{"cells":{"1":{"text":"4、以上“姓名”为字符串类型,支持精准查询和模糊查询;","style":67,"merge":[0,6]}}},"len":100},"dbexps":[],"toolPrintSizeObj":{"printType":"A4","widthPx":718,"heightPx":1047},"dicts":[],"groupField":"jdcx.update_by","freeze":"A1","dataRectWidth":1242,"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","#bfbfbf"],"left":["thin","#bfbfbf"],"right":["thin","#bfbfbf"]},"bgcolor":"#f1f9f6","font":{"size":9},"align":"center"},{"border":{"bottom":["thin","#bfbfbf"],"top":["thin","#bfbfbf"],"left":["thin","#bfbfbf"],"right":["thin","#bfbfbf"]},"bgcolor":"#ddefe8","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"]},"bgcolor":"#ddefe8","font":{"size":9},"align":"left"},{"border":{"bottom":["thin","#bfbfbf"],"top":["thin","#bfbfbf"],"left":["thin","#bfbfbf"],"right":["thin","#bfbfbf"]},"font":{"size":9},"align":"left"},{"border":{"bottom":["thin","#bfbfbf"],"top":["thin","#bfbfbf"],"left":["thin","#bfbfbf"],"right":["thin","#bfbfbf"]},"font":{"size":9},"align":"center","format":"date"},{"align":"center","font":{"name":"宋体"}},{"bgcolor":"#02a274","color":"#ffffff","align":"center","border":{"bottom":["thin","#bfbfbf"],"top":["thin","#bfbfbf"],"left":["thin","#bfbfbf"],"right":["thin","#bfbfbf"]},"font":{"name":"宋体"}},{"font":{"size":9,"name":"宋体"},"align":"center"},{"border":{"bottom":["thin","#bfbfbf"],"top":["thin","#bfbfbf"],"left":["thin","#bfbfbf"],"right":["thin","#bfbfbf"]},"bgcolor":"#f1f9f6","font":{"size":9,"name":"宋体"},"align":"center"},{"border":{"bottom":["thin","#bfbfbf"],"top":["thin","#bfbfbf"],"left":["thin","#bfbfbf"],"right":["thin","#bfbfbf"]},"bgcolor":"#ddefe8","font":{"size":9,"name":"宋体"},"align":"center"},{"border":{"bottom":["thin","#bfbfbf"],"top":["thin","#bfbfbf"],"left":["thin","#bfbfbf"],"right":["thin","#bfbfbf"]},"font":{"size":9,"name":"宋体"},"align":"left"},{"border":{"bottom":["thin","#bfbfbf"],"top":["thin","#bfbfbf"],"left":["thin","#bfbfbf"],"right":["thin","#bfbfbf"]},"font":{"size":9,"name":"宋体"},"align":"center"},{"border":{"bottom":["thin","#bfbfbf"],"top":["thin","#bfbfbf"],"left":["thin","#bfbfbf"],"right":["thin","#bfbfbf"]},"font":{"size":9,"name":"宋体"},"align":"center","format":"date"},{"font":{"size":10,"name":"宋体"},"align":"center"},{"border":{"bottom":["thin","#bfbfbf"],"top":["thin","#bfbfbf"],"left":["thin","#bfbfbf"],"right":["thin","#bfbfbf"]},"bgcolor":"#f1f9f6","font":{"size":10,"name":"宋体"},"align":"center"},{"border":{"bottom":["thin","#bfbfbf"],"top":["thin","#bfbfbf"],"left":["thin","#bfbfbf"],"right":["thin","#bfbfbf"]},"bgcolor":"#ddefe8","font":{"size":10,"name":"宋体"},"align":"center"},{"border":{"bottom":["thin","#bfbfbf"],"top":["thin","#bfbfbf"],"left":["thin","#bfbfbf"],"right":["thin","#bfbfbf"]},"font":{"size":10,"name":"宋体"},"align":"left"},{"border":{"bottom":["thin","#bfbfbf"],"top":["thin","#bfbfbf"],"left":["thin","#bfbfbf"],"right":["thin","#bfbfbf"]},"font":{"size":10,"name":"宋体"},"align":"center"},{"border":{"bottom":["thin","#bfbfbf"],"top":["thin","#bfbfbf"],"left":["thin","#bfbfbf"],"right":["thin","#bfbfbf"]},"font":{"size":10,"name":"宋体"},"align":"center","format":"date"},{"font":{"name":"Microsoft YaHei"}},{"align":"center","font":{"name":"Microsoft YaHei"}},{"bgcolor":"#02a274","color":"#ffffff","align":"center","border":{"bottom":["thin","#bfbfbf"],"top":["thin","#bfbfbf"],"left":["thin","#bfbfbf"],"right":["thin","#bfbfbf"]},"font":{"name":"Microsoft YaHei"}},{"font":{"size":9,"name":"Microsoft YaHei"},"align":"center"},{"border":{"bottom":["thin","#bfbfbf"],"top":["thin","#bfbfbf"],"left":["thin","#bfbfbf"],"right":["thin","#bfbfbf"]},"bgcolor":"#f1f9f6","font":{"size":9,"name":"Microsoft YaHei"},"align":"center"},{"border":{"bottom":["thin","#bfbfbf"],"top":["thin","#bfbfbf"],"left":["thin","#bfbfbf"],"right":["thin","#bfbfbf"]},"bgcolor":"#ddefe8","font":{"size":9,"name":"Microsoft YaHei"},"align":"center"},{"border":{"bottom":["thin","#bfbfbf"],"top":["thin","#bfbfbf"],"left":["thin","#bfbfbf"],"right":["thin","#bfbfbf"]},"font":{"size":9,"name":"Microsoft YaHei"},"align":"left"},{"border":{"bottom":["thin","#bfbfbf"],"top":["thin","#bfbfbf"],"left":["thin","#bfbfbf"],"right":["thin","#bfbfbf"]},"font":{"size":9,"name":"Microsoft YaHei"},"align":"center"},{"border":{"bottom":["thin","#bfbfbf"],"top":["thin","#bfbfbf"],"left":["thin","#bfbfbf"],"right":["thin","#bfbfbf"]},"font":{"size":9,"name":"Microsoft YaHei"},"align":"center","format":"date"},{"border":{"bottom":["thin","#bfbfbf"],"top":["thin","#bfbfbf"],"left":["thin","#bfbfbf"],"right":["thin","#bfbfbf"]},"font":{"size":9,"name":"Microsoft YaHei"},"align":"center","format":"date2"},{"border":{"bottom":["thin","#bfbfbf"],"top":["thin","#bfbfbf"],"left":["thin","#bfbfbf"],"right":["thin","#bfbfbf"]},"font":{"size":9,"name":"Microsoft YaHei"},"align":"center","format":"normal"},{"align":"center","bgcolor":"#5b9cd6"},{"bgcolor":"#5b9cd6","color":"#ffffff","align":"center","border":{"bottom":["thin","#bfbfbf"],"top":["thin","#bfbfbf"],"left":["thin","#bfbfbf"],"right":["thin","#bfbfbf"]}},{"bgcolor":"#5b9cd6","color":"#ffffff","align":"center","border":{"top":["thin","#bfbfbf"],"left":["thin","#bfbfbf"],"right":["thin","#bfbfbf"]}},{"border":{"bottom":["thin","#bfbfbf"],"left":["thin","#bfbfbf"],"right":["thin","#bfbfbf"]}},{"border":{"bottom":["thin","#bfbfbf"],"top":["thin","#bfbfbf"],"left":["thin","#bfbfbf"],"right":["thin","#bfbfbf"]},"align":"center"},{"border":{"bottom":["thin","#bfbfbf"],"left":["thin","#bfbfbf"],"right":["thin","#bfbfbf"]},"align":"center"},{"border":{"bottom":["thin","#bfbfbf"],"left":["thin","#bfbfbf"],"right":["thin","#bfbfbf"]},"align":"center","font":{"size":9}},{"border":{"top":["thin","#000100"],"left":["thin","#000100"]}},{"border":{"top":["thin","#000100"]}},{"border":{"top":["thin","#000100"],"right":["thin","#000100"]}},{"border":{"left":["thin","#000100"],"right":["thin","#000100"]}},{"border":{"bottom":["thin","#000100"],"left":["thin","#000100"],"right":["thin","#000100"]}},{"border":{"top":["thin","#000100"],"left":["thin","#000100"]},"font":{"name":"宋体"}},{"border":{"top":["thin","#000100"]},"font":{"name":"宋体"}},{"border":{"top":["thin","#000100"],"right":["thin","#000100"]},"font":{"name":"宋体"}},{"border":{"left":["thin","#000100"],"right":["thin","#000100"]},"font":{"name":"宋体"}},{"font":{"name":"宋体"}},{"border":{"bottom":["thin","#000100"],"left":["thin","#000100"],"right":["thin","#000100"]},"font":{"name":"宋体"}},{"border":{"bottom":["thin","#bfbfbf"],"top":["thin","#bfbfbf"],"left":["thin","#bfbfbf"],"right":["thin","#bfbfbf"]},"font":{"size":9},"align":"center","format":"number"}],"validations":[],"isGroup":true,"cols":{"0":{"width":40},"1":{"width":88},"2":{"width":86},"3":{"width":97},"4":{"width":67},"5":{"width":103},"6":{"width":115},"7":{"width":90},"8":{"width":239},"9":{"width":217},"len":50},"merges":["B6:H6","B7:H7","B8:H8","B9:H9"]}', NULL, 'https://static.jeecg.com/designreport/images/QQ截图20201216112919_1608089379396.png', 'admin', '2020-12-15 15:14:27', 'admin', '2021-02-03 13:58:44', 0, NULL, NULL, 1, 1075, NULL, NULL, NULL, NULL, 0, NULL); -INSERT INTO "public"."jimu_report" VALUES ('1338769064067076098', '202012151514266124', '多选条件查询报表', NULL, NULL, '984272091947253760', '{"loopBlockList":[],"area":false,"printElWidth":718,"excel_config_id":"1338769064067076098","printElHeight":1047,"rows":{"0":{"cells":{"0":{"style":49},"1":{"style":49},"2":{"style":49},"3":{"style":49},"4":{"style":49},"5":{"style":49},"6":{"style":49},"7":{"style":49},"8":{"style":49},"9":{"style":49},"10":{"style":49},"11":{"style":49},"12":{"style":49},"13":{"style":49},"14":{"style":49},"15":{"style":49},"16":{"style":49},"17":{"style":49},"18":{"style":49},"19":{"style":49},"20":{"style":49},"21":{"style":49},"22":{"style":49},"23":{"style":49},"24":{"style":49},"25":{"style":49}}},"1":{"cells":{"0":{"style":50},"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":50},"12":{"style":50},"13":{"style":50},"14":{"style":50},"15":{"style":50},"16":{"style":50},"17":{"style":50},"18":{"style":50},"19":{"style":50},"20":{"style":50},"21":{"style":50},"22":{"style":50},"23":{"style":50},"24":{"style":50},"25":{"style":50}},"height":46},"2":{"cells":{"0":{"style":52},"1":{"text":"#{pop.group(update_by)}","style":53,"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":52},"12":{"style":52},"13":{"style":52},"14":{"style":52},"15":{"style":52},"16":{"style":52},"17":{"style":52},"18":{"style":52},"19":{"style":52},"20":{"style":52},"21":{"style":52},"22":{"style":52},"23":{"style":52},"24":{"style":52},"25":{"style":52}},"isDrag":true,"height":35},"5":{"cells":{"2":{"text":""}},"isDrag":true},"len":99},"dbexps":[],"toolPrintSizeObj":{"printType":"A4","widthPx":718,"heightPx":1047},"dicts":[],"groupField":"pop.update_by","freeze":"A1","dataRectWidth":1494,"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","#bfbfbf"],"left":["thin","#bfbfbf"],"right":["thin","#bfbfbf"]},"bgcolor":"#f1f9f6","font":{"size":9},"align":"center"},{"border":{"bottom":["thin","#bfbfbf"],"top":["thin","#bfbfbf"],"left":["thin","#bfbfbf"],"right":["thin","#bfbfbf"]},"bgcolor":"#ddefe8","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"]},"bgcolor":"#ddefe8","font":{"size":9},"align":"left"},{"border":{"bottom":["thin","#bfbfbf"],"top":["thin","#bfbfbf"],"left":["thin","#bfbfbf"],"right":["thin","#bfbfbf"]},"font":{"size":9},"align":"left"},{"border":{"bottom":["thin","#bfbfbf"],"top":["thin","#bfbfbf"],"left":["thin","#bfbfbf"],"right":["thin","#bfbfbf"]},"font":{"size":9},"align":"center","format":"date"},{"align":"center","font":{"name":"宋体"}},{"bgcolor":"#02a274","color":"#ffffff","align":"center","border":{"bottom":["thin","#bfbfbf"],"top":["thin","#bfbfbf"],"left":["thin","#bfbfbf"],"right":["thin","#bfbfbf"]},"font":{"name":"宋体"}},{"font":{"size":9,"name":"宋体"},"align":"center"},{"border":{"bottom":["thin","#bfbfbf"],"top":["thin","#bfbfbf"],"left":["thin","#bfbfbf"],"right":["thin","#bfbfbf"]},"bgcolor":"#f1f9f6","font":{"size":9,"name":"宋体"},"align":"center"},{"border":{"bottom":["thin","#bfbfbf"],"top":["thin","#bfbfbf"],"left":["thin","#bfbfbf"],"right":["thin","#bfbfbf"]},"bgcolor":"#ddefe8","font":{"size":9,"name":"宋体"},"align":"center"},{"border":{"bottom":["thin","#bfbfbf"],"top":["thin","#bfbfbf"],"left":["thin","#bfbfbf"],"right":["thin","#bfbfbf"]},"font":{"size":9,"name":"宋体"},"align":"left"},{"border":{"bottom":["thin","#bfbfbf"],"top":["thin","#bfbfbf"],"left":["thin","#bfbfbf"],"right":["thin","#bfbfbf"]},"font":{"size":9,"name":"宋体"},"align":"center"},{"border":{"bottom":["thin","#bfbfbf"],"top":["thin","#bfbfbf"],"left":["thin","#bfbfbf"],"right":["thin","#bfbfbf"]},"font":{"size":9,"name":"宋体"},"align":"center","format":"date"},{"font":{"size":10,"name":"宋体"},"align":"center"},{"border":{"bottom":["thin","#bfbfbf"],"top":["thin","#bfbfbf"],"left":["thin","#bfbfbf"],"right":["thin","#bfbfbf"]},"bgcolor":"#f1f9f6","font":{"size":10,"name":"宋体"},"align":"center"},{"border":{"bottom":["thin","#bfbfbf"],"top":["thin","#bfbfbf"],"left":["thin","#bfbfbf"],"right":["thin","#bfbfbf"]},"bgcolor":"#ddefe8","font":{"size":10,"name":"宋体"},"align":"center"},{"border":{"bottom":["thin","#bfbfbf"],"top":["thin","#bfbfbf"],"left":["thin","#bfbfbf"],"right":["thin","#bfbfbf"]},"font":{"size":10,"name":"宋体"},"align":"left"},{"border":{"bottom":["thin","#bfbfbf"],"top":["thin","#bfbfbf"],"left":["thin","#bfbfbf"],"right":["thin","#bfbfbf"]},"font":{"size":10,"name":"宋体"},"align":"center"},{"border":{"bottom":["thin","#bfbfbf"],"top":["thin","#bfbfbf"],"left":["thin","#bfbfbf"],"right":["thin","#bfbfbf"]},"font":{"size":10,"name":"宋体"},"align":"center","format":"date"},{"bgcolor":"#5b9cd6","color":"#ffffff","align":"center","border":{"bottom":["thin","#bfbfbf"],"top":["thin","#bfbfbf"],"left":["thin","#bfbfbf"],"right":["thin","#bfbfbf"]},"font":{"name":"宋体"}},{"border":{"bottom":["thin","#bfbfbf"],"top":["thin","#bfbfbf"],"left":["thin","#bfbfbf"],"right":["thin","#bfbfbf"]},"bgcolor":"#9cc2e6","font":{"size":10,"name":"宋体"},"align":"center"},{"border":{"bottom":["thin","#bfbfbf"],"top":["thin","#bfbfbf"],"left":["thin","#bfbfbf"],"right":["thin","#bfbfbf"]},"bgcolor":"#bdd7ee","font":{"size":10,"name":"宋体"},"align":"center"},{"border":{"bottom":["thin","#bfbfbf"],"top":["thin","#bfbfbf"],"left":["thin","#bfbfbf"],"right":["thin","#bfbfbf"]},"bgcolor":"#deeaf6","font":{"size":10,"name":"宋体"},"align":"center"},{"border":{"bottom":["thin","#bfbfbf"],"top":["thin","#bfbfbf"],"left":["thin","#bfbfbf"],"right":["thin","#bfbfbf"]},"bgcolor":"#ffffff","font":{"size":10,"name":"宋体"},"align":"center"},{"border":{"bottom":["thin","#bfbfbf"],"top":["thin","#bfbfbf"],"left":["thin","#bfbfbf"],"right":["thin","#bfbfbf"]},"font":{"size":10,"name":"宋体"},"align":"center","format":"normal"},{"border":{"bottom":["thin","#bfbfbf"],"top":["thin","#bfbfbf"],"left":["thin","#bfbfbf"],"right":["thin","#bfbfbf"]},"bgcolor":"#deeaf6","font":{"size":9,"name":"宋体"},"align":"center"},{"border":{"bottom":["thin","#bfbfbf"],"top":["thin","#bfbfbf"],"left":["thin","#bfbfbf"],"right":["thin","#bfbfbf"]},"bgcolor":"#bdd7ee","font":{"size":9,"name":"宋体"},"align":"center"},{"border":{"bottom":["thin","#bfbfbf"],"top":["thin","#bfbfbf"],"left":["thin","#bfbfbf"],"right":["thin","#bfbfbf"]},"bgcolor":"#ffffff","font":{"size":9,"name":"宋体"},"align":"center"},{"border":{"bottom":["thin","#bfbfbf"],"top":["thin","#bfbfbf"],"left":["thin","#bfbfbf"],"right":["thin","#bfbfbf"]},"font":{"size":9,"name":"宋体"},"align":"center","format":"normal"},{"font":{"name":"Microsoft YaHei"}},{"align":"center","font":{"name":"Microsoft YaHei"}},{"bgcolor":"#5b9cd6","color":"#ffffff","align":"center","border":{"bottom":["thin","#bfbfbf"],"top":["thin","#bfbfbf"],"left":["thin","#bfbfbf"],"right":["thin","#bfbfbf"]},"font":{"name":"Microsoft YaHei"}},{"font":{"size":9,"name":"Microsoft YaHei"},"align":"center"},{"border":{"bottom":["thin","#bfbfbf"],"top":["thin","#bfbfbf"],"left":["thin","#bfbfbf"],"right":["thin","#bfbfbf"]},"bgcolor":"#deeaf6","font":{"size":9,"name":"Microsoft YaHei"},"align":"center"},{"border":{"bottom":["thin","#bfbfbf"],"top":["thin","#bfbfbf"],"left":["thin","#bfbfbf"],"right":["thin","#bfbfbf"]},"bgcolor":"#bdd7ee","font":{"size":9,"name":"Microsoft YaHei"},"align":"center"},{"border":{"bottom":["thin","#bfbfbf"],"top":["thin","#bfbfbf"],"left":["thin","#bfbfbf"],"right":["thin","#bfbfbf"]},"bgcolor":"#ffffff","font":{"size":9,"name":"Microsoft YaHei"},"align":"center"},{"border":{"bottom":["thin","#bfbfbf"],"top":["thin","#bfbfbf"],"left":["thin","#bfbfbf"],"right":["thin","#bfbfbf"]},"font":{"size":9,"name":"Microsoft YaHei"},"align":"center","format":"date"},{"border":{"bottom":["thin","#bfbfbf"],"top":["thin","#bfbfbf"],"left":["thin","#bfbfbf"],"right":["thin","#bfbfbf"]},"font":{"size":9,"name":"Microsoft YaHei"},"align":"center","format":"normal"},{"border":{"bottom":["thin","#bfbfbf"],"top":["thin","#bfbfbf"],"left":["thin","#bfbfbf"],"right":["thin","#bfbfbf"]},"font":{"size":9,"name":"Microsoft YaHei"},"align":"center"},{"border":{"bottom":["thin","#bfbfbf"],"top":["thin","#bfbfbf"],"left":["thin","#bfbfbf"],"right":["thin","#bfbfbf"]},"font":{"size":9,"name":"Microsoft YaHei"},"align":"center","format":"date2"}],"validations":[],"isGroup":true,"cols":{"0":{"width":48},"1":{"width":107},"3":{"width":91},"4":{"width":142},"5":{"width":130},"6":{"width":131},"7":{"width":235},"8":{"width":230},"9":{"width":148},"10":{"width":132},"len":50},"merges":[]}', NULL, 'https://static.jeecg.com/designreport/images/QQ截图20201216185224_1608116008543.png', 'admin', '2020-12-15 16:53:13', 'admin', '2021-02-03 13:58:41', 0, NULL, NULL, 1, 907, NULL, NULL, NULL, NULL, 0, NULL); -INSERT INTO "public"."jimu_report" VALUES ('1347373863746539520', '20210108104603', '实习证明', NULL, NULL, '984302991393210368', '{"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', 'admin', '2021-04-05 18:47:08', 0, NULL, NULL, 1, 126, NULL, NULL, NULL, NULL, 0, NULL); -INSERT INTO "public"."jimu_report" VALUES ('7c02c224a2db56d0350069650033f702', '895666', '核查评估表', '', NULL, '984302991393210368', '{"loopBlockList":[],"area":{"sri":5,"sci":18,"eri":5,"eci":18,"width":53,"height":46},"printElWidth":1399,"excel_config_id":"7c02c224a2db56d0350069650033f702","printElHeight":790,"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,"text":"增发补助"},"17":{"style":408,"text":"合计补助"},"18":{"style":411,"text":" "},"19":{"style":408,"text":"收入超标"},"20":{"style":406,"text":"机动车超标"},"21":{"style":410,"text":"死亡"},"22":{"style":410,"text":"其他"}},"height":50},"5":{"cells":{"1":{"text":"#{hecha.name}","style":414,"rendered":""},"2":{"text":"#{hecha.hname}","style":414},"3":{"text":"#{hecha.num}","style":414},"4":{"text":"#{hecha.knum}","style":414},"5":{"text":"#{hecha.zhuzhi}","style":414},"6":{"text":"#{hecha.phone}","style":414},"7":{"text":"#{hecha.scard}","style":414},"8":{"text":"#{hecha.yhnum}","style":414},"9":{"text":"#{hecha.yren}","style":414},"10":{"text":"#{hecha.yjine}","style":414},"11":{"text":"#{hecha.yjine}","style":414},"12":{"text":"#{hecha.type}","style":414},"13":{"text":"#{hecha.rk}","style":414},"14":{"text":"#{hecha.cbz}","style":414},"15":{"text":"#{hecha.cbz}","style":414},"16":{"text":"#{hecha.cbz}","style":414},"17":{"text":"#{hecha.cbz}","style":414},"18":{"text":"#{hecha.sf1}","style":414},"19":{"text":"#{hecha.sf2}","style":414},"20":{"text":"#{hecha.sf3}","style":414},"21":{"text":"#{hecha.sf4}","style":414},"22":{"text":"#{hecha.bz}","style":414}},"isDrag":true,"height":46},"6":{"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":46},"7":{"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":46},"8":{"cells":{"1":{"text":""},"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}},"isDrag":true},"len":102},"dbexps":[],"toolPrintSizeObj":{"printType":"A4","widthPx":794,"heightPx":1047},"dicts":[],"freeze":"A1","dataRectWidth":1378,"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"]},"textwrap":true},{"textwrap":true},{"border":{"bottom":["thin","#000"],"top":["thin","#000"],"left":["thin","#000"],"right":["thin","#000"]},"textwrap":false},{"textwrap":false},{"border":{"bottom":["thin","#000"],"top":["thin","#000"],"left":["thin","#000"],"right":["thin","#000"]},"textwrap":true,"align":"center"},{"textwrap":true,"align":"center"},{"border":{"bottom":["thin","#000"],"top":["thin","#000"],"left":["thin","#000"],"right":["thin","#000"]},"align":"center"},{"align":"center"},{"border":{"bottom":["thin","#000"],"top":["thin","#000"],"left":["thin","#000"],"right":["thin","#000"]},"textwrap":true,"align":"center","valign":"middle"},{"textwrap":true,"align":"center","valign":"middle"},{"border":{"bottom":["thin","#000"],"top":["thin","#000"],"left":["thin","#000"],"right":["thin","#000"]},"textwrap":true,"valign":"middle"},{"textwrap":true,"valign":"middle"},{"border":{"bottom":["thin","#000"],"top":["thin","#000"],"left":["thin","#000"],"right":["thin","#000"]},"textwrap":false,"valign":"middle"},{"textwrap":false,"valign":"middle"},{"border":{"bottom":["thin","#000"],"top":["thin","#000"],"left":["thin","#000"],"right":["thin","#000"]},"textwrap":true,"align":"center","valign":"bottom"},{"textwrap":true,"align":"center","valign":"bottom"},{"border":{"bottom":["thin","#000"],"top":["thin","#000"],"left":["thin","#000"],"right":["thin","#000"]},"textwrap":true,"align":"center","valign":"top"},{"textwrap":true,"align":"center","valign":"top"},{"border":{"bottom":["thin","#000"],"top":["thin","#000"],"left":["thin","#000"],"right":["thin","#000"]},"textwrap":true,"valign":"bottom"},{"textwrap":true,"valign":"bottom"},{"border":{"bottom":["thin","#000"],"top":["thin","#000"],"left":["thin","#000"],"right":["thin","#000"]},"textwrap":true,"valign":"top"},{"border":{"bottom":["medium","#000"]}},{"border":{"bottom":["thin","#000"]}},{"align":"center","font":{"size":18}},{"align":"center","font":{"size":16}},{"align":"center","font":{"size":16,"bold":true}},{"align":"center","font":{"size":16,"bold":true,"name":"Helvetica"}},{"border":{"bottom":["thin","#000"]},"font":{"name":"Helvetica"}},{"font":{"name":"Helvetica"}},{"border":{"bottom":["thin","#000"],"top":["thin","#000"],"left":["thin","#000"],"right":["thin","#000"]},"textwrap":true,"font":{"name":"Helvetica"}},{"border":{"bottom":["thin","#000"],"top":["thin","#000"],"left":["thin","#000"],"right":["thin","#000"]},"textwrap":true,"align":"center","font":{"name":"Helvetica"}},{"border":{"bottom":["thin","#000"],"top":["thin","#000"],"left":["thin","#000"],"right":["thin","#000"]},"align":"center","font":{"name":"Helvetica"}},{"border":{"bottom":["thin","#000"],"top":["thin","#000"],"left":["thin","#000"],"right":["thin","#000"]},"textwrap":true,"align":"center","valign":"middle","font":{"name":"Helvetica"}},{"align":"center","font":{"name":"Helvetica"}},{"border":{"bottom":["thin","#000"],"top":["thin","#000"],"left":["thin","#000"],"right":["thin","#000"]},"textwrap":true,"align":"center","valign":"top","font":{"name":"Helvetica"}},{"border":{"bottom":["thin","#000"],"top":["thin","#000"],"left":["thin","#000"],"right":["thin","#000"]},"font":{"name":"Helvetica"}},{"border":{"bottom":["thin","#000"],"top":["thin","#000"],"left":["thin","#000"],"right":["thin","#000"]},"textwrap":true,"align":"center","valign":"bottom","font":{"name":"Helvetica"}},{"textwrap":true,"font":{"name":"Helvetica"}},{"textwrap":true,"align":"center","font":{"name":"Helvetica"}},{"textwrap":true,"align":"center","valign":"middle","font":{"name":"Helvetica"}},{"textwrap":true,"align":"center","valign":"top","font":{"name":"Helvetica"}},{"border":{"bottom":["thin","#000"],"top":["thin","#000"],"left":["thin","#000"],"right":["thin","#000"]},"textwrap":true,"valign":"bottom","font":{"name":"Helvetica"}},{"textwrap":true,"align":"center","valign":"bottom","font":{"name":"Helvetica"}},{"align":"center","font":{"size":16,"bold":true,"name":"Source Sans Pro"}},{"border":{"bottom":["thin","#000"]},"font":{"name":"Source Sans Pro"}},{"font":{"name":"Source Sans Pro"}},{"border":{"bottom":["thin","#000"],"top":["thin","#000"],"left":["thin","#000"],"right":["thin","#000"]},"textwrap":true,"font":{"name":"Source Sans Pro"}},{"border":{"bottom":["thin","#000"],"top":["thin","#000"],"left":["thin","#000"],"right":["thin","#000"]},"textwrap":true,"align":"center","font":{"name":"Source Sans Pro"}},{"border":{"bottom":["thin","#000"],"top":["thin","#000"],"left":["thin","#000"],"right":["thin","#000"]},"align":"center","font":{"name":"Source Sans Pro"}},{"border":{"bottom":["thin","#000"],"top":["thin","#000"],"left":["thin","#000"],"right":["thin","#000"]},"textwrap":true,"align":"center","valign":"middle","font":{"name":"Source Sans Pro"}},{"align":"center","font":{"name":"Source Sans Pro"}},{"border":{"bottom":["thin","#000"],"top":["thin","#000"],"left":["thin","#000"],"right":["thin","#000"]},"textwrap":true,"align":"center","valign":"top","font":{"name":"Source Sans Pro"}},{"border":{"bottom":["thin","#000"],"top":["thin","#000"],"left":["thin","#000"],"right":["thin","#000"]},"font":{"name":"Source Sans Pro"}},{"border":{"bottom":["thin","#000"],"top":["thin","#000"],"left":["thin","#000"],"right":["thin","#000"]},"textwrap":true,"align":"center","valign":"bottom","font":{"name":"Source Sans Pro"}},{"textwrap":true,"font":{"name":"Source Sans Pro"}},{"textwrap":true,"align":"center","font":{"name":"Source Sans Pro"}},{"textwrap":true,"align":"center","valign":"middle","font":{"name":"Source Sans Pro"}},{"textwrap":true,"align":"center","valign":"top","font":{"name":"Source Sans Pro"}},{"border":{"bottom":["thin","#000"],"top":["thin","#000"],"left":["thin","#000"],"right":["thin","#000"]},"textwrap":true,"valign":"bottom","font":{"name":"Source Sans Pro"}},{"textwrap":true,"align":"center","valign":"bottom","font":{"name":"Source Sans Pro"}},{"align":"center","font":{"size":16,"bold":true,"name":"Comic Sans MS"}},{"border":{"bottom":["thin","#000"]},"font":{"name":"Comic Sans MS"}},{"font":{"name":"Comic Sans MS"}},{"border":{"bottom":["thin","#000"],"top":["thin","#000"],"left":["thin","#000"],"right":["thin","#000"]},"textwrap":true,"font":{"name":"Comic Sans MS"}},{"border":{"bottom":["thin","#000"],"top":["thin","#000"],"left":["thin","#000"],"right":["thin","#000"]},"textwrap":true,"align":"center","font":{"name":"Comic Sans MS"}},{"border":{"bottom":["thin","#000"],"top":["thin","#000"],"left":["thin","#000"],"right":["thin","#000"]},"align":"center","font":{"name":"Comic Sans MS"}},{"border":{"bottom":["thin","#000"],"top":["thin","#000"],"left":["thin","#000"],"right":["thin","#000"]},"textwrap":true,"align":"center","valign":"middle","font":{"name":"Comic Sans MS"}},{"align":"center","font":{"name":"Comic Sans MS"}},{"border":{"bottom":["thin","#000"],"top":["thin","#000"],"left":["thin","#000"],"right":["thin","#000"]},"textwrap":true,"align":"center","valign":"top","font":{"name":"Comic Sans MS"}},{"border":{"bottom":["thin","#000"],"top":["thin","#000"],"left":["thin","#000"],"right":["thin","#000"]},"font":{"name":"Comic Sans MS"}},{"border":{"bottom":["thin","#000"],"top":["thin","#000"],"left":["thin","#000"],"right":["thin","#000"]},"textwrap":true,"align":"center","valign":"bottom","font":{"name":"Comic Sans MS"}},{"textwrap":true,"font":{"name":"Comic Sans MS"}},{"textwrap":true,"align":"center","font":{"name":"Comic Sans MS"}},{"textwrap":true,"align":"center","valign":"middle","font":{"name":"Comic Sans MS"}},{"textwrap":true,"align":"center","valign":"top","font":{"name":"Comic Sans MS"}},{"border":{"bottom":["thin","#000"],"top":["thin","#000"],"left":["thin","#000"],"right":["thin","#000"]},"textwrap":true,"valign":"bottom","font":{"name":"Comic Sans MS"}},{"textwrap":true,"align":"center","valign":"bottom","font":{"name":"Comic Sans MS"}},{"align":"center","font":{"size":16,"bold":true,"name":"Courier New"}},{"border":{"bottom":["thin","#000"]},"font":{"name":"Courier New"}},{"font":{"name":"Courier New"}},{"border":{"bottom":["thin","#000"],"top":["thin","#000"],"left":["thin","#000"],"right":["thin","#000"]},"textwrap":true,"font":{"name":"Courier New"}},{"border":{"bottom":["thin","#000"],"top":["thin","#000"],"left":["thin","#000"],"right":["thin","#000"]},"textwrap":true,"align":"center","font":{"name":"Courier New"}},{"border":{"bottom":["thin","#000"],"top":["thin","#000"],"left":["thin","#000"],"right":["thin","#000"]},"align":"center","font":{"name":"Courier New"}},{"border":{"bottom":["thin","#000"],"top":["thin","#000"],"left":["thin","#000"],"right":["thin","#000"]},"textwrap":true,"align":"center","valign":"middle","font":{"name":"Courier New"}},{"align":"center","font":{"name":"Courier New"}},{"border":{"bottom":["thin","#000"],"top":["thin","#000"],"left":["thin","#000"],"right":["thin","#000"]},"textwrap":true,"align":"center","valign":"top","font":{"name":"Courier New"}},{"border":{"bottom":["thin","#000"],"top":["thin","#000"],"left":["thin","#000"],"right":["thin","#000"]},"font":{"name":"Courier New"}},{"border":{"bottom":["thin","#000"],"top":["thin","#000"],"left":["thin","#000"],"right":["thin","#000"]},"textwrap":true,"align":"center","valign":"bottom","font":{"name":"Courier New"}},{"textwrap":true,"font":{"name":"Courier New"}},{"textwrap":true,"align":"center","font":{"name":"Courier New"}},{"textwrap":true,"align":"center","valign":"middle","font":{"name":"Courier New"}},{"textwrap":true,"align":"center","valign":"top","font":{"name":"Courier New"}},{"border":{"bottom":["thin","#000"],"top":["thin","#000"],"left":["thin","#000"],"right":["thin","#000"]},"textwrap":true,"valign":"bottom","font":{"name":"Courier New"}},{"textwrap":true,"align":"center","valign":"bottom","font":{"name":"Courier New"}},{"align":"center","font":{"size":16,"bold":true,"name":"Verdana"}},{"border":{"bottom":["thin","#000"]},"font":{"name":"Verdana"}},{"font":{"name":"Verdana"}},{"border":{"bottom":["thin","#000"],"top":["thin","#000"],"left":["thin","#000"],"right":["thin","#000"]},"textwrap":true,"font":{"name":"Verdana"}},{"border":{"bottom":["thin","#000"],"top":["thin","#000"],"left":["thin","#000"],"right":["thin","#000"]},"textwrap":true,"align":"center","font":{"name":"Verdana"}},{"border":{"bottom":["thin","#000"],"top":["thin","#000"],"left":["thin","#000"],"right":["thin","#000"]},"align":"center","font":{"name":"Verdana"}},{"border":{"bottom":["thin","#000"],"top":["thin","#000"],"left":["thin","#000"],"right":["thin","#000"]},"textwrap":true,"align":"center","valign":"middle","font":{"name":"Verdana"}},{"align":"center","font":{"name":"Verdana"}},{"border":{"bottom":["thin","#000"],"top":["thin","#000"],"left":["thin","#000"],"right":["thin","#000"]},"textwrap":true,"align":"center","valign":"top","font":{"name":"Verdana"}},{"border":{"bottom":["thin","#000"],"top":["thin","#000"],"left":["thin","#000"],"right":["thin","#000"]},"font":{"name":"Verdana"}},{"border":{"bottom":["thin","#000"],"top":["thin","#000"],"left":["thin","#000"],"right":["thin","#000"]},"textwrap":true,"align":"center","valign":"bottom","font":{"name":"Verdana"}},{"textwrap":true,"font":{"name":"Verdana"}},{"textwrap":true,"align":"center","font":{"name":"Verdana"}},{"textwrap":true,"align":"center","valign":"middle","font":{"name":"Verdana"}},{"textwrap":true,"align":"center","valign":"top","font":{"name":"Verdana"}},{"border":{"bottom":["thin","#000"],"top":["thin","#000"],"left":["thin","#000"],"right":["thin","#000"]},"textwrap":true,"valign":"bottom","font":{"name":"Verdana"}},{"textwrap":true,"align":"center","valign":"bottom","font":{"name":"Verdana"}},{"align":"center","font":{"size":16,"bold":true,"name":"Lato"}},{"border":{"bottom":["thin","#000"]},"font":{"name":"Lato"}},{"font":{"name":"Lato"}},{"border":{"bottom":["thin","#000"],"top":["thin","#000"],"left":["thin","#000"],"right":["thin","#000"]},"textwrap":true,"font":{"name":"Lato"}},{"border":{"bottom":["thin","#000"],"top":["thin","#000"],"left":["thin","#000"],"right":["thin","#000"]},"textwrap":true,"align":"center","font":{"name":"Lato"}},{"border":{"bottom":["thin","#000"],"top":["thin","#000"],"left":["thin","#000"],"right":["thin","#000"]},"align":"center","font":{"name":"Lato"}},{"border":{"bottom":["thin","#000"],"top":["thin","#000"],"left":["thin","#000"],"right":["thin","#000"]},"textwrap":true,"align":"center","valign":"middle","font":{"name":"Lato"}},{"align":"center","font":{"name":"Lato"}},{"border":{"bottom":["thin","#000"],"top":["thin","#000"],"left":["thin","#000"],"right":["thin","#000"]},"textwrap":true,"align":"center","valign":"top","font":{"name":"Lato"}},{"border":{"bottom":["thin","#000"],"top":["thin","#000"],"left":["thin","#000"],"right":["thin","#000"]},"font":{"name":"Lato"}},{"border":{"bottom":["thin","#000"],"top":["thin","#000"],"left":["thin","#000"],"right":["thin","#000"]},"textwrap":true,"align":"center","valign":"bottom","font":{"name":"Lato"}},{"textwrap":true,"font":{"name":"Lato"}},{"textwrap":true,"align":"center","font":{"name":"Lato"}},{"textwrap":true,"align":"center","valign":"middle","font":{"name":"Lato"}},{"textwrap":true,"align":"center","valign":"top","font":{"name":"Lato"}},{"border":{"bottom":["thin","#000"],"top":["thin","#000"],"left":["thin","#000"],"right":["thin","#000"]},"textwrap":true,"valign":"bottom","font":{"name":"Lato"}},{"textwrap":true,"align":"center","valign":"bottom","font":{"name":"Lato"}},{"border":{"bottom":["thin","#262626"],"top":["thin","#262626"],"left":["thin","#262626"],"right":["thin","#262626"]},"textwrap":true,"font":{"name":"Lato"}},{"border":{"bottom":["thin","#262626"],"top":["thin","#262626"],"left":["thin","#262626"],"right":["thin","#262626"]},"textwrap":true,"align":"center","font":{"name":"Lato"}},{"border":{"bottom":["thin","#262626"],"top":["thin","#262626"],"left":["thin","#262626"],"right":["thin","#262626"]},"align":"center","font":{"name":"Lato"}},{"border":{"bottom":["thin","#262626"],"top":["thin","#262626"],"left":["thin","#262626"],"right":["thin","#262626"]},"textwrap":true,"align":"center","valign":"middle","font":{"name":"Lato"}},{"border":{"bottom":["thin","#262626"],"top":["thin","#262626"],"left":["thin","#262626"],"right":["thin","#262626"]},"textwrap":true,"align":"center","valign":"top","font":{"name":"Lato"}},{"border":{"bottom":["thin","#262626"],"top":["thin","#262626"],"left":["thin","#262626"],"right":["thin","#262626"]},"font":{"name":"Lato"}},{"border":{"bottom":["thin","#262626"],"top":["thin","#262626"],"left":["thin","#262626"],"right":["thin","#262626"]},"textwrap":true,"align":"center","valign":"bottom","font":{"name":"Lato"}},{"border":{"bottom":["thin","#262626"],"top":["thin","#262626"],"left":["thin","#262626"],"right":["thin","#262626"]},"textwrap":true,"valign":"bottom","font":{"name":"Lato"}},{"border":{"bottom":["thin","#7f7f7f"],"top":["thin","#7f7f7f"],"left":["thin","#7f7f7f"],"right":["thin","#7f7f7f"]},"textwrap":true,"font":{"name":"Lato"}},{"border":{"bottom":["thin","#7f7f7f"],"top":["thin","#7f7f7f"],"left":["thin","#7f7f7f"],"right":["thin","#7f7f7f"]},"textwrap":true,"align":"center","font":{"name":"Lato"}},{"border":{"bottom":["thin","#7f7f7f"],"top":["thin","#7f7f7f"],"left":["thin","#7f7f7f"],"right":["thin","#7f7f7f"]},"align":"center","font":{"name":"Lato"}},{"border":{"bottom":["thin","#7f7f7f"],"top":["thin","#7f7f7f"],"left":["thin","#7f7f7f"],"right":["thin","#7f7f7f"]},"textwrap":true,"align":"center","valign":"middle","font":{"name":"Lato"}},{"border":{"bottom":["thin","#7f7f7f"],"top":["thin","#7f7f7f"],"left":["thin","#7f7f7f"],"right":["thin","#7f7f7f"]},"textwrap":true,"align":"center","valign":"top","font":{"name":"Lato"}},{"border":{"bottom":["thin","#7f7f7f"],"top":["thin","#7f7f7f"],"left":["thin","#7f7f7f"],"right":["thin","#7f7f7f"]},"font":{"name":"Lato"}},{"border":{"bottom":["thin","#7f7f7f"],"top":["thin","#7f7f7f"],"left":["thin","#7f7f7f"],"right":["thin","#7f7f7f"]},"textwrap":true,"align":"center","valign":"bottom","font":{"name":"Lato"}},{"border":{"bottom":["thin","#7f7f7f"],"top":["thin","#7f7f7f"],"left":["thin","#7f7f7f"],"right":["thin","#7f7f7f"]},"textwrap":true,"valign":"bottom","font":{"name":"Lato"}},{"border":{"bottom":["thin","#000100"],"top":["thin","#000100"],"left":["thin","#000100"],"right":["thin","#000100"]},"textwrap":true,"font":{"name":"Lato"}},{"border":{"bottom":["thin","#000100"],"top":["thin","#000100"],"left":["thin","#000100"],"right":["thin","#000100"]},"textwrap":true,"align":"center","font":{"name":"Lato"}},{"border":{"bottom":["thin","#000100"],"top":["thin","#000100"],"left":["thin","#000100"],"right":["thin","#000100"]},"align":"center","font":{"name":"Lato"}},{"border":{"bottom":["thin","#000100"],"top":["thin","#000100"],"left":["thin","#000100"],"right":["thin","#000100"]},"textwrap":true,"align":"center","valign":"middle","font":{"name":"Lato"}},{"border":{"bottom":["thin","#000100"],"top":["thin","#000100"],"left":["thin","#000100"],"right":["thin","#000100"]},"textwrap":true,"align":"center","valign":"top","font":{"name":"Lato"}},{"border":{"bottom":["thin","#000100"],"top":["thin","#000100"],"left":["thin","#000100"],"right":["thin","#000100"]},"font":{"name":"Lato"}},{"border":{"bottom":["thin","#000100"],"top":["thin","#000100"],"left":["thin","#000100"],"right":["thin","#000100"]},"textwrap":true,"align":"center","valign":"bottom","font":{"name":"Lato"}},{"border":{"bottom":["thin","#000100"],"top":["thin","#000100"],"left":["thin","#000100"],"right":["thin","#000100"]},"textwrap":true,"valign":"bottom","font":{"name":"Lato"}},{"align":"center","valign":"middle"},{"border":{"bottom":["thin","#000"],"top":["thin","#000"],"left":["thin","#000"],"right":["thin","#000"]},"align":"center","valign":"middle"},{"border":{"bottom":["thin","#000100"],"top":["thin","#000100"],"left":["thin","#000100"],"right":["thin","#000100"]},"textwrap":false,"font":{"name":"Lato"}},{"border":{"bottom":["thin","#000100"],"top":["thin","#000100"],"left":["thin","#000100"],"right":["thin","#000100"]},"textwrap":true,"font":{"name":"Lato"},"valign":"middle"},{"align":"center","font":{"size":16,"bold":true,"name":"Lato"},"border":{"bottom":["thin","#000"],"top":["thin","#000"],"left":["thin","#000"],"right":["thin","#000"]}},{},{"border":{"bottom":["thin","#000100"],"top":["thin","#000100"],"left":["thin","#000100"],"right":["thin","#000100"]},"textwrap":true,"font":{"name":"Lato"},"bgcolor":"#5b9cd6"},{"border":{"bottom":["thin","#000100"],"top":["thin","#000100"],"left":["thin","#000100"],"right":["thin","#000100"]},"textwrap":true,"align":"center","font":{"name":"Lato"},"bgcolor":"#5b9cd6"},{"border":{"bottom":["thin","#000100"],"top":["thin","#000100"],"left":["thin","#000100"],"right":["thin","#000100"]},"textwrap":true,"align":"center","valign":"middle","font":{"name":"Lato"},"bgcolor":"#5b9cd6"},{"border":{"bottom":["thin","#000100"],"top":["thin","#000100"],"left":["thin","#000100"],"right":["thin","#000100"]},"align":"center","font":{"name":"Lato"},"bgcolor":"#5b9cd6"},{"border":{"bottom":["thin","#000100"],"top":["thin","#000100"],"left":["thin","#000100"],"right":["thin","#000100"]},"textwrap":true,"align":"center","valign":"top","font":{"name":"Lato"},"bgcolor":"#5b9cd6"},{"align":"center","font":{"name":"Lato"},"bgcolor":"#5b9cd6"},{"border":{"bottom":["thin","#000100"],"top":["thin","#000100"],"left":["thin","#000100"],"right":["thin","#000100"]},"font":{"name":"Lato"},"bgcolor":"#5b9cd6"},{"font":{"name":"Lato"},"bgcolor":"#5b9cd6"},{"border":{"bottom":["thin","#000100"],"top":["thin","#000100"],"left":["thin","#000100"],"right":["thin","#000100"]},"textwrap":true,"align":"center","valign":"bottom","font":{"name":"Lato"},"bgcolor":"#5b9cd6"},{"textwrap":true,"font":{"name":"Lato"},"bgcolor":"#5b9cd6"},{"textwrap":true,"align":"center","font":{"name":"Lato"},"bgcolor":"#5b9cd6"},{"textwrap":true,"align":"center","valign":"top","font":{"name":"Lato"},"bgcolor":"#5b9cd6"},{"border":{"bottom":["thin","#000100"],"top":["thin","#000100"],"left":["thin","#000100"],"right":["thin","#000100"]},"textwrap":true,"valign":"bottom","font":{"name":"Lato"},"bgcolor":"#5b9cd6"},{"border":{"bottom":["thin","#ffffff"],"top":["thin","#ffffff"],"left":["thin","#ffffff"],"right":["thin","#ffffff"]},"textwrap":true,"font":{"name":"Lato"},"bgcolor":"#5b9cd6"},{"border":{"bottom":["thin","#ffffff"],"top":["thin","#ffffff"],"left":["thin","#ffffff"],"right":["thin","#ffffff"]},"textwrap":true,"align":"center","font":{"name":"Lato"},"bgcolor":"#5b9cd6"},{"border":{"bottom":["thin","#ffffff"],"top":["thin","#ffffff"],"left":["thin","#ffffff"],"right":["thin","#ffffff"]},"textwrap":true,"align":"center","valign":"middle","font":{"name":"Lato"},"bgcolor":"#5b9cd6"},{"border":{"bottom":["thin","#ffffff"],"top":["thin","#ffffff"],"left":["thin","#ffffff"],"right":["thin","#ffffff"]},"align":"center","font":{"name":"Lato"},"bgcolor":"#5b9cd6"},{"border":{"bottom":["thin","#ffffff"],"top":["thin","#ffffff"],"left":["thin","#ffffff"],"right":["thin","#ffffff"]},"textwrap":true,"align":"center","valign":"top","font":{"name":"Lato"},"bgcolor":"#5b9cd6"},{"border":{"bottom":["thin","#ffffff"],"top":["thin","#ffffff"],"left":["thin","#ffffff"],"right":["thin","#ffffff"]},"font":{"name":"Lato"},"bgcolor":"#5b9cd6"},{"border":{"bottom":["thin","#ffffff"],"top":["thin","#ffffff"],"left":["thin","#ffffff"],"right":["thin","#ffffff"]},"textwrap":true,"align":"center","valign":"bottom","font":{"name":"Lato"},"bgcolor":"#5b9cd6"},{"border":{"bottom":["thin","#ffffff"],"top":["thin","#ffffff"],"left":["thin","#ffffff"],"right":["thin","#ffffff"]},"textwrap":true,"valign":"bottom","font":{"name":"Lato"},"bgcolor":"#5b9cd6"},{"border":{"bottom":["thin","#ffffff"],"top":["thin","#ffffff"],"left":["thin","#ffffff"],"right":["thin","#ffffff"]},"textwrap":true,"font":{"name":"Lato"},"bgcolor":"#5b9cd6","color":"#ffffff"},{"border":{"bottom":["thin","#ffffff"],"top":["thin","#ffffff"],"left":["thin","#ffffff"],"right":["thin","#ffffff"]},"textwrap":true,"align":"center","font":{"name":"Lato"},"bgcolor":"#5b9cd6","color":"#ffffff"},{"border":{"bottom":["thin","#ffffff"],"top":["thin","#ffffff"],"left":["thin","#ffffff"],"right":["thin","#ffffff"]},"textwrap":true,"align":"center","valign":"middle","font":{"name":"Lato"},"bgcolor":"#5b9cd6","color":"#ffffff"},{"border":{"bottom":["thin","#ffffff"],"top":["thin","#ffffff"],"left":["thin","#ffffff"],"right":["thin","#ffffff"]},"align":"center","font":{"name":"Lato"},"bgcolor":"#5b9cd6","color":"#ffffff"},{"border":{"bottom":["thin","#ffffff"],"top":["thin","#ffffff"],"left":["thin","#ffffff"],"right":["thin","#ffffff"]},"textwrap":true,"align":"center","valign":"top","font":{"name":"Lato"},"bgcolor":"#5b9cd6","color":"#ffffff"},{"align":"center","font":{"name":"Lato"},"bgcolor":"#5b9cd6","color":"#ffffff"},{"border":{"bottom":["thin","#ffffff"],"top":["thin","#ffffff"],"left":["thin","#ffffff"],"right":["thin","#ffffff"]},"font":{"name":"Lato"},"bgcolor":"#5b9cd6","color":"#ffffff"},{"font":{"name":"Lato"},"bgcolor":"#5b9cd6","color":"#ffffff"},{"border":{"bottom":["thin","#ffffff"],"top":["thin","#ffffff"],"left":["thin","#ffffff"],"right":["thin","#ffffff"]},"textwrap":true,"align":"center","valign":"bottom","font":{"name":"Lato"},"bgcolor":"#5b9cd6","color":"#ffffff"},{"textwrap":true,"font":{"name":"Lato"},"bgcolor":"#5b9cd6","color":"#ffffff"},{"textwrap":true,"align":"center","font":{"name":"Lato"},"bgcolor":"#5b9cd6","color":"#ffffff"},{"textwrap":true,"align":"center","valign":"top","font":{"name":"Lato"},"bgcolor":"#5b9cd6","color":"#ffffff"},{"border":{"bottom":["thin","#ffffff"],"top":["thin","#ffffff"],"left":["thin","#ffffff"],"right":["thin","#ffffff"]},"textwrap":true,"valign":"bottom","font":{"name":"Lato"},"bgcolor":"#5b9cd6","color":"#ffffff"},{"border":{"bottom":["thin","#ffffff"],"top":["thin","#ffffff"],"left":["thin","#ffffff"],"right":["thin","#ffffff"]},"textwrap":true,"font":{"name":"Lato","size":8},"bgcolor":"#5b9cd6","color":"#ffffff"},{"border":{"bottom":["thin","#ffffff"],"top":["thin","#ffffff"],"left":["thin","#ffffff"],"right":["thin","#ffffff"]},"textwrap":true,"align":"center","font":{"name":"Lato","size":8},"bgcolor":"#5b9cd6","color":"#ffffff"},{"border":{"bottom":["thin","#ffffff"],"top":["thin","#ffffff"],"left":["thin","#ffffff"],"right":["thin","#ffffff"]},"textwrap":true,"align":"center","valign":"middle","font":{"name":"Lato","size":8},"bgcolor":"#5b9cd6","color":"#ffffff"},{"border":{"bottom":["thin","#ffffff"],"top":["thin","#ffffff"],"left":["thin","#ffffff"],"right":["thin","#ffffff"]},"align":"center","font":{"name":"Lato","size":8},"bgcolor":"#5b9cd6","color":"#ffffff"},{"border":{"bottom":["thin","#ffffff"],"top":["thin","#ffffff"],"left":["thin","#ffffff"],"right":["thin","#ffffff"]},"textwrap":true,"align":"center","valign":"top","font":{"name":"Lato","size":8},"bgcolor":"#5b9cd6","color":"#ffffff"},{"align":"center","font":{"name":"Lato","size":8},"bgcolor":"#5b9cd6","color":"#ffffff"},{"border":{"bottom":["thin","#ffffff"],"top":["thin","#ffffff"],"left":["thin","#ffffff"],"right":["thin","#ffffff"]},"font":{"name":"Lato","size":8},"bgcolor":"#5b9cd6","color":"#ffffff"},{"font":{"name":"Lato","size":8},"bgcolor":"#5b9cd6","color":"#ffffff"},{"border":{"bottom":["thin","#ffffff"],"top":["thin","#ffffff"],"left":["thin","#ffffff"],"right":["thin","#ffffff"]},"textwrap":true,"align":"center","valign":"bottom","font":{"name":"Lato","size":8},"bgcolor":"#5b9cd6","color":"#ffffff"},{"textwrap":true,"font":{"name":"Lato","size":8},"bgcolor":"#5b9cd6","color":"#ffffff"},{"textwrap":true,"align":"center","font":{"name":"Lato","size":8},"bgcolor":"#5b9cd6","color":"#ffffff"},{"textwrap":true,"align":"center","valign":"top","font":{"name":"Lato","size":8},"bgcolor":"#5b9cd6","color":"#ffffff"},{"border":{"bottom":["thin","#ffffff"],"top":["thin","#ffffff"],"left":["thin","#ffffff"],"right":["thin","#ffffff"]},"textwrap":true,"valign":"bottom","font":{"name":"Lato","size":8},"bgcolor":"#5b9cd6","color":"#ffffff"},{"textwrap":true,"align":"center","valign":"middle","font":{"name":"Lato","size":8},"bgcolor":"#5b9cd6","color":"#ffffff"},{"border":{"bottom":["thin","#ffffff"],"top":["thin","#ffffff"],"left":["thin","#ffffff"],"right":["thin","#ffffff"]},"textwrap":true,"font":{"name":"Lato","size":8},"bgcolor":"#5b9cd6","color":"#ffffff","valign":"middle"},{"align":"center","border":{"right":["thin","#ffffff"]}},{"align":"center","border":{"bottom":["thin","#ffffff"],"top":["thin","#ffffff"],"left":["thin","#ffffff"],"right":["thin","#ffffff"]}},{"align":"center","valign":"middle","border":{"bottom":["thin","#ffffff"],"top":["thin","#ffffff"],"left":["thin","#ffffff"],"right":["thin","#ffffff"]}},{"align":"center","font":{"name":"Lato"},"border":{"bottom":["thin","#ffffff"],"top":["thin","#ffffff"],"left":["thin","#ffffff"],"right":["thin","#ffffff"]}},{"border":{"bottom":["thin","#ffffff"],"top":["thin","#ffffff"],"left":["thin","#ffffff"],"right":["thin","#ffffff"]}},{"align":"center","valign":"middle","border":{"right":["thin","#ffffff"]}},{"align":"center","font":{"name":"Lato"},"border":{"right":["thin","#ffffff"]}},{"border":{"right":["thin","#ffffff"]}},{"align":"center","valign":"middle","border":{"right":["thin","#000100"]}},{"align":"center","border":{"right":["thin","#000100"]}},{"align":"center","font":{"name":"Lato"},"border":{"right":["thin","#000100"]}},{"border":{"right":["thin","#000100"]}},{"align":"center","valign":"middle","border":{"left":["thin","#000100"]}},{"align":"center","valign":"middle","border":{"bottom":["thin","#000100"]}},{"align":"center","border":{"bottom":["thin","#000100"]}},{"align":"center","font":{"name":"Lato"},"border":{"bottom":["thin","#000100"]}},{"border":{"bottom":["thin","#000100"]}},{"font":{"name":"Lato"},"border":{"top":["thin","#000100"]}},{"align":"center","valign":"middle","border":{"bottom":["thin","#000100"],"top":["thin","#000100"],"left":["thin","#000100"],"right":["thin","#000100"]}},{"align":"center","border":{"bottom":["thin","#000100"],"top":["thin","#000100"],"left":["thin","#000100"],"right":["thin","#000100"]}},{"border":{"bottom":["thin","#000100"],"top":["thin","#000100"],"left":["thin","#000100"],"right":["thin","#000100"]}},{"textwrap":true,"align":"center","valign":"bottom","font":{"name":"Lato","size":8},"bgcolor":"#5b9cd6","color":"#ffffff"},{"align":"center","border":{"bottom":["thin","#7f7f7f"],"top":["thin","#7f7f7f"],"left":["thin","#7f7f7f"],"right":["thin","#7f7f7f"]}},{"font":{"name":"Lato"},"border":{"bottom":["thin","#7f7f7f"]}},{"font":{"name":"Lato"},"border":{"bottom":["thin","#000100"]}},{"font":{"name":"Lato"},"border":{"bottom":["thin","#000100"]},"align":"right"},{"font":{"name":"Lato"},"align":"right"},{"textwrap":true,"valign":"bottom","font":{"name":"Lato","size":8},"bgcolor":"#5b9cd6","color":"#ffffff"},{"textwrap":true,"font":{"name":"Lato","size":8},"bgcolor":"#5b9cd6","color":"#ffffff","valign":"middle"},{"textwrap":true,"font":{"name":"Lato","size":8},"bgcolor":"#5b9cd6","color":"#ffffff","border":{"bottom":["thin","#5b9cd6"],"top":["thin","#5b9cd6"],"left":["thin","#5b9cd6"],"right":["thin","#5b9cd6"]}},{"textwrap":true,"align":"center","font":{"name":"Lato","size":8},"bgcolor":"#5b9cd6","color":"#ffffff","border":{"bottom":["thin","#5b9cd6"],"top":["thin","#5b9cd6"],"left":["thin","#5b9cd6"],"right":["thin","#5b9cd6"]}},{"textwrap":true,"align":"center","valign":"middle","font":{"name":"Lato","size":8},"bgcolor":"#5b9cd6","color":"#ffffff","border":{"bottom":["thin","#5b9cd6"],"top":["thin","#5b9cd6"],"left":["thin","#5b9cd6"],"right":["thin","#5b9cd6"]}},{"align":"center","font":{"name":"Lato","size":8},"bgcolor":"#5b9cd6","color":"#ffffff","border":{"bottom":["thin","#5b9cd6"],"top":["thin","#5b9cd6"],"left":["thin","#5b9cd6"],"right":["thin","#5b9cd6"]}},{"font":{"name":"Lato","size":8},"bgcolor":"#5b9cd6","color":"#ffffff","border":{"bottom":["thin","#5b9cd6"],"top":["thin","#5b9cd6"],"left":["thin","#5b9cd6"],"right":["thin","#5b9cd6"]}},{"textwrap":true,"align":"center","valign":"bottom","font":{"name":"Lato","size":8},"bgcolor":"#5b9cd6","color":"#ffffff","border":{"bottom":["thin","#5b9cd6"],"top":["thin","#5b9cd6"],"left":["thin","#5b9cd6"],"right":["thin","#5b9cd6"]}},{"textwrap":true,"valign":"bottom","font":{"name":"Lato","size":8},"bgcolor":"#5b9cd6","color":"#ffffff","border":{"bottom":["thin","#5b9cd6"],"top":["thin","#5b9cd6"],"left":["thin","#5b9cd6"],"right":["thin","#5b9cd6"]}},{"textwrap":true,"font":{"name":"Lato","size":8},"bgcolor":"#5b9cd6","color":"#ffffff","valign":"middle","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"},{"textwrap":true,"font":{"name":"Lato","size":8},"bgcolor":"#f4b184","color":"#ffffff","border":{"bottom":["thin","#5b9cd6"],"top":["thin","#5b9cd6"],"left":["thin","#5b9cd6"],"right":["thin","#5b9cd6"]}},{"textwrap":true,"align":"center","font":{"name":"Lato","size":8},"bgcolor":"#f4b184","color":"#ffffff","border":{"bottom":["thin","#5b9cd6"],"top":["thin","#5b9cd6"],"left":["thin","#5b9cd6"],"right":["thin","#5b9cd6"]}},{"textwrap":true,"align":"center","valign":"middle","font":{"name":"Lato","size":8},"bgcolor":"#f4b184","color":"#ffffff","border":{"bottom":["thin","#5b9cd6"],"top":["thin","#5b9cd6"],"left":["thin","#5b9cd6"],"right":["thin","#5b9cd6"]}},{"align":"center","font":{"name":"Lato","size":8},"bgcolor":"#f4b184","color":"#ffffff","border":{"bottom":["thin","#5b9cd6"],"top":["thin","#5b9cd6"],"left":["thin","#5b9cd6"],"right":["thin","#5b9cd6"]}},{"align":"center","font":{"name":"Lato","size":8},"bgcolor":"#f4b184","color":"#ffffff"},{"font":{"name":"Lato","size":8},"bgcolor":"#f4b184","color":"#ffffff","border":{"bottom":["thin","#5b9cd6"],"top":["thin","#5b9cd6"],"left":["thin","#5b9cd6"],"right":["thin","#5b9cd6"]}},{"font":{"name":"Lato","size":8},"bgcolor":"#f4b184","color":"#ffffff"},{"textwrap":true,"align":"center","valign":"bottom","font":{"name":"Lato","size":8},"bgcolor":"#f4b184","color":"#ffffff","border":{"bottom":["thin","#5b9cd6"],"top":["thin","#5b9cd6"],"left":["thin","#5b9cd6"],"right":["thin","#5b9cd6"]}},{"textwrap":true,"font":{"name":"Lato","size":8},"bgcolor":"#f4b184","color":"#ffffff"},{"textwrap":true,"align":"center","font":{"name":"Lato","size":8},"bgcolor":"#f4b184","color":"#ffffff"},{"textwrap":true,"align":"center","valign":"middle","font":{"name":"Lato","size":8},"bgcolor":"#f4b184","color":"#ffffff"},{"textwrap":true,"valign":"bottom","font":{"name":"Lato","size":8},"bgcolor":"#f4b184","color":"#ffffff","border":{"bottom":["thin","#5b9cd6"],"top":["thin","#5b9cd6"],"left":["thin","#5b9cd6"],"right":["thin","#5b9cd6"]}},{"textwrap":true,"font":{"name":"Lato","size":8},"bgcolor":"#f4b184","color":"#ffffff","valign":"middle","border":{"bottom":["thin","#5b9cd6"],"top":["thin","#5b9cd6"],"left":["thin","#5b9cd6"],"right":["thin","#5b9cd6"]}},{"textwrap":true,"font":{"name":"Lato","size":8},"bgcolor":"#f4b184","color":"#000100","border":{"bottom":["thin","#5b9cd6"],"top":["thin","#5b9cd6"],"left":["thin","#5b9cd6"],"right":["thin","#5b9cd6"]}},{"textwrap":true,"align":"center","font":{"name":"Lato","size":8},"bgcolor":"#f4b184","color":"#000100","border":{"bottom":["thin","#5b9cd6"],"top":["thin","#5b9cd6"],"left":["thin","#5b9cd6"],"right":["thin","#5b9cd6"]}},{"textwrap":true,"align":"center","valign":"middle","font":{"name":"Lato","size":8},"bgcolor":"#f4b184","color":"#000100","border":{"bottom":["thin","#5b9cd6"],"top":["thin","#5b9cd6"],"left":["thin","#5b9cd6"],"right":["thin","#5b9cd6"]}},{"align":"center","font":{"name":"Lato","size":8},"bgcolor":"#f4b184","color":"#000100","border":{"bottom":["thin","#5b9cd6"],"top":["thin","#5b9cd6"],"left":["thin","#5b9cd6"],"right":["thin","#5b9cd6"]}},{"align":"center","font":{"name":"Lato","size":8},"bgcolor":"#f4b184","color":"#000100"},{"font":{"name":"Lato","size":8},"bgcolor":"#f4b184","color":"#000100","border":{"bottom":["thin","#5b9cd6"],"top":["thin","#5b9cd6"],"left":["thin","#5b9cd6"],"right":["thin","#5b9cd6"]}},{"font":{"name":"Lato","size":8},"bgcolor":"#f4b184","color":"#000100"},{"textwrap":true,"align":"center","valign":"bottom","font":{"name":"Lato","size":8},"bgcolor":"#f4b184","color":"#000100","border":{"bottom":["thin","#5b9cd6"],"top":["thin","#5b9cd6"],"left":["thin","#5b9cd6"],"right":["thin","#5b9cd6"]}},{"textwrap":true,"font":{"name":"Lato","size":8},"bgcolor":"#f4b184","color":"#000100"},{"textwrap":true,"align":"center","font":{"name":"Lato","size":8},"bgcolor":"#f4b184","color":"#000100"},{"textwrap":true,"align":"center","valign":"middle","font":{"name":"Lato","size":8},"bgcolor":"#f4b184","color":"#000100"},{"textwrap":true,"valign":"bottom","font":{"name":"Lato","size":8},"bgcolor":"#f4b184","color":"#000100","border":{"bottom":["thin","#5b9cd6"],"top":["thin","#5b9cd6"],"left":["thin","#5b9cd6"],"right":["thin","#5b9cd6"]}},{"textwrap":true,"font":{"name":"Lato","size":8},"bgcolor":"#f4b184","color":"#000100","valign":"middle","border":{"bottom":["thin","#5b9cd6"],"top":["thin","#5b9cd6"],"left":["thin","#5b9cd6"],"right":["thin","#5b9cd6"]}},{"textwrap":true,"font":{"name":"Lato","size":8},"bgcolor":"#f4b184","color":"#262626","border":{"bottom":["thin","#5b9cd6"],"top":["thin","#5b9cd6"],"left":["thin","#5b9cd6"],"right":["thin","#5b9cd6"]}},{"textwrap":true,"align":"center","font":{"name":"Lato","size":8},"bgcolor":"#f4b184","color":"#262626","border":{"bottom":["thin","#5b9cd6"],"top":["thin","#5b9cd6"],"left":["thin","#5b9cd6"],"right":["thin","#5b9cd6"]}},{"textwrap":true,"align":"center","valign":"middle","font":{"name":"Lato","size":8},"bgcolor":"#f4b184","color":"#262626","border":{"bottom":["thin","#5b9cd6"],"top":["thin","#5b9cd6"],"left":["thin","#5b9cd6"],"right":["thin","#5b9cd6"]}},{"align":"center","font":{"name":"Lato","size":8},"bgcolor":"#f4b184","color":"#262626","border":{"bottom":["thin","#5b9cd6"],"top":["thin","#5b9cd6"],"left":["thin","#5b9cd6"],"right":["thin","#5b9cd6"]}},{"align":"center","font":{"name":"Lato","size":8},"bgcolor":"#f4b184","color":"#262626"},{"font":{"name":"Lato","size":8},"bgcolor":"#f4b184","color":"#262626","border":{"bottom":["thin","#5b9cd6"],"top":["thin","#5b9cd6"],"left":["thin","#5b9cd6"],"right":["thin","#5b9cd6"]}},{"font":{"name":"Lato","size":8},"bgcolor":"#f4b184","color":"#262626"},{"textwrap":true,"align":"center","valign":"bottom","font":{"name":"Lato","size":8},"bgcolor":"#f4b184","color":"#262626","border":{"bottom":["thin","#5b9cd6"],"top":["thin","#5b9cd6"],"left":["thin","#5b9cd6"],"right":["thin","#5b9cd6"]}},{"textwrap":true,"font":{"name":"Lato","size":8},"bgcolor":"#f4b184","color":"#262626"},{"textwrap":true,"align":"center","font":{"name":"Lato","size":8},"bgcolor":"#f4b184","color":"#262626"},{"textwrap":true,"align":"center","valign":"middle","font":{"name":"Lato","size":8},"bgcolor":"#f4b184","color":"#262626"},{"textwrap":true,"valign":"bottom","font":{"name":"Lato","size":8},"bgcolor":"#f4b184","color":"#262626","border":{"bottom":["thin","#5b9cd6"],"top":["thin","#5b9cd6"],"left":["thin","#5b9cd6"],"right":["thin","#5b9cd6"]}},{"textwrap":true,"font":{"name":"Lato","size":8},"bgcolor":"#f4b184","color":"#262626","valign":"middle","border":{"bottom":["thin","#5b9cd6"],"top":["thin","#5b9cd6"],"left":["thin","#5b9cd6"],"right":["thin","#5b9cd6"]}},{"textwrap":true,"font":{"name":"Lato","size":8},"bgcolor":"#9cc2e6","color":"#262626","border":{"bottom":["thin","#5b9cd6"],"top":["thin","#5b9cd6"],"left":["thin","#5b9cd6"],"right":["thin","#5b9cd6"]}},{"textwrap":true,"align":"center","font":{"name":"Lato","size":8},"bgcolor":"#9cc2e6","color":"#262626","border":{"bottom":["thin","#5b9cd6"],"top":["thin","#5b9cd6"],"left":["thin","#5b9cd6"],"right":["thin","#5b9cd6"]}},{"textwrap":true,"align":"center","valign":"middle","font":{"name":"Lato","size":8},"bgcolor":"#9cc2e6","color":"#262626","border":{"bottom":["thin","#5b9cd6"],"top":["thin","#5b9cd6"],"left":["thin","#5b9cd6"],"right":["thin","#5b9cd6"]}},{"align":"center","font":{"name":"Lato","size":8},"bgcolor":"#9cc2e6","color":"#262626","border":{"bottom":["thin","#5b9cd6"],"top":["thin","#5b9cd6"],"left":["thin","#5b9cd6"],"right":["thin","#5b9cd6"]}},{"align":"center","font":{"name":"Lato","size":8},"bgcolor":"#9cc2e6","color":"#262626"},{"font":{"name":"Lato","size":8},"bgcolor":"#9cc2e6","color":"#262626","border":{"bottom":["thin","#5b9cd6"],"top":["thin","#5b9cd6"],"left":["thin","#5b9cd6"],"right":["thin","#5b9cd6"]}},{"font":{"name":"Lato","size":8},"bgcolor":"#9cc2e6","color":"#262626"},{"textwrap":true,"align":"center","valign":"bottom","font":{"name":"Lato","size":8},"bgcolor":"#9cc2e6","color":"#262626","border":{"bottom":["thin","#5b9cd6"],"top":["thin","#5b9cd6"],"left":["thin","#5b9cd6"],"right":["thin","#5b9cd6"]}},{"textwrap":true,"font":{"name":"Lato","size":8},"bgcolor":"#9cc2e6","color":"#262626"},{"textwrap":true,"align":"center","font":{"name":"Lato","size":8},"bgcolor":"#9cc2e6","color":"#262626"},{"textwrap":true,"align":"center","valign":"middle","font":{"name":"Lato","size":8},"bgcolor":"#9cc2e6","color":"#262626"},{"textwrap":true,"valign":"bottom","font":{"name":"Lato","size":8},"bgcolor":"#9cc2e6","color":"#262626","border":{"bottom":["thin","#5b9cd6"],"top":["thin","#5b9cd6"],"left":["thin","#5b9cd6"],"right":["thin","#5b9cd6"]}},{"textwrap":true,"font":{"name":"Lato","size":8},"bgcolor":"#9cc2e6","color":"#262626","valign":"middle","border":{"bottom":["thin","#5b9cd6"],"top":["thin","#5b9cd6"],"left":["thin","#5b9cd6"],"right":["thin","#5b9cd6"]}},{"textwrap":true,"font":{"name":"Lato","size":8},"bgcolor":"#00b04e","color":"#262626","border":{"bottom":["thin","#5b9cd6"],"top":["thin","#5b9cd6"],"left":["thin","#5b9cd6"],"right":["thin","#5b9cd6"]}},{"textwrap":true,"align":"center","font":{"name":"Lato","size":8},"bgcolor":"#00b04e","color":"#262626","border":{"bottom":["thin","#5b9cd6"],"top":["thin","#5b9cd6"],"left":["thin","#5b9cd6"],"right":["thin","#5b9cd6"]}},{"textwrap":true,"align":"center","valign":"middle","font":{"name":"Lato","size":8},"bgcolor":"#00b04e","color":"#262626","border":{"bottom":["thin","#5b9cd6"],"top":["thin","#5b9cd6"],"left":["thin","#5b9cd6"],"right":["thin","#5b9cd6"]}},{"align":"center","font":{"name":"Lato","size":8},"bgcolor":"#00b04e","color":"#262626","border":{"bottom":["thin","#5b9cd6"],"top":["thin","#5b9cd6"],"left":["thin","#5b9cd6"],"right":["thin","#5b9cd6"]}},{"align":"center","font":{"name":"Lato","size":8},"bgcolor":"#00b04e","color":"#262626"},{"font":{"name":"Lato","size":8},"bgcolor":"#00b04e","color":"#262626","border":{"bottom":["thin","#5b9cd6"],"top":["thin","#5b9cd6"],"left":["thin","#5b9cd6"],"right":["thin","#5b9cd6"]}},{"font":{"name":"Lato","size":8},"bgcolor":"#00b04e","color":"#262626"},{"textwrap":true,"align":"center","valign":"bottom","font":{"name":"Lato","size":8},"bgcolor":"#00b04e","color":"#262626","border":{"bottom":["thin","#5b9cd6"],"top":["thin","#5b9cd6"],"left":["thin","#5b9cd6"],"right":["thin","#5b9cd6"]}},{"textwrap":true,"font":{"name":"Lato","size":8},"bgcolor":"#00b04e","color":"#262626"},{"textwrap":true,"align":"center","font":{"name":"Lato","size":8},"bgcolor":"#00b04e","color":"#262626"},{"textwrap":true,"align":"center","valign":"middle","font":{"name":"Lato","size":8},"bgcolor":"#00b04e","color":"#262626"},{"textwrap":true,"valign":"bottom","font":{"name":"Lato","size":8},"bgcolor":"#00b04e","color":"#262626","border":{"bottom":["thin","#5b9cd6"],"top":["thin","#5b9cd6"],"left":["thin","#5b9cd6"],"right":["thin","#5b9cd6"]}},{"textwrap":true,"font":{"name":"Lato","size":8},"bgcolor":"#00b04e","color":"#262626","valign":"middle","border":{"bottom":["thin","#5b9cd6"],"top":["thin","#5b9cd6"],"left":["thin","#5b9cd6"],"right":["thin","#5b9cd6"]}},{"textwrap":true,"font":{"name":"Lato","size":8},"bgcolor":"#00b04e","color":"#ffffff","border":{"bottom":["thin","#5b9cd6"],"top":["thin","#5b9cd6"],"left":["thin","#5b9cd6"],"right":["thin","#5b9cd6"]}},{"textwrap":true,"align":"center","font":{"name":"Lato","size":8},"bgcolor":"#00b04e","color":"#ffffff","border":{"bottom":["thin","#5b9cd6"],"top":["thin","#5b9cd6"],"left":["thin","#5b9cd6"],"right":["thin","#5b9cd6"]}},{"textwrap":true,"align":"center","valign":"middle","font":{"name":"Lato","size":8},"bgcolor":"#00b04e","color":"#ffffff","border":{"bottom":["thin","#5b9cd6"],"top":["thin","#5b9cd6"],"left":["thin","#5b9cd6"],"right":["thin","#5b9cd6"]}},{"align":"center","font":{"name":"Lato","size":8},"bgcolor":"#00b04e","color":"#ffffff","border":{"bottom":["thin","#5b9cd6"],"top":["thin","#5b9cd6"],"left":["thin","#5b9cd6"],"right":["thin","#5b9cd6"]}},{"align":"center","font":{"name":"Lato","size":8},"bgcolor":"#00b04e","color":"#ffffff"},{"font":{"name":"Lato","size":8},"bgcolor":"#00b04e","color":"#ffffff","border":{"bottom":["thin","#5b9cd6"],"top":["thin","#5b9cd6"],"left":["thin","#5b9cd6"],"right":["thin","#5b9cd6"]}},{"font":{"name":"Lato","size":8},"bgcolor":"#00b04e","color":"#ffffff"},{"textwrap":true,"align":"center","valign":"bottom","font":{"name":"Lato","size":8},"bgcolor":"#00b04e","color":"#ffffff","border":{"bottom":["thin","#5b9cd6"],"top":["thin","#5b9cd6"],"left":["thin","#5b9cd6"],"right":["thin","#5b9cd6"]}},{"textwrap":true,"font":{"name":"Lato","size":8},"bgcolor":"#00b04e","color":"#ffffff"},{"textwrap":true,"align":"center","font":{"name":"Lato","size":8},"bgcolor":"#00b04e","color":"#ffffff"},{"textwrap":true,"align":"center","valign":"middle","font":{"name":"Lato","size":8},"bgcolor":"#00b04e","color":"#ffffff"},{"textwrap":true,"valign":"bottom","font":{"name":"Lato","size":8},"bgcolor":"#00b04e","color":"#ffffff","border":{"bottom":["thin","#5b9cd6"],"top":["thin","#5b9cd6"],"left":["thin","#5b9cd6"],"right":["thin","#5b9cd6"]}},{"textwrap":true,"font":{"name":"Lato","size":8},"bgcolor":"#00b04e","color":"#ffffff","valign":"middle","border":{"bottom":["thin","#5b9cd6"],"top":["thin","#5b9cd6"],"left":["thin","#5b9cd6"],"right":["thin","#5b9cd6"]}},{"textwrap":true,"font":{"name":"Lato","size":8},"bgcolor":"#00b04e","color":"#ffffff","border":{"bottom":["thin","#00b04e"],"top":["thin","#00b04e"],"left":["thin","#00b04e"],"right":["thin","#00b04e"]}},{"textwrap":true,"align":"center","font":{"name":"Lato","size":8},"bgcolor":"#00b04e","color":"#ffffff","border":{"bottom":["thin","#00b04e"],"top":["thin","#00b04e"],"left":["thin","#00b04e"],"right":["thin","#00b04e"]}},{"textwrap":true,"align":"center","valign":"middle","font":{"name":"Lato","size":8},"bgcolor":"#00b04e","color":"#ffffff","border":{"bottom":["thin","#00b04e"],"top":["thin","#00b04e"],"left":["thin","#00b04e"],"right":["thin","#00b04e"]}},{"align":"center","font":{"name":"Lato","size":8},"bgcolor":"#00b04e","color":"#ffffff","border":{"bottom":["thin","#00b04e"],"top":["thin","#00b04e"],"left":["thin","#00b04e"],"right":["thin","#00b04e"]}},{"font":{"name":"Lato","size":8},"bgcolor":"#00b04e","color":"#ffffff","border":{"bottom":["thin","#00b04e"],"top":["thin","#00b04e"],"left":["thin","#00b04e"],"right":["thin","#00b04e"]}},{"textwrap":true,"align":"center","valign":"bottom","font":{"name":"Lato","size":8},"bgcolor":"#00b04e","color":"#ffffff","border":{"bottom":["thin","#00b04e"],"top":["thin","#00b04e"],"left":["thin","#00b04e"],"right":["thin","#00b04e"]}},{"textwrap":true,"valign":"bottom","font":{"name":"Lato","size":8},"bgcolor":"#00b04e","color":"#ffffff","border":{"bottom":["thin","#00b04e"],"top":["thin","#00b04e"],"left":["thin","#00b04e"],"right":["thin","#00b04e"]}},{"textwrap":true,"font":{"name":"Lato","size":8},"bgcolor":"#00b04e","color":"#ffffff","valign":"middle","border":{"bottom":["thin","#00b04e"],"top":["thin","#00b04e"],"left":["thin","#00b04e"],"right":["thin","#00b04e"]}},{"border":{"bottom":["thin","#00b04e"],"top":["thin","#00b04e"],"left":["thin","#00b04e"],"right":["thin","#00b04e"]},"align":"center"},{"textwrap":true,"font":{"name":"Lato","size":8},"bgcolor":"#a7d08c","color":"#ffffff","border":{"bottom":["thin","#00b04e"],"top":["thin","#00b04e"],"left":["thin","#00b04e"],"right":["thin","#00b04e"]}},{"textwrap":true,"align":"center","font":{"name":"Lato","size":8},"bgcolor":"#a7d08c","color":"#ffffff","border":{"bottom":["thin","#00b04e"],"top":["thin","#00b04e"],"left":["thin","#00b04e"],"right":["thin","#00b04e"]}},{"textwrap":true,"align":"center","valign":"middle","font":{"name":"Lato","size":8},"bgcolor":"#a7d08c","color":"#ffffff","border":{"bottom":["thin","#00b04e"],"top":["thin","#00b04e"],"left":["thin","#00b04e"],"right":["thin","#00b04e"]}},{"align":"center","font":{"name":"Lato","size":8},"bgcolor":"#a7d08c","color":"#ffffff","border":{"bottom":["thin","#00b04e"],"top":["thin","#00b04e"],"left":["thin","#00b04e"],"right":["thin","#00b04e"]}},{"align":"center","font":{"name":"Lato","size":8},"bgcolor":"#a7d08c","color":"#ffffff"},{"font":{"name":"Lato","size":8},"bgcolor":"#a7d08c","color":"#ffffff","border":{"bottom":["thin","#00b04e"],"top":["thin","#00b04e"],"left":["thin","#00b04e"],"right":["thin","#00b04e"]}},{"font":{"name":"Lato","size":8},"bgcolor":"#a7d08c","color":"#ffffff"},{"textwrap":true,"align":"center","valign":"bottom","font":{"name":"Lato","size":8},"bgcolor":"#a7d08c","color":"#ffffff","border":{"bottom":["thin","#00b04e"],"top":["thin","#00b04e"],"left":["thin","#00b04e"],"right":["thin","#00b04e"]}},{"textwrap":true,"font":{"name":"Lato","size":8},"bgcolor":"#a7d08c","color":"#ffffff"},{"textwrap":true,"align":"center","font":{"name":"Lato","size":8},"bgcolor":"#a7d08c","color":"#ffffff"},{"textwrap":true,"align":"center","valign":"middle","font":{"name":"Lato","size":8},"bgcolor":"#a7d08c","color":"#ffffff"},{"textwrap":true,"valign":"bottom","font":{"name":"Lato","size":8},"bgcolor":"#a7d08c","color":"#ffffff","border":{"bottom":["thin","#00b04e"],"top":["thin","#00b04e"],"left":["thin","#00b04e"],"right":["thin","#00b04e"]}},{"textwrap":true,"font":{"name":"Lato","size":8},"bgcolor":"#a7d08c","color":"#ffffff","valign":"middle","border":{"bottom":["thin","#00b04e"],"top":["thin","#00b04e"],"left":["thin","#00b04e"],"right":["thin","#00b04e"]}},{"textwrap":true,"font":{"name":"Lato","size":8},"bgcolor":"#71ae47","color":"#ffffff","border":{"bottom":["thin","#00b04e"],"top":["thin","#00b04e"],"left":["thin","#00b04e"],"right":["thin","#00b04e"]}},{"textwrap":true,"align":"center","font":{"name":"Lato","size":8},"bgcolor":"#71ae47","color":"#ffffff","border":{"bottom":["thin","#00b04e"],"top":["thin","#00b04e"],"left":["thin","#00b04e"],"right":["thin","#00b04e"]}},{"textwrap":true,"align":"center","valign":"middle","font":{"name":"Lato","size":8},"bgcolor":"#71ae47","color":"#ffffff","border":{"bottom":["thin","#00b04e"],"top":["thin","#00b04e"],"left":["thin","#00b04e"],"right":["thin","#00b04e"]}},{"align":"center","font":{"name":"Lato","size":8},"bgcolor":"#71ae47","color":"#ffffff","border":{"bottom":["thin","#00b04e"],"top":["thin","#00b04e"],"left":["thin","#00b04e"],"right":["thin","#00b04e"]}},{"align":"center","font":{"name":"Lato","size":8},"bgcolor":"#71ae47","color":"#ffffff"},{"font":{"name":"Lato","size":8},"bgcolor":"#71ae47","color":"#ffffff","border":{"bottom":["thin","#00b04e"],"top":["thin","#00b04e"],"left":["thin","#00b04e"],"right":["thin","#00b04e"]}},{"font":{"name":"Lato","size":8},"bgcolor":"#71ae47","color":"#ffffff"},{"textwrap":true,"align":"center","valign":"bottom","font":{"name":"Lato","size":8},"bgcolor":"#71ae47","color":"#ffffff","border":{"bottom":["thin","#00b04e"],"top":["thin","#00b04e"],"left":["thin","#00b04e"],"right":["thin","#00b04e"]}},{"textwrap":true,"font":{"name":"Lato","size":8},"bgcolor":"#71ae47","color":"#ffffff"},{"textwrap":true,"align":"center","font":{"name":"Lato","size":8},"bgcolor":"#71ae47","color":"#ffffff"},{"textwrap":true,"align":"center","valign":"middle","font":{"name":"Lato","size":8},"bgcolor":"#71ae47","color":"#ffffff"},{"textwrap":true,"valign":"bottom","font":{"name":"Lato","size":8},"bgcolor":"#71ae47","color":"#ffffff","border":{"bottom":["thin","#00b04e"],"top":["thin","#00b04e"],"left":["thin","#00b04e"],"right":["thin","#00b04e"]}},{"textwrap":true,"font":{"name":"Lato","size":8},"bgcolor":"#71ae47","color":"#ffffff","valign":"middle","border":{"bottom":["thin","#00b04e"],"top":["thin","#00b04e"],"left":["thin","#00b04e"],"right":["thin","#00b04e"]}},{"border":{"bottom":["thin","#00b04e"],"top":["thin","#00b04e"],"left":["thin","#00b04e"],"right":["thin","#00b04e"]},"align":"center","font":{"size":8}},{"textwrap":true,"font":{"name":"Lato","size":10},"bgcolor":"#71ae47","color":"#ffffff","border":{"bottom":["thin","#00b04e"],"top":["thin","#00b04e"],"left":["thin","#00b04e"],"right":["thin","#00b04e"]}},{"textwrap":true,"align":"center","font":{"name":"Lato","size":10},"bgcolor":"#71ae47","color":"#ffffff","border":{"bottom":["thin","#00b04e"],"top":["thin","#00b04e"],"left":["thin","#00b04e"],"right":["thin","#00b04e"]}},{"textwrap":true,"align":"center","valign":"middle","font":{"name":"Lato","size":10},"bgcolor":"#71ae47","color":"#ffffff","border":{"bottom":["thin","#00b04e"],"top":["thin","#00b04e"],"left":["thin","#00b04e"],"right":["thin","#00b04e"]}},{"align":"center","font":{"name":"Lato","size":10},"bgcolor":"#71ae47","color":"#ffffff","border":{"bottom":["thin","#00b04e"],"top":["thin","#00b04e"],"left":["thin","#00b04e"],"right":["thin","#00b04e"]}},{"align":"center","font":{"name":"Lato","size":10},"bgcolor":"#71ae47","color":"#ffffff"},{"font":{"name":"Lato","size":10},"bgcolor":"#71ae47","color":"#ffffff","border":{"bottom":["thin","#00b04e"],"top":["thin","#00b04e"],"left":["thin","#00b04e"],"right":["thin","#00b04e"]}},{"font":{"name":"Lato","size":10},"bgcolor":"#71ae47","color":"#ffffff"},{"textwrap":true,"align":"center","valign":"bottom","font":{"name":"Lato","size":10},"bgcolor":"#71ae47","color":"#ffffff","border":{"bottom":["thin","#00b04e"],"top":["thin","#00b04e"],"left":["thin","#00b04e"],"right":["thin","#00b04e"]}},{"textwrap":true,"font":{"name":"Lato","size":10},"bgcolor":"#71ae47","color":"#ffffff"},{"textwrap":true,"align":"center","font":{"name":"Lato","size":10},"bgcolor":"#71ae47","color":"#ffffff"},{"textwrap":true,"align":"center","valign":"middle","font":{"name":"Lato","size":10},"bgcolor":"#71ae47","color":"#ffffff"},{"textwrap":true,"valign":"bottom","font":{"name":"Lato","size":10},"bgcolor":"#71ae47","color":"#ffffff","border":{"bottom":["thin","#00b04e"],"top":["thin","#00b04e"],"left":["thin","#00b04e"],"right":["thin","#00b04e"]}},{"textwrap":true,"font":{"name":"Lato","size":10},"bgcolor":"#71ae47","color":"#ffffff","valign":"middle","border":{"bottom":["thin","#00b04e"],"top":["thin","#00b04e"],"left":["thin","#00b04e"],"right":["thin","#00b04e"]}},{"textwrap":true,"font":{"name":"Lato","size":10},"bgcolor":"#02a274","color":"#ffffff","border":{"bottom":["thin","#00b04e"],"top":["thin","#00b04e"],"left":["thin","#00b04e"],"right":["thin","#00b04e"]}},{"textwrap":true,"align":"center","font":{"name":"Lato","size":10},"bgcolor":"#02a274","color":"#ffffff","border":{"bottom":["thin","#00b04e"],"top":["thin","#00b04e"],"left":["thin","#00b04e"],"right":["thin","#00b04e"]}},{"textwrap":true,"align":"center","valign":"middle","font":{"name":"Lato","size":10},"bgcolor":"#02a274","color":"#ffffff","border":{"bottom":["thin","#00b04e"],"top":["thin","#00b04e"],"left":["thin","#00b04e"],"right":["thin","#00b04e"]}},{"align":"center","font":{"name":"Lato","size":10},"bgcolor":"#02a274","color":"#ffffff","border":{"bottom":["thin","#00b04e"],"top":["thin","#00b04e"],"left":["thin","#00b04e"],"right":["thin","#00b04e"]}},{"align":"center","font":{"name":"Lato","size":10},"bgcolor":"#02a274","color":"#ffffff"},{"font":{"name":"Lato","size":10},"bgcolor":"#02a274","color":"#ffffff","border":{"bottom":["thin","#00b04e"],"top":["thin","#00b04e"],"left":["thin","#00b04e"],"right":["thin","#00b04e"]}},{"font":{"name":"Lato","size":10},"bgcolor":"#02a274","color":"#ffffff"},{"textwrap":true,"align":"center","valign":"bottom","font":{"name":"Lato","size":10},"bgcolor":"#02a274","color":"#ffffff","border":{"bottom":["thin","#00b04e"],"top":["thin","#00b04e"],"left":["thin","#00b04e"],"right":["thin","#00b04e"]}},{"textwrap":true,"font":{"name":"Lato","size":10},"bgcolor":"#02a274","color":"#ffffff"},{"textwrap":true,"align":"center","font":{"name":"Lato","size":10},"bgcolor":"#02a274","color":"#ffffff"},{"textwrap":true,"align":"center","valign":"middle","font":{"name":"Lato","size":10},"bgcolor":"#02a274","color":"#ffffff"},{"textwrap":true,"valign":"bottom","font":{"name":"Lato","size":10},"bgcolor":"#02a274","color":"#ffffff","border":{"bottom":["thin","#00b04e"],"top":["thin","#00b04e"],"left":["thin","#00b04e"],"right":["thin","#00b04e"]}},{"textwrap":true,"font":{"name":"Lato","size":10},"bgcolor":"#02a274","color":"#ffffff","valign":"middle","border":{"bottom":["thin","#00b04e"],"top":["thin","#00b04e"],"left":["thin","#00b04e"],"right":["thin","#00b04e"]}},{"align":"center","font":{"size":15,"bold":true,"name":"Lato"}},{"align":"center","font":{"name":"Lato","size":9},"border":{"bottom":["thin","#000100"]}},{"align":"center","font":{"name":"Lato","size":9}},{"font":{"name":"Lato","size":9}},{"font":{"size":9}},{"align":"center","font":{"size":9}},{"align":"center","font":{"name":"Lato","size":9},"border":{"bottom":["thin","#000100"]},"color":"#a5a5a5"},{"align":"center","font":{"name":"Lato","size":9},"color":"#a5a5a5"},{"font":{"name":"Lato","size":9},"color":"#a5a5a5"},{"font":{"size":9},"color":"#a5a5a5"},{"align":"center","font":{"size":9},"color":"#a5a5a5"},{"align":"center","font":{"name":"Lato","size":9},"border":{"bottom":["thin","#000100"]},"color":"#7f7f7f"},{"align":"center","font":{"name":"Lato","size":9},"color":"#7f7f7f"},{"font":{"name":"Lato","size":9},"color":"#7f7f7f"},{"font":{"size":9},"color":"#7f7f7f"},{"align":"center","font":{"size":9},"color":"#7f7f7f"},{"align":"center","font":{"name":"Lato","size":9},"border":{"bottom":["thin","#7f7f7f"],"top":["thin","#7f7f7f"],"left":["thin","#7f7f7f"],"right":["thin","#7f7f7f"]},"color":"#7f7f7f"},{"align":"center","font":{"name":"Lato","size":9},"border":{"bottom":["thin","#7f7f7f"]},"color":"#7f7f7f"},{"border":{"bottom":["thin","#d8d8d8"]},"align":"center","font":{"size":8}},{"border":{"bottom":["thin","#a5a5a5"]},"align":"center","font":{"size":8}},{"textwrap":true,"font":{"name":"Lato","size":10},"bgcolor":"#02a274","color":"#ffffff","border":{"bottom":["thin","#a5a5a5"],"top":["thin","#a5a5a5"],"left":["thin","#a5a5a5"],"right":["thin","#a5a5a5"]}},{"textwrap":true,"align":"center","font":{"name":"Lato","size":10},"bgcolor":"#02a274","color":"#ffffff","border":{"bottom":["thin","#a5a5a5"],"top":["thin","#a5a5a5"],"left":["thin","#a5a5a5"],"right":["thin","#a5a5a5"]}},{"textwrap":true,"align":"center","valign":"middle","font":{"name":"Lato","size":10},"bgcolor":"#02a274","color":"#ffffff","border":{"bottom":["thin","#a5a5a5"],"top":["thin","#a5a5a5"],"left":["thin","#a5a5a5"],"right":["thin","#a5a5a5"]}},{"align":"center","font":{"name":"Lato","size":10},"bgcolor":"#02a274","color":"#ffffff","border":{"bottom":["thin","#a5a5a5"],"top":["thin","#a5a5a5"],"left":["thin","#a5a5a5"],"right":["thin","#a5a5a5"]}},{"font":{"name":"Lato","size":10},"bgcolor":"#02a274","color":"#ffffff","border":{"bottom":["thin","#a5a5a5"],"top":["thin","#a5a5a5"],"left":["thin","#a5a5a5"],"right":["thin","#a5a5a5"]}},{"textwrap":true,"align":"center","valign":"bottom","font":{"name":"Lato","size":10},"bgcolor":"#02a274","color":"#ffffff","border":{"bottom":["thin","#a5a5a5"],"top":["thin","#a5a5a5"],"left":["thin","#a5a5a5"],"right":["thin","#a5a5a5"]}},{"textwrap":true,"valign":"bottom","font":{"name":"Lato","size":10},"bgcolor":"#02a274","color":"#ffffff","border":{"bottom":["thin","#a5a5a5"],"top":["thin","#a5a5a5"],"left":["thin","#a5a5a5"],"right":["thin","#a5a5a5"]}},{"textwrap":true,"font":{"name":"Lato","size":10},"bgcolor":"#02a274","color":"#ffffff","valign":"middle","border":{"bottom":["thin","#a5a5a5"],"top":["thin","#a5a5a5"],"left":["thin","#a5a5a5"],"right":["thin","#a5a5a5"]}},{"border":{"bottom":["thin","#a5a5a5"],"top":["thin","#a5a5a5"],"left":["thin","#a5a5a5"],"right":["thin","#a5a5a5"]},"align":"center","font":{"size":8}}],"validations":[],"cols":{"0":{"width":30},"1":{"width":68},"2":{"width":86},"3":{"width":93},"4":{"width":91},"5":{"width":156},"6":{"width":95},"7":{"width":85},"8":{"width":37},"9":{"width":30},"10":{"width":43},"11":{"width":66},"12":{"width":38},"13":{"width":41},"14":{"width":54},"15":{"width":49},"16":{"width":45},"17":{"width":49},"18":{"width":53},"19":{"width":40},"20":{"width":50},"21":{"width":40},"22":{"width":39},"len":50},"merges":["M4:R4","B4:B5","C4:C5","D4:D5","E4:E5","F4:F5","G4:G5","H4:H5","I4:K4","L4:L5","S4:S5","T4:W4","E2:G2","B2:D2","B1:W1","P2:W2","H2:O2"]}', '', 'https://static.jeecg.com/designreport/images/QQ截图20201207113312_1607312171402.png', 'jeecg', '2020-07-14 16:41:42', 'admin', '2021-02-03 14:01:17', 0, NULL, NULL, 1, 263, NULL, NULL, NULL, NULL, 0, NULL); -INSERT INTO "public"."jimu_report" VALUES ('907480464532770816', '20240117141013', '主子报表循环块', NULL, NULL, '984272091947253760', '{"loopBlockList":[{"sci":0,"sri":0,"eci":8,"eri":36,"index":1,"db":"aa"}],"area":{"sri":9,"sci":11,"eri":9,"eci":11,"width":100,"height":25},"excel_config_id":"907480464532770816","printConfig":{"layout":"portrait","paginationShow":false,"printCallBackUrl":"","paper":"A4","isBackend":false,"width":210,"paginationLocation":"middle","definition":1,"marginX":10,"height":297,"marginY":10},"hiddenCells":[],"zonedEditionList":[],"rows":{"0":{"cells":{"0":{"loopBlock":1,"text":""},"1":{"loopBlock":1,"merge":[0,6],"style":8,"text":"订货商信息","height":0},"2":{"loopBlock":1,"text":""},"3":{"loopBlock":1,"text":""},"4":{"loopBlock":1,"text":""},"5":{"loopBlock":1,"text":""},"6":{"loopBlock":1,"text":""},"7":{"loopBlock":1,"text":""},"8":{"loopBlock":1,"text":""}},"height":57},"1":{"cells":{"0":{"loopBlock":1,"text":""},"1":{"loopBlock":1,"style":10,"text":"订单编号:"},"2":{"loopBlock":1,"merge":[0,2],"style":42,"text":"#{aa.order_code}","height":0},"3":{"loopBlock":1,"text":""},"4":{"loopBlock":1,"text":""},"5":{"loopBlock":1,"text":""},"6":{"loopBlock":1,"text":""},"7":{"loopBlock":1,"text":""},"8":{"loopBlock":1,"text":""}},"height":34},"2":{"cells":{"0":{"loopBlock":1,"text":""},"1":{"loopBlock":1,"style":10,"text":"订单地址:"},"2":{"loopBlock":1,"merge":[0,1],"style":42,"text":"#{aa.descc}","height":0},"3":{"loopBlock":1,"text":""},"4":{"loopBlock":1,"style":10,"text":"订单日期:"},"5":{"loopBlock":1,"merge":[0,1],"style":42,"text":"#{aa.order_date}","height":0},"6":{"loopBlock":1,"text":""},"7":{"loopBlock":1,"text":""},"8":{"loopBlock":1,"text":""}},"height":34},"3":{"cells":{"0":{"loopBlock":1,"text":""},"1":{"loopBlock":1,"style":10,"text":"订单姓名:"},"2":{"loopBlock":1,"merge":[0,1],"style":42,"text":"#{aa.create_by}","height":0},"3":{"loopBlock":1,"text":""},"4":{"loopBlock":1,"style":10,"text":"到货日期:"},"5":{"loopBlock":1,"merge":[0,1],"style":42,"text":"#{aa.create_time}","height":0},"6":{"loopBlock":1,"text":""},"7":{"loopBlock":1,"text":""},"8":{"loopBlock":1,"text":""}},"height":31},"4":{"cells":{"0":{"loopBlock":1,"text":""},"1":{"loopBlock":1,"text":""},"2":{"loopBlock":1,"text":""},"3":{"loopBlock":1,"text":""},"4":{"loopBlock":1,"text":""},"5":{"loopBlock":1,"text":""},"6":{"loopBlock":1,"text":""},"7":{"loopBlock":1,"text":""},"8":{"loopBlock":1,"text":""}}},"5":{"cells":{"0":{"loopBlock":1,"text":""},"1":{"loopBlock":1,"decimalPlaces":"4","merge":[0,6],"style":31,"text":"订单详情"},"2":{"loopBlock":1},"3":{"loopBlock":1},"4":{"loopBlock":1},"5":{"loopBlock":1},"6":{"loopBlock":1},"7":{"loopBlock":1},"8":{"loopBlock":1,"text":""}},"height":51},"6":{"cells":{"0":{"loopBlock":1,"text":""},"1":{"loopBlock":1,"style":15,"text":"商品编码"},"2":{"loopBlock":1,"style":15,"text":"商品名称"},"3":{"loopBlock":1,"style":15,"text":"销售时间"},"4":{"loopBlock":1,"style":15,"text":"销售数据量"},"5":{"loopBlock":1,"style":15,"text":"定价"},"6":{"loopBlock":1,"style":15,"text":"优惠价"},"7":{"loopBlock":1,"style":15,"text":"付款金额"},"8":{"loopBlock":1,"text":""}},"height":42},"7":{"cells":{"0":{"loopBlock":1,"text":""},"1":{"loopBlock":1,"style":18,"text":"#{bb.product_name}"},"2":{"loopBlock":1,"style":18,"text":"#{bb.product_name}"},"3":{"loopBlock":1,"style":18,"text":"#{bb.product_name}"},"4":{"loopBlock":1,"style":18,"text":"#{bb.num}"},"5":{"loopBlock":1,"decimalPlaces":"4","style":19,"text":"#{bb.price}"},"6":{"loopBlock":1,"decimalPlaces":"1","style":19,"text":"#{bb.price}"},"7":{"loopBlock":1,"style":18,"text":"#{bb.pro_type}"},"8":{"loopBlock":1,"text":""}}},"8":{"cells":{"0":{"loopBlock":1,"text":""},"1":{"loopBlock":1,"text":""},"2":{"loopBlock":1,"text":""},"3":{"loopBlock":1,"text":""},"4":{"loopBlock":1,"text":""},"5":{"loopBlock":1,"text":""},"6":{"loopBlock":1,"text":""},"7":{"loopBlock":1,"text":""},"8":{"loopBlock":1,"text":""}}},"9":{"cells":{"0":{"loopBlock":1,"text":""},"1":{"loopBlock":1,"text":""},"2":{"loopBlock":1,"text":""},"3":{"loopBlock":1,"text":""},"4":{"loopBlock":1,"text":""},"5":{"loopBlock":1,"text":""},"6":{"loopBlock":1,"text":""},"7":{"loopBlock":1,"text":""},"8":{"loopBlock":1,"text":""}}},"10":{"cells":{"0":{"loopBlock":1,"text":""},"1":{"loopBlock":1,"style":39,"text":"备注:"},"2":{"loopBlock":1,"style":33,"text":" "},"3":{"loopBlock":1,"style":33,"text":" "},"4":{"loopBlock":1,"style":33,"text":" "},"5":{"loopBlock":1,"style":33,"text":" "},"6":{"loopBlock":1,"style":33,"text":" "},"7":{"loopBlock":1,"style":34,"text":" "},"8":{"loopBlock":1,"text":""}},"height":25},"11":{"cells":{"0":{"loopBlock":1,"text":""},"1":{"loopBlock":1,"merge":[0,6],"style":41,"text":"1、查看信息,在浏览器输入“?did=1”或“?did=2”","height":0},"2":{"loopBlock":1,"text":""},"3":{"loopBlock":1,"text":""},"4":{"loopBlock":1,"text":""},"5":{"loopBlock":1,"text":""},"6":{"loopBlock":1,"text":""},"7":{"loopBlock":1,"text":""},"8":{"loopBlock":1,"text":""}},"height":37},"12":{"cells":{"0":{"loopBlock":1,"text":""},"1":{"loopBlock":1,"style":35,"text":" "},"2":{"loopBlock":1,"text":" "},"3":{"loopBlock":1,"text":""},"4":{"loopBlock":1,"text":""},"5":{"loopBlock":1,"text":""},"6":{"loopBlock":1,"text":""},"7":{"loopBlock":1,"style":36,"text":" "},"8":{"loopBlock":1,"text":""}}},"13":{"cells":{"0":{"loopBlock":1,"text":""},"1":{"loopBlock":1,"style":37,"text":" "},"2":{"loopBlock":1,"style":28,"text":" "},"3":{"loopBlock":1,"style":28,"text":" "},"4":{"loopBlock":1,"style":28,"text":" "},"5":{"loopBlock":1,"style":28,"text":" "},"6":{"loopBlock":1,"style":28,"text":" "},"7":{"loopBlock":1,"style":38,"text":" "},"8":{"loopBlock":1,"text":""}}},"14":{"cells":{"0":{"loopBlock":1,"text":""},"1":{"loopBlock":1,"text":""},"2":{"loopBlock":1,"text":""},"3":{"loopBlock":1,"text":""},"4":{"loopBlock":1,"text":""},"5":{"loopBlock":1,"text":""},"6":{"loopBlock":1,"text":""},"7":{"loopBlock":1,"text":""},"8":{"loopBlock":1,"text":""}}},"15":{"cells":{"0":{"loopBlock":1,"text":""},"1":{"loopBlock":1},"2":{"loopBlock":1},"3":{"loopBlock":1,"text":""},"4":{"loopBlock":1,"text":""},"5":{"loopBlock":1,"text":""},"6":{"loopBlock":1,"text":""},"7":{"loopBlock":1,"text":""},"8":{"loopBlock":1,"text":""}}},"16":{"cells":{"0":{"loopBlock":1,"text":""},"1":{"loopBlock":1},"2":{"loopBlock":1},"3":{"loopBlock":1,"text":""},"4":{"loopBlock":1,"text":""},"5":{"loopBlock":1,"text":""},"6":{"loopBlock":1,"text":""},"7":{"loopBlock":1,"text":""},"8":{"loopBlock":1,"text":""}}},"17":{"cells":{"0":{"loopBlock":1,"text":""},"1":{"loopBlock":1,"text":""},"2":{"loopBlock":1},"3":{"loopBlock":1,"text":""},"4":{"loopBlock":1,"text":""},"5":{"loopBlock":1,"text":""},"6":{"loopBlock":1,"text":""},"7":{"loopBlock":1,"text":""},"8":{"loopBlock":1,"text":""}}},"18":{"cells":{"0":{"loopBlock":1,"text":""},"1":{"loopBlock":1,"text":""},"2":{"loopBlock":1,"text":""},"3":{"loopBlock":1,"text":""},"4":{"loopBlock":1,"text":""},"5":{"loopBlock":1,"text":""},"6":{"loopBlock":1,"text":""},"7":{"loopBlock":1,"text":""},"8":{"loopBlock":1,"text":""}}},"19":{"cells":{"0":{"loopBlock":1,"text":""},"1":{"loopBlock":1,"text":""},"2":{"loopBlock":1,"text":""},"3":{"loopBlock":1,"text":""},"4":{"loopBlock":1,"text":""},"5":{"loopBlock":1,"text":""},"6":{"loopBlock":1,"text":""},"7":{"loopBlock":1,"text":""},"8":{"loopBlock":1,"text":""}}},"20":{"cells":{"0":{"loopBlock":1,"text":""},"1":{"loopBlock":1,"text":""},"2":{"loopBlock":1,"text":""},"3":{"loopBlock":1,"text":""},"4":{"loopBlock":1,"text":""},"5":{"loopBlock":1,"text":""},"6":{"loopBlock":1,"text":""},"7":{"loopBlock":1,"text":""},"8":{"loopBlock":1,"text":""}}},"21":{"cells":{"0":{"loopBlock":1,"text":""},"1":{"loopBlock":1},"2":{"loopBlock":1},"3":{"loopBlock":1,"text":""},"4":{"loopBlock":1,"text":""},"5":{"loopBlock":1,"text":""},"6":{"loopBlock":1,"text":""},"7":{"loopBlock":1,"text":""},"8":{"loopBlock":1,"text":""}}},"22":{"cells":{"0":{"loopBlock":1,"text":""},"1":{"loopBlock":1,"text":""},"2":{"loopBlock":1,"text":""},"3":{"loopBlock":1,"text":""},"4":{"loopBlock":1,"text":""},"5":{"loopBlock":1,"text":""},"6":{"loopBlock":1,"text":""},"7":{"loopBlock":1,"text":""},"8":{"loopBlock":1,"text":""}}},"23":{"cells":{"0":{"loopBlock":1,"text":""},"1":{"loopBlock":1,"text":""},"2":{"loopBlock":1,"text":""},"3":{"loopBlock":1,"text":""},"4":{"loopBlock":1,"text":""},"5":{"loopBlock":1,"text":""},"6":{"loopBlock":1,"text":""},"7":{"loopBlock":1,"text":""},"8":{"loopBlock":1,"text":""}}},"24":{"cells":{"0":{"loopBlock":1,"text":""},"1":{"loopBlock":1,"text":""},"2":{"loopBlock":1,"text":""},"3":{"loopBlock":1,"text":""},"4":{"loopBlock":1,"text":""},"5":{"loopBlock":1,"text":""},"6":{"loopBlock":1,"text":""},"7":{"loopBlock":1,"text":""},"8":{"loopBlock":1,"text":""}}},"25":{"cells":{"0":{"loopBlock":1,"text":""},"1":{"loopBlock":1,"text":""},"2":{"loopBlock":1,"text":""},"3":{"loopBlock":1,"text":""},"4":{"loopBlock":1,"text":""},"5":{"loopBlock":1,"text":""},"6":{"loopBlock":1,"text":""},"7":{"loopBlock":1,"text":""},"8":{"loopBlock":1,"text":""}}},"26":{"cells":{"0":{"loopBlock":1,"text":""},"1":{"loopBlock":1},"2":{"loopBlock":1},"3":{"loopBlock":1},"4":{"loopBlock":1},"5":{"loopBlock":1,"text":""},"6":{"loopBlock":1,"text":""},"7":{"loopBlock":1,"text":""},"8":{"loopBlock":1,"text":""}}},"27":{"cells":{"0":{"loopBlock":1,"text":""},"1":{"loopBlock":1,"text":""},"2":{"loopBlock":1,"text":""},"3":{"loopBlock":1,"text":""},"4":{"loopBlock":1,"text":""},"5":{"loopBlock":1,"text":""},"6":{"loopBlock":1,"text":""},"7":{"loopBlock":1,"text":""},"8":{"loopBlock":1,"text":""}}},"28":{"cells":{"0":{"loopBlock":1,"text":""},"1":{"loopBlock":1,"text":""},"2":{"loopBlock":1,"text":""},"3":{"loopBlock":1,"text":""},"4":{"loopBlock":1,"text":""},"5":{"loopBlock":1,"text":""},"6":{"loopBlock":1,"text":""},"7":{"loopBlock":1,"text":""},"8":{"loopBlock":1,"text":""}}},"29":{"cells":{"0":{"loopBlock":1,"text":""},"1":{"loopBlock":1,"text":""},"2":{"loopBlock":1,"text":""},"3":{"loopBlock":1,"text":""},"4":{"loopBlock":1,"text":""},"5":{"loopBlock":1,"text":""},"6":{"loopBlock":1,"text":""},"7":{"loopBlock":1,"text":""},"8":{"loopBlock":1,"text":""}}},"30":{"cells":{"0":{"loopBlock":1,"text":""},"1":{"loopBlock":1,"text":""},"2":{"loopBlock":1,"text":""},"3":{"loopBlock":1,"text":""},"4":{"loopBlock":1,"text":""},"5":{"loopBlock":1,"text":""},"6":{"loopBlock":1,"text":""},"7":{"loopBlock":1,"text":""},"8":{"loopBlock":1,"text":""}}},"31":{"cells":{"0":{"loopBlock":1,"text":""},"1":{"loopBlock":1,"text":""},"2":{"loopBlock":1,"text":""},"3":{"loopBlock":1,"text":""},"4":{"loopBlock":1,"text":""},"5":{"loopBlock":1,"text":""},"6":{"loopBlock":1,"text":""},"7":{"loopBlock":1,"text":""},"8":{"loopBlock":1,"text":""}}},"32":{"cells":{"0":{"loopBlock":1,"text":""},"1":{"loopBlock":1,"text":""},"2":{"loopBlock":1,"text":""},"3":{"loopBlock":1,"text":""},"4":{"loopBlock":1,"text":""},"5":{"loopBlock":1,"text":""},"6":{"loopBlock":1,"text":""},"7":{"loopBlock":1,"text":""},"8":{"loopBlock":1,"text":""}}},"33":{"cells":{"0":{"loopBlock":1,"text":""},"1":{"loopBlock":1,"text":""},"2":{"loopBlock":1,"text":""},"3":{"loopBlock":1,"text":""},"4":{"loopBlock":1,"text":""},"5":{"loopBlock":1,"text":""},"6":{"loopBlock":1,"text":""},"7":{"loopBlock":1,"text":""},"8":{"loopBlock":1,"text":""}}},"34":{"cells":{"0":{"loopBlock":1,"text":""},"1":{"loopBlock":1,"text":""},"2":{"loopBlock":1,"text":""},"3":{"loopBlock":1,"text":""},"4":{"loopBlock":1,"text":""},"5":{"loopBlock":1,"text":""},"6":{"loopBlock":1,"text":""},"7":{"loopBlock":1,"text":""},"8":{"loopBlock":1,"text":""}}},"35":{"cells":{"0":{"loopBlock":1,"text":""},"1":{"loopBlock":1,"text":""},"2":{"loopBlock":1,"text":""},"3":{"loopBlock":1,"text":""},"4":{"loopBlock":1,"text":""},"5":{"loopBlock":1,"text":""},"6":{"loopBlock":1,"text":""},"7":{"loopBlock":1,"text":""},"8":{"loopBlock":1,"text":""}}},"36":{"cells":{"0":{"loopBlock":1,"text":""},"1":{"loopBlock":1,"text":""},"2":{"loopBlock":1,"text":""},"3":{"loopBlock":1,"text":""},"4":{"loopBlock":1,"text":""},"5":{"loopBlock":1,"text":""},"6":{"loopBlock":1,"text":""},"7":{"loopBlock":1,"text":""},"8":{"loopBlock":1,"text":""}}},"len":102},"dbexps":[],"toolPrintSizeObj":{"printType":"A4","widthPx":718,"heightPx":1047},"dicts":[],"rpbar":{"show":true,"pageSize":"","btnList":[]},"fixedPrintHeadRows":[],"fixedPrintTailRows":[],"freeze":"A1","dataRectWidth":682,"displayConfig":{},"background":false,"name":"sheet1","autofilter":{},"styles":[{"border":{"top":["thin","#000"],"left":["thin","#000"],"bottom":["thin","#000"],"right":["thin","#000"]}},{"border":{"top":["thin","#000"],"left":["thin","#000"],"bottom":["thin","#000"],"right":["thin","#000"]},"align":"center"},{"border":{"top":["thin","#000"],"left":["thin","#000"],"bottom":["thin","#000"],"right":["thin","#000"]},"bgcolor":"#5b9cd6","align":"center"},{"font":{"size":18}},{"font":{"size":18,"bold":true}},{"align":"center"},{"align":"center","font":{"size":18,"bold":true}},{"bgcolor":"#5b9cd6","align":"center"},{"align":"center","font":{"size":18,"name":"宋体","bold":true}},{"bgcolor":"#5b9cd6","align":"center","font":{"name":"宋体"}},{"font":{"name":"宋体"}},{"bgcolor":"#5b9cd6","color":"#ffffff","align":"center","font":{"name":"宋体"}},{"border":{"top":["thin","#5b9cd6"],"left":["thin","#5b9cd6"],"bottom":["thin","#5b9cd6"],"right":["thin","#5b9cd6"]},"bgcolor":"#5b9cd6","color":"#ffffff","align":"center","font":{"name":"宋体"}},{"border":{"top":["thin","#5b9cd6"],"left":["thin","#5b9cd6"],"bottom":["thin","#5b9cd6"],"right":["thin","#5b9cd6"]},"font":{"name":"宋体"}},{"border":{"top":["thin","#bfbfbf"],"left":["thin","#bfbfbf"],"bottom":["thin","#bfbfbf"],"right":["thin","#bfbfbf"]}},{"border":{"top":["thin","#bfbfbf"],"left":["thin","#bfbfbf"],"bottom":["thin","#bfbfbf"],"right":["thin","#bfbfbf"]},"bgcolor":"#5b9cd6","color":"#ffffff","align":"center","font":{"name":"宋体"}},{"border":{"top":["thin","#bfbfbf"],"left":["thin","#bfbfbf"],"bottom":["thin","#bfbfbf"],"right":["thin","#bfbfbf"]},"font":{"name":"宋体"}},{},{"border":{"top":["thin","#bfbfbf"],"left":["thin","#bfbfbf"],"bottom":["thin","#bfbfbf"],"right":["thin","#bfbfbf"]},"align":"center","font":{"name":"宋体"}},{"border":{"top":["thin","#bfbfbf"],"left":["thin","#bfbfbf"],"bottom":["thin","#bfbfbf"],"right":["thin","#bfbfbf"]},"format":"number","align":"center","font":{"name":"宋体"}},{"border":{"top":["thin","#bfbfbf"],"left":["thin","#bfbfbf"],"bottom":["thin","#bfbfbf"],"right":["thin","#bfbfbf"]},"format":"normal","align":"center","font":{"name":"宋体"}},{"font":{"size":18,"bold":false}},{"font":{"size":18,"name":"宋体","bold":false}},{"align":"center","font":{"size":18,"name":"宋体","bold":false}},{"font":{"size":18,"name":"宋体","bold":true}},{"border":{"bottom":["thin","#000"]}},{"border":{"bottom":["thin","#a5a5a5"]}},{"border":{"bottom":["thin","#262626"]}},{"border":{"bottom":["thin","#595959"]}},{"valign":"bottom","align":"center","font":{"size":18,"name":"宋体","bold":true}},{"valign":"bottom","align":"left","font":{"size":18,"name":"宋体","bold":true}},{"valign":"middle","align":"center","font":{"size":18,"name":"宋体","bold":true}},{"border":{"top":["thin","#595959"],"left":["thin","#595959"]}},{"border":{"top":["thin","#595959"]}},{"border":{"top":["thin","#595959"],"right":["thin","#595959"]}},{"border":{"left":["thin","#595959"]}},{"border":{"right":["thin","#595959"]}},{"border":{"left":["thin","#595959"],"bottom":["thin","#595959"]}},{"border":{"bottom":["thin","#595959"],"right":["thin","#595959"]}},{"border":{"top":["thin","#595959"],"left":["thin","#595959"]},"font":{"name":"宋体"}},{"border":{"left":["thin","#595959"],"right":["thin","#595959"]}},{"border":{"left":["thin","#595959"],"right":["thin","#595959"]},"font":{"name":"宋体"}},{"border":{"bottom":["thin","#595959"]},"font":{"name":"宋体"}}],"validations":[],"cols":{"0":{"width":39},"1":{"width":73},"2":{"width":89},"3":{"width":101},"4":{"width":80},"8":{"width":29},"len":100},"merges":["B1:H1","C2:E2","C3:D3","F3:G3","C4:D4","F4:G4","B6:H6","B12:H12"]}', NULL, 'https://static.jeecg.com/designreport/images/未标题-1_1617266678584.png', 'admin', '2024-01-17 14:10:13', 'admin', '2024-01-24 20:02:03', 0, NULL, NULL, 1, 82, NULL, NULL, NULL, NULL, 0, NULL); -INSERT INTO "public"."jimu_report" VALUES ('1347454742040809472', '20210108161240', '实例:年度各月份佣金收入', NULL, NULL, '984272091947253760', '{"loopBlockList":[],"area":false,"printElWidth":718,"excel_config_id":"1347454742040809472","printElHeight":1047,"rows":{"1":{"cells":{"1":{"text":" ","virtual":"pZTpI3BKFw0lh6D7"},"2":{"text":"年度各月份佣金收入","style":23,"merge":[0,3],"virtual":"pZTpI3BKFw0lh6D7"},"3":{"style":24},"4":{"style":24},"5":{"style":24},"6":{"text":" "}},"height":37},"2":{"cells":{"1":{"text":" "},"2":{"text":" "},"3":{"text":" "},"4":{"text":" "},"5":{"text":" "},"6":{"text":" "}}},"4":{"cells":{"1":{"text":"查询年度:2019"},"4":{"text":"查询机构:总公司"},"6":{"text":"单位:元"}}},"6":{"cells":{"1":{"text":"月份","style":12},"2":{"text":"佣金/主营业收入","style":12},"3":{"text":"累计","style":12},"4":{"text":"历史最低水平","style":12},"5":{"text":"历史平均水平","style":12},"6":{"text":"历史最高水平","style":12}}},"7":{"cells":{"1":{"text":"#{tmp_report_data_1.monty}","style":0},"2":{"text":"#{tmp_report_data_1.main_income}","style":0},"3":{"text":"#{tmp_report_data_1.total}","style":18},"4":{"text":"#{tmp_report_data_1.his_lowest}","style":0},"5":{"text":"#{tmp_report_data_1.his_average}","style":0},"6":{"text":"#{tmp_report_data_1.his_highest}","style":0}},"isDrag":true},"9":{"cells":{"1":{"merge":[1,1]}}},"len":99},"dbexps":[],"toolPrintSizeObj":{"printType":"A4","widthPx":718,"heightPx":1047},"dicts":[],"freeze":"A1","dataRectWidth":678,"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":{"bold":true}},{"font":{"bold":true}},{"border":{"bottom":["thin","#000"],"top":["thin","#000"],"left":["thin","#000"],"right":["thin","#000"]},"font":{"bold":false}},{"font":{"bold":false}},{"border":{"bottom":["thin","#000"],"top":["thin","#000"],"left":["thin","#000"],"right":["thin","#000"]},"font":{"bold":true},"align":"center"},{"font":{"bold":true},"align":"center"},{"border":{"bottom":["thin","#000"],"top":["thin","#000"],"left":["thin","#000"],"right":["thin","#000"]},"font":{"bold":true,"size":15},"align":"center"},{"font":{"bold":true,"size":15},"align":"center"},{"border":{"bottom":["thin","#000"],"top":["thin","#000"],"left":["thin","#000"],"right":["thin","#000"]},"bgcolor":"#01b0f1"},{"border":{"bottom":["thin","#000"],"top":["thin","#000"],"left":["thin","#000"],"right":["thin","#000"]},"bgcolor":"#33CCCC"},{"border":{"bottom":["thin","#000"],"top":["thin","#000"],"left":["thin","#000"],"right":["thin","#000"]},"bgcolor":"#33CCCC","align":"center"},{"border":{"bottom":["thin","#000"],"top":["thin","#000"],"left":["thin","#000"],"right":["thin","#000"]},"bgcolor":"#33CCCC","align":"left"},{"font":{"bold":true,"size":16}},{"font":{"bold":true,"size":24}},{"font":{"bold":true,"size":22}},{"font":{"bold":true,"size":22},"align":"center"},{"border":{"bottom":["thin","#000"],"top":["thin","#000"],"left":["thin","#000"],"right":["thin","#000"]},"format":"usd"},{"border":{"bottom":["thin","#000"],"top":["thin","#000"],"left":["thin","#000"],"right":["thin","#000"]},"format":"rmb"},{"font":{"bold":true,"name":"黑体"}},{"font":{"bold":true,"name":"黑体","size":22}},{"font":{"bold":true,"name":"宋体","size":22}},{"font":{"bold":true,"name":"楷体","size":22}},{"font":{"bold":true,"name":"楷体","size":22},"align":"center"},{"align":"center"}],"validations":[],"cols":{"0":{"width":29},"1":{"width":111},"2":{"width":116},"4":{"width":122},"len":50},"merges":["B10:C11","C2:F2"],"imgList":[{"row":1,"col":1,"width":"148","height":"56","src":"https://static.jeecg.com/designreport/images/kunlunlog_1610591367645.png","layer_id":"pZTpI3BKFw0lh6D7","offsetX":0,"offsetY":0,"virtualCellRange":[[1,1],[1,2]]}]}', NULL, NULL, 'admin', '2021-01-08 16:12:40', 'admin', '2025-05-27 09:47:15', 1, NULL, NULL, 0, 55, NULL, NULL, NULL, '2', 0, NULL); -INSERT INTO "public"."jimu_report" VALUES ('1cd9d574d0c42f3915046dc61d9f33bd', '202012171553133795', '企业实时报表副本3795', NULL, NULL, '984302961118724096', '{"chartList":[{"row":6,"col":1,"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\":{\"color\":\"#333\",\"fontSize\":12}},\"grid\":{\"top\":20,\"left\":45,\"bottom\":16,\"right\":46},\"series\":[{\"barWidth\":13,\"data\":[100,800,1200,1700,2500,4000,5800,6500,7000,7500,8000,8800,9500],\"name\":\"销售额\",\"itemStyle\":{\"barBorderRadius\":5,\"color\":\"rgba(67,184,251,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":"1","dataId":"1339491107951640577","axisX":"name","axisY":"value","series":"type","yText":"","xText":"","dbCode":"xiaoshoue","dataId1":"","source":"","target":"","isTiming":true,"intervalTime":"5","chartType":"bar.multi.horizontal","chartId":"pie.doughnut"},"layer_id":"IFj1lg5S5aNG1wPx","offsetX":0,"offsetY":0,"virtualCellRange":[[6,1],[6,2],[6,3],[6,4]]},{"row":6,"col":10,"width":"247","height":"124","config":"{\"legend\":{\"padding\":[25,20,25,10],\"data\":[\"销售额\",\"其他\"],\"top\":\"top\",\"orient\":\"horizontal\",\"left\":\"center\",\"show\":false,\"textStyle\":{\"color\":\"#333\",\"fontSize\":12}},\"series\":[{\"isRose\":false,\"data\":[{\"name\":\"销售额\",\"value\":6000000,\"itemStyle\":{\"color\":\"rgba(43,193,254,1)\"}},{\"name\":\"其他\",\"value\":3400879,\"itemStyle\":{\"color\":\"rgba(42,45,76,0.59)\"}}],\"isRadius\":true,\"roseType\":\"\",\"notCount\":false,\"name\":\"访问来源\",\"minAngle\":0,\"label\":{\"show\":false,\"position\":\"outside\",\"textStyle\":{\"color\":\"\",\"fontSize\":16,\"fontWeight\":\"bolder\"}},\"type\":\"pie\",\"radius\":[\"45%\",\"55%\"],\"autoSort\":false}],\"tooltip\":{\"formatter\":\"{b} : {c}\",\"show\":true,\"textStyle\":{\"color\":\"#fff\",\"fontSize\":\"10\"}},\"title\":{\"show\":false,\"top\":5,\"text\":\"销售进度\",\"textStyle\":{\"color\":\"#FFFFFF\",\"fontWeight\":\"normal\",\"fontSize\":\"14\"},\"left\":\"left\",\"padding\":[5,20,5,10]}}","url":"","extData":{"dataType":"api","apiStatus":"1","dataId":"1339498906765000705","axisX":"name","axisY":"value","series":"type","yText":"","xText":"","dbCode":"xsjd","dataId1":"","source":"","target":"","isTiming":true,"intervalTime":"5","chartType":"pie.doughnut","chartId":"pie.doughnut"},"layer_id":"Yb2TIGEAxnvN9ITx","offsetX":0,"offsetY":0,"virtualCellRange":[[6,10],[6,11]]},{"row":6,"col":12,"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\":[80,500,800,1000,1200,1500,1600,2000],\"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":"1","dataId":"1339495346077728770","axisX":"name","axisY":"value","series":"type","yText":"","xText":"","dbCode":"chengshi","dataId1":"","source":"","target":"","isTiming":true,"intervalTime":"5","chartType":"bar.multi.horizontal","chartId":"bar.multi.horizontal"},"layer_id":"qQHpevWlqElpRQUl","offsetX":0,"offsetY":0,"virtualCellRange":[[6,12],[6,13],[6,14]]},{"row":6,"col":15,"width":"230","height":"127","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\":20,\"right\":48},\"series\":[{\"barWidth\":9,\"data\":[80,500,800,1000,1200,1500,1600,2000],\"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\":\"#c23531\",\"fontWeight\":\"bolder\",\"fontSize\":18},\"left\":\"left\",\"padding\":[5,20,5,20]}}","url":"","extData":{"dataType":"api","apiStatus":"1","dataId":"1339495346077728770","axisX":"name","axisY":"value","series":"type","yText":"","xText":"","dbCode":"chengshi","dataId1":"","source":"","target":"","isTiming":true,"intervalTime":"5","chartType":"bar.multi.horizontal","chartId":"bar.multi.horizontal"},"layer_id":"phTmhkjHLebYlOEQ","offsetX":0,"offsetY":0,"virtualCellRange":[[6,15],[6,16],[6,17],[6,18]]},{"row":7,"col":5,"width":"430","height":"293","config":"{\"geo\":{\"map\":\"china\",\"zoom\":0.5,\"label\":{\"color\":\"#FFFFFF\",\"fontSize\":\"8\",\"show\":true},\"itemStyle\":{\"borderWidth\":0.5,\"areaColor\":\"#8284FB\",\"borderColor\":\"#000\"},\"emphasis\":{\"label\":{\"color\":\"#fff\"},\"itemStyle\":{\"areaColor\":\"#4195EF\"}},\"regions\":[],\"layoutSize\":600,\"roam\":true,\"layoutCenter\":[\"50%\",\"50%\"]},\"series\":[{\"encode\":{\"value\":[2]},\"data\":[{\"name\":\"河北\",\"value\":[114.502461,38.045474,279]},{\"name\":\"海南\",\"value\":[110.33119,20.031971,273]},{\"name\":\"山东\",\"value\":[117.000923,36.675807,229]},{\"name\":\"甘肃\",\"value\":[103.823557,36.058039,194]},{\"name\":\"宁夏\",\"value\":[106.278179,38.46637,193]},{\"name\":\"浙江\",\"value\":[120.153576,30.287459,177]},{\"name\":\"湖南\",\"value\":[112.982279,28.19409,119]},{\"name\":\"湖北\",\"value\":[114.298572,30.584355,79]},{\"name\":\"河南\",\"value\":[113.665412,34.757975,67]},{\"name\":\"北京\",\"value\":[116.405285,39.904989,58]},{\"name\":\"天津\",\"value\":[117.190182,39.125596,59]},{\"name\":\"上海\",\"value\":[121.472644,31.231706,63]}],\"name\":\"\",\"emphasis\":{\"label\":{\"show\":true}},\"itemStyle\":{\"color\":\"#FF1205\"},\"coordinateSystem\":\"geo\",\"label\":{\"formatter\":\"{b}\",\"show\":false,\"position\":\"right\"},\"type\":\"scatter\",\"symbolSize\":5}],\"chartType\":\"map\",\"tooltip\":{\"show\":true,\"textStyle\":{\"color\":\"#fff\",\"fontSize\":\"10\"}},\"title\":{\"show\":false,\"top\":5,\"text\":\"主要城市空气质量\",\"textStyle\":{\"color\":\"#c23531\",\"fontWeight\":\"normal\",\"fontSize\":\"14\"},\"left\":\"left\",\"padding\":[5,20,5,10]}}","url":"","extData":{"chartType":"map.scatter"},"layer_id":"YTri6J59av4gj1CY","offsetX":0,"offsetY":0,"virtualCellRange":[[7,5],[7,6],[7,7],[7,8]]},{"row":14,"col":12,"width":"244","height":"138","config":"{\"legend\":{\"padding\":[25,20,25,10],\"data\":[\"销售额\",\"其他\"],\"top\":\"top\",\"orient\":\"horizontal\",\"left\":\"center\",\"show\":false,\"textStyle\":{\"color\":\"#333\",\"fontSize\":12}},\"series\":[{\"isRose\":false,\"data\":[{\"name\":\"销售额\",\"value\":6000000,\"itemStyle\":{\"color\":\"rgba(43,193,254,1)\"}},{\"name\":\"其他\",\"value\":3400879,\"itemStyle\":{\"color\":\"rgba(42,45,76,0.59)\"}}],\"isRadius\":true,\"roseType\":\"\",\"notCount\":false,\"name\":\"访问来源\",\"minAngle\":0,\"label\":{\"show\":false,\"position\":\"outside\",\"textStyle\":{\"color\":\"\",\"fontSize\":16,\"fontWeight\":\"bolder\"}},\"type\":\"pie\",\"radius\":[\"50%\",\"60%\"],\"autoSort\":false}],\"tooltip\":{\"formatter\":\"{b} : {c}\",\"show\":true,\"textStyle\":{\"color\":\"#fff\",\"fontSize\":\"10\"}},\"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":"1339498906765000705","axisX":"name","axisY":"value","series":"type","yText":"","xText":"","dbCode":"xsjd","dataId1":"","source":"","target":"","isTiming":true,"intervalTime":"5","chartType":"pie.doughnut","chartId":"pie.doughnut"},"layer_id":"ARuuHLfjqV9l1tQD","offsetX":0,"offsetY":0,"virtualCellRange":[[14,12],[14,13],[14,14]]},{"row":14,"col":15,"width":"230","height":"139","config":"{\"legend\":{\"padding\":[25,20,25,10],\"data\":[\"销售额\",\"其他\"],\"top\":\"top\",\"orient\":\"horizontal\",\"left\":\"center\",\"show\":false,\"textStyle\":{\"color\":\"#333\",\"fontSize\":12}},\"series\":[{\"isRose\":false,\"data\":[{\"name\":\"销售额\",\"value\":6000000,\"itemStyle\":{\"color\":\"rgba(43,193,254,1)\"}},{\"name\":\"其他\",\"value\":3400879,\"itemStyle\":{\"color\":\"rgba(42,45,76,0.59)\"}}],\"isRadius\":true,\"roseType\":\"\",\"notCount\":false,\"name\":\"访问来源\",\"minAngle\":0,\"label\":{\"show\":false,\"position\":\"outside\",\"textStyle\":{\"color\":\"\",\"fontSize\":16,\"fontWeight\":\"bolder\"}},\"type\":\"pie\",\"radius\":[\"45%\",\"55%\"],\"autoSort\":false}],\"tooltip\":{\"formatter\":\"{b} : {c}\",\"show\":true,\"textStyle\":{\"color\":\"#fff\",\"fontSize\":\"10\"}},\"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":"1339498906765000705","axisX":"name","axisY":"value","series":"type","yText":"","xText":"","dbCode":"xsjd","dataId1":"","source":"","target":"","isTiming":true,"intervalTime":"5","chartType":"pie.doughnut","chartId":""},"layer_id":"bcrMtWqTd2AJIjLd","offsetX":0,"offsetY":0,"virtualCellRange":[[14,15],[14,16],[14,17],[14,18]]},{"row":14,"col":10,"width":"244","height":"138","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\":15,\"right\":45},\"series\":[{\"barWidth\":9,\"data\":[80,500,800,1000,1200,1500,1600,2000],\"name\":\"销售额\",\"itemStyle\":{\"barBorderRadius\":0,\"color\":\"rgba(146,119,252,1)\"},\"label\":{\"show\":true,\"position\":\"right\",\"textStyle\":{\"color\":\"#698AFB\",\"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\":\"#c23531\",\"fontWeight\":\"bolder\",\"fontSize\":18},\"left\":\"left\",\"padding\":[5,20,5,20]}}","url":"","extData":{"dataType":"api","apiStatus":"1","dataId":"1339495346077728770","axisX":"name","axisY":"value","series":"type","yText":"","xText":"","dbCode":"chengshi","dataId1":"","source":"","target":"","isTiming":true,"intervalTime":"5","chartType":"bar.multi.horizontal","chartId":"bar.multi.horizontal"},"layer_id":"Y1kgYOWBHIVQdSN5","offsetX":0,"offsetY":0,"virtualCellRange":[[14,10],[14,11]]},{"row":20,"col":1,"width":"743","height":"150","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\":\"#FEFEFE\",\"fontSize\":\"10\"}},\"data\":[\"2020-01-09\",\"2020-01-12\",\"2020-01-14\",\"2020-01-16\",\"2020-01-18\"],\"axisLine\":{\"lineStyle\":{\"color\":\"#FFFFFF\"}},\"show\":true,\"name\":\"\",\"splitLine\":{\"lineStyle\":{\"color\":\"red\",\"width\":1,\"type\":\"solid\"},\"show\":false}},\"grid\":{\"top\":53,\"left\":22,\"bottom\":37,\"right\":20},\"series\":[{\"areaStyle\":{\"color\":\"#43B8FB\",\"opacity\":0.7},\"data\":[2,6,7,5,6],\"showSymbol\":true,\"lineStyle\":{\"width\":2},\"symbolSize\":5,\"isArea\":true,\"name\":\"销量\",\"itemStyle\":{\"color\":\"#43B8FB\"},\"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,\"top\":14,\"text\":\"销售额增速\",\"textStyle\":{\"color\":\"#FFFFFF\",\"fontWeight\":\"normal\",\"fontSize\":\"14\"},\"left\":\"left\",\"padding\":[5,20,5,10]}}","url":"","extData":{"dataType":"api","apiStatus":"1","dataId":"1339538388453195777","axisX":"name","axisY":"value","series":"type","yText":"","xText":"","dbCode":"zhexian","dataId1":"","source":"","target":"","isTiming":true,"intervalTime":"5","chartType":"line.area","chartId":""},"layer_id":"uChrZaHYoV04MQpT","offsetX":0,"offsetY":0,"virtualCellRange":[[20,1],[20,2],[20,3],[20,4],[20,5],[20,6],[20,7],[20,8],[20,9]]}],"area":{"sri":4,"sci":5,"eri":4,"eci":5,"width":105,"height":38},"printElWidth":1800,"excel_config_id":"1339478701846433792","printElHeight":1047,"rows":{"0":{"cells":{}},"2":{"cells":{"1":{"merge":[0,17],"text":"企业实时销售数据","style":3}}},"3":{"cells":{},"height":35},"4":{"cells":{"1":{"text":" 销售额省份排名","style":32,"merge":[0,1],"virtual":"IFj1lg5S5aNG1wPx"},"2":{"style":32,"virtual":"IFj1lg5S5aNG1wPx"},"5":{"text":" 销售总额","style":69},"10":{"text":" 销售进度","style":43},"11":{"text":"","style":43},"13":{"text":" 销售额城市排名","style":32,"merge":[0,1]},"14":{"style":32},"15":{"text":" 个人业绩排名","style":32,"merge":[0,1]},"16":{"style":32},"17":{"text":"","style":32,"merge":[0,1]},"18":{"style":32}},"height":38},"5":{"cells":{"1":{"text":" Sales ranking points","virtual":"IFj1lg5S5aNG1wPx","style":62,"merge":[0,1]},"2":{"style":31},"5":{"text":"12436025","style":52,"merge":[1,0]},"6":{"merge":[1,0],"text":"元","style":22},"10":{"text":" Sales progress","style":33},"11":{"text":"","virtual":"Yb2TIGEAxnvN9ITx","style":33},"13":{"text":" Sales ranking","virtual":"qQHpevWlqElpRQUl","style":31},"14":{"style":32},"15":{"text":" Personal ranking","style":62,"merge":[0,1]},"16":{"style":62},"17":{"text":"","style":62,"merge":[0,1]},"18":{"style":62}},"height":24},"6":{"cells":{"1":{"text":"","merge":[0,1],"style":31,"virtual":"IFj1lg5S5aNG1wPx"},"2":{"style":31,"virtual":"IFj1lg5S5aNG1wPx"},"3":{"text":" ","virtual":"IFj1lg5S5aNG1wPx"},"4":{"text":" ","virtual":"IFj1lg5S5aNG1wPx"},"5":{"style":53},"6":{"style":22},"10":{"text":" ","virtual":"Yb2TIGEAxnvN9ITx"},"11":{"text":"","style":33,"virtual":"Yb2TIGEAxnvN9ITx"},"12":{"text":" ","virtual":"qQHpevWlqElpRQUl"},"13":{"text":"","virtual":"qQHpevWlqElpRQUl","style":31},"14":{"text":" ","virtual":"qQHpevWlqElpRQUl"},"15":{"text":" ","virtual":"phTmhkjHLebYlOEQ"},"16":{"text":" ","virtual":"phTmhkjHLebYlOEQ"},"17":{"text":" ","style":31,"virtual":"phTmhkjHLebYlOEQ"},"18":{"text":" ","virtual":"phTmhkjHLebYlOEQ"}}},"7":{"cells":{"5":{"style":53,"virtual":"YTri6J59av4gj1CY"},"6":{"style":22,"virtual":"YTri6J59av4gj1CY"},"7":{"text":" ","virtual":"YTri6J59av4gj1CY"},"8":{"text":" ","virtual":"YTri6J59av4gj1CY"}}},"8":{"cells":{"5":{"style":18,"text":"","virtual":"YTri6J59av4gj1CY"}}},"9":{"cells":{"5":{"style":21,"text":""}}},"10":{"cells":{"5":{"text":"","style":17}}},"12":{"cells":{"10":{"text":" 品类销售排名","style":43},"11":{"text":"","style":43},"13":{"text":" 品类销售额占比","style":43,"merge":[0,1]},"14":{"style":54},"15":{"text":" 一季度销售季度","style":43,"merge":[0,1]},"16":{"style":54},"17":{"text":"","style":43,"merge":[0,1]},"18":{"style":54}}},"13":{"cells":{"10":{"text":" Category Sales ranking","style":31},"11":{"text":"","style":31},"13":{"text":" Type of Sales ","style":31},"15":{"text":" Quarterly sales progree","style":58,"merge":[0,1]},"16":{"style":58},"17":{"text":"","style":58,"merge":[0,1]},"18":{"style":58}}},"14":{"cells":{"10":{"text":" ","virtual":"Y1kgYOWBHIVQdSN5"},"11":{"text":" ","virtual":"Y1kgYOWBHIVQdSN5"},"12":{"text":" ","virtual":"ARuuHLfjqV9l1tQD"},"13":{"text":" ","virtual":"ARuuHLfjqV9l1tQD"},"14":{"text":" ","virtual":"ARuuHLfjqV9l1tQD"},"15":{"text":" ","virtual":"bcrMtWqTd2AJIjLd"},"16":{"text":" ","virtual":"bcrMtWqTd2AJIjLd"},"17":{"text":" ","virtual":"bcrMtWqTd2AJIjLd"},"18":{"text":" ","virtual":"bcrMtWqTd2AJIjLd"}}},"15":{"cells":{},"height":15},"16":{"cells":{"11":{"text":"","style":43},"13":{"text":"","style":43,"merge":[0,1]},"14":{"style":54},"17":{"text":"","style":43,"merge":[0,1]},"18":{"style":54}}},"17":{"cells":{"11":{"text":"","style":31},"13":{"text":"","style":31},"17":{"text":"","merge":[0,1],"style":58},"18":{"style":58}}},"18":{"cells":{}},"20":{"cells":{"1":{"text":" ","virtual":"uChrZaHYoV04MQpT"},"2":{"text":" ","virtual":"uChrZaHYoV04MQpT"},"3":{"text":" ","virtual":"uChrZaHYoV04MQpT"},"4":{"text":" ","virtual":"uChrZaHYoV04MQpT"},"5":{"text":" ","virtual":"uChrZaHYoV04MQpT"},"6":{"text":" ","virtual":"uChrZaHYoV04MQpT"},"7":{"text":" ","virtual":"uChrZaHYoV04MQpT"},"8":{"text":" ","virtual":"uChrZaHYoV04MQpT"},"9":{"text":" ","virtual":"uChrZaHYoV04MQpT"}},"height":39},"22":{"cells":{"10":{"text":"企业经营指标","style":74},"11":{"text":"1201043元","style":73},"13":{"text":"企业经营指标","style":74},"14":{"text":"1201043元","style":73},"16":{"text":"企业经营指标","style":74},"17":{"text":"1201043元","style":73}}},"23":{"cells":{"10":{"text":"企业经营指标1","style":74},"11":{"text":"1201043元","style":73},"13":{"text":"企业经营指标1","style":74},"14":{"text":"1201043元","style":73},"16":{"text":"企业经营指标1","style":74},"17":{"text":"1201043元","style":73}}},"26":{"cells":{},"height":33},"len":100},"dbexps":[],"toolPrintSizeObj":{"printType":"A4","widthPx":794,"heightPx":1047},"dicts":[],"freeze":"A1","dataRectWidth":1584,"background":{"path":"https://static.jeecg.com/designreport/images/bg55_1608205385382.png","repeat":"no-repeat","width":"1525","height":"700"},"name":"sheet1","autofilter":{},"styles":[{"color":"#ffffff"},{"color":"#ffffff","font":{"size":16}},{"color":"#ffffff","font":{"size":16},"align":"center"},{"color":"#ffffff","font":{"size":18},"align":"center"},{"font":{"size":18}},{"color":"#67b1ee"},{"color":"#67b1ee","font":{"size":14}},{"color":"#67b1ee","font":{"size":12}},{"font":{"size":14}},{"font":{"size":18},"bgcolor":"#ffffff"},{"font":{"size":18},"bgcolor":"#ffffff","color":"#ffffff"},{"font":{"size":16},"bgcolor":"#ffffff","color":"#ffffff"},{"color":"#67b1ee","font":{"size":12},"align":"right"},{"font":{"size":16},"bgcolor":"#ffffff","color":"#ffffff","align":"right"},{"color":"#67b1ee","font":{"size":12},"align":"center"},{"font":{"size":16}},{"font":{"size":16},"color":"#fe0000"},{"font":{"size":16},"color":"#fe0000","align":"center"},{"color":"#67b1ee","font":{"size":12},"align":"left"},{"align":"left"},{"align":"left","font":{"size":14}},{"align":"left","font":{"size":14},"color":"#ffffff"},{"font":{"size":14},"color":"#ffffff"},{"font":{"size":12},"color":"#ffffff"},{"font":{"size":12,"bold":true},"color":"#ffffff"},{"font":{"size":12,"bold":false},"color":"#ffffff"},{"font":{"size":11,"bold":false},"color":"#ffffff"},{"font":{"size":8}},{"font":{"size":9}},{"font":{"size":9},"color":"#67b1ee"},{"font":{"size":9},"color":"#67b1ee","valign":"top"},{"font":{"size":8},"color":"#67b1ee","valign":"top"},{"font":{"size":11,"bold":false},"color":"#ffffff","valign":"bottom"},{"font":{"size":8},"color":"#67b1ee"},{"color":"#67b1ee","font":{"size":12},"align":"left","valign":"bottom"},{"align":"left","valign":"bottom"},{"color":"#67b1ee","font":{"size":12},"align":"center","valign":"bottom"},{"align":"center","valign":"bottom"},{"color":"#67b1ee","font":{"size":12},"align":"left","valign":"middle"},{"align":"left","valign":"middle"},{"font":{"size":11}},{"font":{"size":11},"color":"#ffffff"},{"font":{"size":11},"color":"#ffffff","valign":"middle"},{"font":{"size":11},"color":"#ffffff","valign":"bottom"},{"color":"#ffffff","font":{"size":12},"align":"left","valign":"middle"},{"align":"left","valign":"middle","color":"#ffffff"},{"color":"#67b1ee","font":{"size":16}},{"color":"#ffff01","font":{"size":16}},{"color":"#ffffff","font":{"size":11},"align":"left","valign":"middle"},{"color":"#ffffff","font":{"size":14},"align":"left","valign":"middle"},{"color":"#ffff01","font":{"size":14},"align":"left","valign":"middle"},{"font":{"size":14},"color":"#ffff01"},{"color":"#ffff01","font":{"size":14},"align":"right","valign":"middle"},{"font":{"size":14},"color":"#ffff01","align":"right"},{"color":"#ffffff","valign":"bottom"},{"font":{"size":8},"bgcolor":"#67b1ee"},{"font":{"size":8},"bgcolor":"#ffffff"},{"font":{"size":8},"bgcolor":"#ffffff","color":"#67b1ee"},{"font":{"size":8},"bgcolor":"#ffffff","color":"#67b1ee","valign":"top"},{"font":{"size":8,"bold":false},"color":"#ffffff","valign":"bottom"},{"font":{"size":8,"bold":false},"color":"#ffffff","valign":"top"},{"font":{"size":8},"valign":"top"},{"font":{"size":8,"bold":false},"color":"#67b1ee","valign":"top"},{"color":"#ffffff","font":{"size":11},"align":"center","valign":"middle"},{"align":"center"},{"color":"#ffffff","font":{"size":11},"align":"right","valign":"middle"},{"align":"right"},{"color":"#ffffff","font":{"size":14},"align":"right","valign":"middle"},{"align":"right","font":{"size":14}},{"color":"#ffffff","font":{"size":11},"align":"left","valign":"bottom"},{"color":"#67b1ee","font":{"size":11}},{"color":"#67b1ee","font":{"size":11},"align":"center"},{"font":{"size":12}},{"font":{"size":12},"color":"#ffff01"},{"color":"#67b1ee","font":{"size":11},"align":"right"}],"validations":[],"cols":{"0":{"width":10},"3":{"width":102},"4":{"width":9},"5":{"width":105},"6":{"width":102},"8":{"width":124},"9":{"width":14},"10":{"width":136},"11":{"width":114},"12":{"width":15},"13":{"width":113},"14":{"width":129},"15":{"width":11},"len":27},"merges":["B7:C7","N17:O17","R17:S17","R18:S18","B3:S3","R6:S6","B5:C5","B6:C6","F6:F7","G6:G7","N5:O5","R5:S5","N13:O13","R13:S13","R14:S14","P5:Q5","P6:Q6","P14:Q14","P13:Q13"]}', NULL, 'https://static.jeecg.com/designreport/images/QQ截图20201218200943_1608293404719.png', 'admin', '2021-01-18 13:21:10', 'admin', '2021-02-03 14:01:28', 0, NULL, NULL, 0, 666, NULL, NULL, NULL, NULL, 0, NULL); -INSERT INTO "public"."jimu_report" VALUES ('519c1c6f4d1f584ae8fa5b43b45acdc7', '56623333333', '销售单', '', NULL, '984302991393210368', '{"loopBlockList":[],"area":false,"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]}},"height":99},"1":{"cells":{"1":{"text":"商品编码","style":62},"2":{"text":"商品名称","style":62},"3":{"text":"销售时间","style":62},"4":{"text":"销售数量","style":62},"5":{"text":"定价","style":62},"6":{"text":"优惠价","style":62},"7":{"text":"付款金额","style":62}},"height":39},"2":{"cells":{"1":{"text":"#{xiaoshou.bianma}","style":61},"2":{"text":"#{xiaoshou.cname}","style":61},"3":{"text":"#{xiaoshou.ctime}","style":61},"4":{"text":"#{xiaoshou.cnum}","style":61},"5":{"text":"#{xiaoshou.cprice}","style":61},"6":{"text":"#{xiaoshou.yprice}","style":61},"7":{"text":"#{xiaoshou.ctotal}","style":61}},"isDrag":true,"height":35},"3":{"cells":{"1":{"style":44,"text":""},"5":{"style":44,"text":""},"6":{"text":"","style":45},"7":{"style":46,"text":"=SUM(H3)"}},"isDrag":true,"height":73},"5":{"cells":{},"isDrag":true},"6":{"cells":{},"isDrag":true},"7":{"cells":{"2":{"text":""}},"isDrag":true},"len":100},"dbexps":[],"toolPrintSizeObj":{"printType":"A4","widthPx":718,"heightPx":1047},"dicts":[],"freeze":"A1","dataRectWidth":703,"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":"#fed964"},{"align":"center","color":"#000100","border":{"bottom":["thin","#5b9cd6"],"top":["thin","#5b9cd6"],"left":["thin","#5b9cd6"],"right":["thin","#5b9cd6"]},"bgcolor":"#fdc101"},{"align":"center","color":"#000100","border":{"bottom":["thin","#fdc101"],"top":["thin","#fdc101"],"left":["thin","#fdc101"],"right":["thin","#fdc101"]},"bgcolor":"#fdc101"},{"border":{"bottom":["thin","#fdc101"],"top":["thin","#fdc101"],"left":["thin","#fdc101"],"right":["thin","#fdc101"]},"align":"center"},{"align":"center","color":"#000100","border":{"bottom":["thin","#fdc101"],"top":["thin","#fdc101"],"left":["thin","#fdc101"],"right":["thin","#fdc101"]},"bgcolor":"#ffe59a"},{"align":"center","color":"#000100","border":{"bottom":["thin","#fdc101"],"top":["thin","#fdc101"],"left":["thin","#fdc101"],"right":["thin","#fdc101"]},"bgcolor":"#ffc001"},{"align":"center","color":"#000100","border":{"bottom":["thin","#fdc101"],"top":["thin","#fdc101"],"left":["thin","#fdc101"],"right":["thin","#fdc101"]},"bgcolor":"#fed964"},{"align":"center","color":"#000100","border":{"bottom":["thin","#fdc101"],"top":["thin","#fdc101"],"left":["thin","#fdc101"],"right":["thin","#fdc101"]},"bgcolor":"#ed7d31"},{"align":"center","color":"#000100","border":{"bottom":["thin","#fdc101"],"top":["thin","#fdc101"],"left":["thin","#fdc101"],"right":["thin","#fdc101"]},"bgcolor":"#5b9cd6"},{"align":"center","color":"#000100","border":{"bottom":["thin","#4371c6"],"top":["thin","#4371c6"],"left":["thin","#4371c6"],"right":["thin","#4371c6"]},"bgcolor":"#5b9cd6"},{"border":{"bottom":["thin","#4371c6"],"top":["thin","#4371c6"],"left":["thin","#4371c6"],"right":["thin","#4371c6"]},"align":"center"},{"font":{"size":8}},{"font":{"size":8},"color":"#7f7f7f"},{"border":{"bottom":["thin","#000"],"top":["thin","#000"],"left":["thin","#000"],"right":["thin","#000"]}},{"align":"center","color":"#000100","border":{"bottom":["thin","#4371c6"],"top":["thin","#4371c6"],"left":["thin","#4371c6"],"right":["thin","#4371c6"]},"bgcolor":"#9cc2e6"},{"align":"center","color":"#000100","border":{"bottom":["thin","#5b9cd6"],"top":["thin","#5b9cd6"],"left":["thin","#5b9cd6"],"right":["thin","#5b9cd6"]},"bgcolor":"#9cc2e6"},{"border":{"bottom":["thin","#4371c6"],"top":["thin","#4371c6"],"left":["thin","#4371c6"],"right":["thin","#4371c6"]}},{"font":{"bold":true}},{"font":{"bold":true,"size":12}},{"font":{"bold":true,"size":16}},{"font":{"bold":true,"size":18}},{"border":{"bottom":["thin","#5b9cd6"],"top":["thin","#5b9cd6"],"left":["thin","#5b9cd6"],"right":["thin","#5b9cd6"]},"align":"right"},{"align":"right"},{"align":"left"},{"align":"right","font":{"size":16}},{"align":"left","font":{"size":16}},{"align":"right","font":{"size":14}},{"align":"left","font":{"size":14}},{"align":"center","font":{"size":18,"bold":true,"name":"宋体"}},{"font":{"name":"宋体"}},{"align":"center","color":"#000100","border":{"bottom":["thin","#4371c6"],"top":["thin","#4371c6"],"left":["thin","#4371c6"],"right":["thin","#4371c6"]},"bgcolor":"#9cc2e6","font":{"name":"宋体"}},{"border":{"bottom":["thin","#4371c6"],"top":["thin","#4371c6"],"left":["thin","#4371c6"],"right":["thin","#4371c6"]},"align":"center","font":{"name":"宋体"}},{"align":"right","font":{"name":"宋体"}},{"align":"right","font":{"size":14,"name":"宋体"}},{"align":"left","font":{"size":14,"name":"宋体"}},{"align":"center","color":"#000100","border":{"bottom":["thin","#2e75b5"],"top":["thin","#2e75b5"],"left":["thin","#2e75b5"],"right":["thin","#2e75b5"]},"bgcolor":"#9cc2e6","font":{"name":"宋体"}},{"align":"center","color":"#000100","bgcolor":"#9cc2e6","font":{"name":"宋体"}},{"border":{"bottom":["thin","#5b9cd6"],"top":["thin","#5b9cd6"],"left":["thin","#5b9cd6"],"right":["thin","#5b9cd6"]},"align":"center","font":{"name":"宋体"}},{"border":{"bottom":["thin","#ffff01"],"top":["thin","#ffff01"],"left":["thin","#ffff01"],"right":["thin","#ffff01"]},"align":"center","font":{"name":"宋体"}},{"border":{"bottom":["thin","#000"],"top":["thin","#000"],"left":["thin","#000"],"right":["thin","#000"]},"align":"center","font":{"name":"宋体"}},{"align":"right","font":{"size":14,"name":"宋体"},"border":{"bottom":["thin","#5b9cd6"],"top":["thin","#5b9cd6"],"left":["thin","#5b9cd6"],"right":["thin","#5b9cd6"]}},{"align":"center","color":"#000100","bgcolor":"#9cc2e6","font":{"name":"宋体"},"border":{"bottom":["thin","#000"],"top":["thin","#000"],"left":["thin","#000"],"right":["thin","#000"]}},{"align":"center","color":"#000100","bgcolor":"#9cc2e6","font":{"name":"宋体"},"border":{"bottom":["thin","#5b9cd6"],"top":["thin","#5b9cd6"],"left":["thin","#5b9cd6"],"right":["thin","#5b9cd6"]}},{"align":"center","color":"#ffffff","bgcolor":"#9cc2e6","font":{"name":"宋体"},"border":{"bottom":["thin","#5b9cd6"],"top":["thin","#5b9cd6"],"left":["thin","#5b9cd6"],"right":["thin","#5b9cd6"]}},{"align":"center","color":"#ffffff","border":{"bottom":["thin","#2e75b5"],"top":["thin","#2e75b5"],"left":["thin","#2e75b5"],"right":["thin","#2e75b5"]},"bgcolor":"#9cc2e6","font":{"name":"宋体"}},{"align":"center","color":"#ffffff","border":{"bottom":["thin","#4371c6"],"top":["thin","#4371c6"],"left":["thin","#4371c6"],"right":["thin","#4371c6"]},"bgcolor":"#9cc2e6","font":{"name":"宋体"}},{"align":"center","color":"#ffffff","bgcolor":"#9cc2e6","font":{"name":"宋体"},"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","font":{"name":"宋体"}},{"align":"center","color":"#ffffff","bgcolor":"#9cc2e6","font":{"name":"宋体"},"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","font":{"name":"宋体"}},{"align":"center","color":"#ffffff","bgcolor":"#5b9cd6","font":{"name":"宋体"},"border":{"bottom":["thin","#bfbfbf"],"top":["thin","#bfbfbf"],"left":["thin","#bfbfbf"],"right":["thin","#bfbfbf"]}}],"validations":[],"cols":{"0":{"width":18},"1":{"width":102},"2":{"width":132},"3":{"width":147},"4":{"width":66},"5":{"width":66},"6":{"width":84},"7":{"width":88},"8":{"width":121},"len":50},"merges":["B1:H1"]}', '', 'https://static.jeecg.com/designreport/images/xiaoshou_1607310086160.png', 'jeecg', '2020-07-28 16:54:44', 'admin', '2021-04-01 03:09:25', 0, NULL, NULL, 1, 2088, NULL, NULL, NULL, NULL, 0, NULL); -INSERT INTO "public"."jimu_report" VALUES ('53c82a76f837d5661dceec7d93afafec', '5678', '阜阳检票数查询', '', NULL, '984302991393210368', '{"loopBlockList":[],"area":false,"printElWidth":718,"excel_config_id":"53c82a76f837d5661dceec7d93afafec","printElHeight":1047,"rows":{"0":{"cells":{"0":{"style":58},"1":{"text":"","style":66},"2":{"style":66},"3":{"style":67,"merge":[0,3],"text":"阜阳火车站检票数"},"4":{"style":67},"5":{"style":67},"6":{"style":67},"7":{"style":66},"8":{"style":66},"9":{"style":58}},"height":63},"1":{"cells":{"0":{"style":58},"1":{"style":66},"2":{"style":66},"3":{"style":66},"4":{"style":66},"5":{"style":66},"6":{"style":66},"7":{"style":66},"8":{"style":66},"9":{"style":58}},"height":20},"2":{"cells":{"0":{"style":58},"1":{"text":"日期:","style":68},"2":{"text":"${gongsi.tdata}","style":69},"3":{"style":66},"4":{"style":66,"text":"制表人:"},"5":{"text":"${gongsi.gname}","style":66},"6":{"style":66},"7":{"text":"","merge":[0,1],"style":70},"8":{"style":70},"9":{"style":58}},"isDrag":true},"3":{"cells":{"0":{"style":58},"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},"5":{"style":72},"6":{"text":"核载座位数","merge":[1,0],"style":71},"7":{"merge":[1,0],"style":71,"text":"检票数"},"8":{"merge":[1,0],"style":71,"text":"实载率(%)"},"9":{"style":58}}},"4":{"cells":{"0":{"style":58},"1":{"style":72},"2":{"style":71},"3":{"style":72},"4":{"text":"从","style":71},"5":{"text":"到","style":71},"6":{"style":72},"7":{"style":71},"8":{"style":72},"9":{"style":58}},"height":25},"5":{"cells":{"0":{"style":58},"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}"},"9":{"style":58}},"height":33},"6":{"cells":{"1":{"text":"","style":11},"2":{"style":11},"3":{"style":11},"4":{"style":11},"5":{"style":11},"6":{"style":11},"7":{"style":11},"8":{"style":11}},"isDrag":true},"7":{"cells":{"1":{"style":11},"2":{"style":11,"text":""},"3":{"style":11},"4":{"style":11},"5":{"style":11},"6":{"style":11},"7":{"style":11},"8":{"style":11}}},"8":{"cells":{"1":{"style":11},"2":{"style":11},"3":{"style":11},"4":{"style":11},"5":{"style":11},"6":{"style":11},"7":{"style":11},"8":{"style":11}}},"9":{"cells":{"1":{"style":11},"2":{"style":11},"3":{"style":11},"4":{"style":11},"5":{"style":11},"6":{"style":11},"7":{"style":11},"8":{"style":11}}},"10":{"cells":{"1":{"style":11},"2":{"style":11},"3":{"style":11},"4":{"style":11},"5":{"style":11},"6":{"style":11},"7":{"style":11},"8":{"style":11}}},"11":{"cells":{"1":{"style":11},"2":{"style":11},"3":{"style":11},"4":{"style":11},"5":{"style":11},"6":{"style":11},"7":{"style":11},"8":{"style":11}}},"12":{"cells":{"1":{"style":11},"2":{"style":11},"3":{"style":11},"4":{"style":11},"5":{"style":11},"6":{"style":11},"7":{"style":11},"8":{"style":11}}},"13":{"cells":{"1":{"style":11},"2":{"style":11},"3":{"style":11},"4":{"style":11},"5":{"style":11},"6":{"style":11},"7":{"style":11},"8":{"style":11}}},"14":{"cells":{"1":{"style":11},"2":{"style":11},"3":{"style":11},"4":{"style":11},"5":{"style":11},"6":{"style":11},"7":{"style":11},"8":{"style":11}}},"len":96,"-1":{"cells":{"-1":{"text":"${gongsi.id}"}},"isDrag":true}},"dbexps":[],"toolPrintSizeObj":{"printType":"A4","widthPx":718,"heightPx":1047},"dicts":[],"freeze":"A1","dataRectWidth":701,"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","#000100"]}},{"border":{"bottom":["thin","#000100"],"left":["thin","#000100"]}},{"border":{"bottom":["thin","#000100"]}},{"border":{"bottom":["thin","#000100"],"right":["thin","#000100"]}},{"border":{"top":["thin","#7f7f7f"]}},{"align":"center","border":{"bottom":["thin","#000100"],"top":["thin","#000100"],"left":["thin","#000100"],"right":["thin","#000100"]}},{"border":{"bottom":["thin","#000100"],"top":["thin","#000100"],"left":["thin","#000100"],"right":["thin","#000100"]}},{"border":{"right":["thin","#7f7f7f"],"bottom":["thin","#7f7f7f"]}},{"border":{"bottom":["thin","#7f7f7f"]}},{"border":{"right":["thin","#7f7f7f"]}},{"align":"center","font":{"size":16}},{"align":"center","font":{"size":16,"bold":true}},{"font":{"bold":true}},{"font":{"bold":false}},{"align":"center","border":{"bottom":["thin","#000100"],"top":["thin","#000100"],"left":["thin","#000100"],"right":["thin","#000100"]},"font":{"bold":true}},{"align":"center","font":{"bold":true}},{"align":"right"},{"align":"center","font":{"size":14,"bold":true}},{"align":"center","border":{"bottom":["thin","#000100"],"top":["thin","#000100"],"left":["thin","#000100"],"right":["thin","#000100"]},"font":{"bold":true},"bgcolor":"#4371c6"},{"align":"center","font":{"bold":true},"bgcolor":"#4371c6"},{"align":"center","border":{"bottom":["thin","#000100"],"top":["thin","#000100"],"left":["thin","#000100"],"right":["thin","#000100"]},"font":{"bold":false},"bgcolor":"#4371c6"},{"align":"center","font":{"bold":false},"bgcolor":"#4371c6"},{"align":"center","border":{"bottom":["thin","#000100"],"top":["thin","#000100"],"left":["thin","#000100"],"right":["thin","#000100"]},"font":{"bold":false},"bgcolor":"#2e75b5"},{"align":"center","font":{"bold":false},"bgcolor":"#2e75b5"},{"align":"center","border":{"bottom":["thin","#000100"],"top":["thin","#000100"],"left":["thin","#000100"],"right":["thin","#000100"]},"font":{"bold":false},"bgcolor":"#5b9cd6"},{"align":"center","font":{"bold":false},"bgcolor":"#5b9cd6"},{"align":"center","border":{"bottom":["thin","#000100"],"top":["thin","#000100"],"left":["thin","#000100"],"right":["thin","#000100"]},"font":{"bold":false},"bgcolor":"#0170c1"},{"align":"center","font":{"bold":false},"bgcolor":"#0170c1"},{"font":{"bold":false},"color":"#7f7f7f"},{"align":"center","border":{"bottom":["thin","#000100"],"top":["thin","#000100"],"left":["thin","#000100"],"right":["thin","#000100"]},"font":{"bold":false},"bgcolor":"#9cc2e6"},{"align":"center","font":{"bold":false},"bgcolor":"#9cc2e6"},{"align":"center","border":{"bottom":["thin","#000100"],"top":["thin","#000100"],"left":["thin","#000100"],"right":["thin","#000100"]},"font":{"bold":false},"bgcolor":"#01b0f1"},{"align":"center","font":{"bold":false},"bgcolor":"#01b0f1"},{"align":"center","border":{"bottom":["thin","#5b9cd6"],"top":["thin","#5b9cd6"],"left":["thin","#5b9cd6"],"right":["thin","#5b9cd6"]},"font":{"bold":false},"bgcolor":"#5b9cd6"},{"align":"center","border":{"bottom":["thin","#5b9cd6"],"top":["thin","#5b9cd6"],"left":["thin","#5b9cd6"],"right":["thin","#5b9cd6"]}},{"align":"center","border":{"bottom":["thin","#5b9cd6"],"top":["thin","#5b9cd6"],"left":["thin","#5b9cd6"],"right":["thin","#5b9cd6"]},"font":{"bold":false},"bgcolor":"#9cc2e6"},{"align":"center","font":{"size":16,"bold":true},"valign":"bottom"},{"align":"center","font":{"size":22,"bold":true},"valign":"bottom"},{"align":"center","font":{"size":18,"bold":true},"valign":"bottom"},{"font":{"bold":false},"color":"#7f7f7f","align":"right"},{"color":"#7f7f7f"},{"font":{"name":"宋体"}},{"align":"center","font":{"size":18,"bold":true,"name":"宋体"},"valign":"bottom"},{"font":{"bold":false,"name":"宋体"},"color":"#7f7f7f","align":"right"},{"color":"#7f7f7f","font":{"name":"宋体"}},{"align":"right","font":{"name":"宋体"}},{"align":"center","border":{"bottom":["thin","#5b9cd6"],"top":["thin","#5b9cd6"],"left":["thin","#5b9cd6"],"right":["thin","#5b9cd6"]},"font":{"bold":false,"name":"宋体"},"bgcolor":"#9cc2e6"},{"align":"center","font":{"bold":false,"name":"宋体"},"bgcolor":"#9cc2e6"},{"align":"center","border":{"bottom":["thin","#5b9cd6"],"top":["thin","#5b9cd6"],"left":["thin","#5b9cd6"],"right":["thin","#5b9cd6"]},"font":{"name":"宋体"}},{"font":{"name":"Microsoft YaHei"}},{"align":"center","font":{"size":18,"bold":true,"name":"Microsoft YaHei"},"valign":"bottom"},{"font":{"bold":false,"name":"Microsoft YaHei"},"color":"#7f7f7f","align":"right"},{"color":"#7f7f7f","font":{"name":"Microsoft YaHei"}},{"align":"right","font":{"name":"Microsoft YaHei"}},{"align":"center","border":{"bottom":["thin","#5b9cd6"],"top":["thin","#5b9cd6"],"left":["thin","#5b9cd6"],"right":["thin","#5b9cd6"]},"font":{"bold":false,"name":"Microsoft YaHei"},"bgcolor":"#9cc2e6"},{"align":"center","font":{"bold":false,"name":"Microsoft YaHei"},"bgcolor":"#9cc2e6"},{"align":"center","border":{"bottom":["thin","#5b9cd6"],"top":["thin","#5b9cd6"],"left":["thin","#5b9cd6"],"right":["thin","#5b9cd6"]},"font":{"name":"Microsoft YaHei"}}],"validations":[],"cols":{"0":{"width":17},"1":{"width":118},"2":{"width":75},"3":{"width":54},"4":{"width":95},"5":{"width":109},"6":{"width":75},"7":{"width":75},"8":{"width":83},"9":{"width":30},"len":50},"merges":["E4:F4","B4:B5","C4:C5","D4:D5","G4:G5","H4:H5","I4:I5","D1:G1","H3:I3"]}', '', 'https://static.jeecg.com/designreport/images/25_1597233573577.png', 'jeecg', '2020-06-16 15:01:42', 'admin', '2021-02-03 12:11:37', 0, NULL, NULL, 1, 696, NULL, NULL, NULL, NULL, 0, NULL); -INSERT INTO "public"."jimu_report" VALUES ('6059e405dd9c66a6d38e00841d2e40cc', '566777', '处方笺', '', NULL, '984302991393210368', '{"loopBlockList":[],"area":{"sri":9,"sci":3,"eri":9,"eci":11,"width":593,"height":25},"printElWidth":718,"excel_config_id":"6059e405dd9c66a6d38e00841d2e40cc","printElHeight":1047,"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,"text":" "}},"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,"text":" "}},"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}","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":{"cells":{"1":{"style":31,"text":" "},"2":{"text":"医嘱:","style":76},"3":{"text":"${yonghu.yizhu}","style":6,"merge":[0,8]},"12":{"style":28,"text":" "}},"isDrag":true},"10":{"cells":{"1":{"style":31,"text":" "},"2":{"text":"药品费","style":6,"merge":[0,1]},"3":{"text":" "},"4":{"text":"${yonghu.yprice}","style":6},"5":{"text":"中成药费","style":6,"rendered":"","merge":[0,1]},"7":{"style":6,"text":" "},"8":{"text":"治疗费","merge":[0,2],"style":6},"9":{"text":" "},"10":{"text":" "},"11":{"style":6,"text":" "},"12":{"style":28,"text":" "}},"isDrag":true},"11":{"cells":{"1":{"style":31,"text":" "},"2":{"text":"检查费","style":6,"merge":[0,1]},"3":{"text":" "},"4":{"style":6,"text":" "},"5":{"text":"换药费","style":6,"merge":[0,1]},"7":{"style":6,"text":" "},"8":{"merge":[0,2],"text":"诊疗费","style":6},"9":{"text":" "},"10":{"text":" "},"11":{"text":"${yonghu.yzhenliao}","style":6},"12":{"style":28,"text":" "}},"isDrag":true},"12":{"cells":{"1":{"style":31,"text":" "},"2":{"text":"注射费","style":6,"merge":[0,1]},"3":{"text":" "},"4":{"style":6,"merge":[0,3],"text":" "},"5":{"text":" "},"6":{"text":" "},"7":{"text":" "},"8":{"merge":[0,2],"text":"其他","style":6},"9":{"text":" "},"10":{"text":" "},"11":{"style":6,"text":" "},"12":{"style":28,"text":" "}}},"13":{"cells":{"1":{"style":31,"text":" "},"2":{"text":"合计","style":6,"merge":[0,1]},"3":{"text":" "},"4":{"text":"${yonghu.ytotal}","style":6,"merge":[0,7]},"5":{"text":" "},"6":{"text":" "},"7":{"text":" "},"8":{"text":" "},"9":{"text":" "},"10":{"text":" "},"11":{"text":" "},"12":{"style":28,"text":" "}},"isDrag":true},"14":{"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":" "},"13":{"style":80,"text":" "}},"height":9},"15":{"cells":{"1":{"style":31,"text":" "},"2":{"text":"医师:","style":4,"rendered":"","merge":[0,1]},"4":{"text":"${yonghu.yishe}","style":80},"5":{"style":80,"text":" "},"6":{"style":80,"text":" "},"7":{"style":80,"text":" "},"8":{"text":"日期:","style":4},"9":{"text":"${yonghu.kdata}","style":80,"merge":[0,2]},"12":{"style":71,"text":" "},"13":{"style":80,"text":" "}},"isDrag":true,"height":43},"16":{"cells":{"1":{"style":31,"text":" "},"2":{"style":80,"text":" "},"3":{"style":80,"text":" "},"4":{"style":80,"text":" "},"5":{"style":80,"text":" "},"6":{"style":80,"text":" "},"7":{"style":80,"text":" "},"8":{"style":80,"text":" "},"9":{"style":80,"text":" "},"10":{"style":80,"text":" "},"11":{"style":80,"text":" "},"12":{"style":28,"text":" "}},"height":17},"17":{"cells":{"1":{"text":" ","style":32},"2":{"text":" ","style":33},"3":{"style":33,"text":" "},"4":{"text":" ","style":33},"5":{"text":" ","style":33},"6":{"text":" ","style":33},"7":{"text":" ","style":33},"8":{"text":" ","style":33},"9":{"text":" ","style":33},"10":{"text":" ","style":33},"11":{"text":" ","style":33},"12":{"text":" ","style":34}}},"18":{"cells":{"11":{"text":""}},"isDrag":true},"len":94,"-1":{"cells":{"-1":{"text":"#{yaopin.key1}"}},"isDrag":true},"":{"cells":{"NaN":{"text":"","rendered":""}}}},"dbexps":[],"toolPrintSizeObj":{"printType":"A4","widthPx":718,"heightPx":1047},"dicts":[],"freeze":"A1","dataRectWidth":709,"background":false,"name":"sheet1","autofilter":{},"styles":[{"font":{"size":12}},{"font":{"size":10}},{"font":{"size":12},"align":"right"},{"font":{"size":14}},{"align":"right"},{"font":{"size":10},"align":"right"},{"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"},{"align":"center"},{"font":{"size":12},"align":"center"},{"font":{"size":12,"bold":true},"align":"center"},{"align":"center","font":{"bold":true}},{"font":{"size":14,"bold":true},"align":"center"},{"border":{"top":["thin","#000"],"left":["thin","#000"]}},{"border":{"top":["thin","#000"]}},{"border":{"top":["thin","#000"],"right":["thin","#000"]}},{"font":{"size":14,"bold":true},"align":"center","border":{"left":["thin","#000"]}},{"border":{"right":["thin","#000"]}},{"font":{"size":12},"border":{"left":["thin","#000"]}},{"font":{"size":10},"border":{"left":["thin","#000"]}},{"border":{"left":["thin","#000"]}},{"border":{"bottom":["thin","#000"],"left":["thin","#000"]}},{"border":{"bottom":["thin","#000"]}},{"border":{"bottom":["thin","#000"],"right":["thin","#000"]}},{"border":{"top":["thick","#000"],"left":["thick","#000"]}},{"border":{"top":["thick","#000"]}},{"border":{"top":["thick","#000"],"right":["thick","#000"]}},{"font":{"size":14,"bold":true},"align":"center","border":{"left":["thick","#000"]}},{"border":{"right":["thick","#000"]}},{"font":{"size":12},"border":{"left":["thick","#000"]}},{"font":{"size":10},"border":{"left":["thick","#000"]}},{"border":{"left":["thick","#000"]}},{"border":{"bottom":["thick","#000"],"left":["thick","#000"]}},{"border":{"bottom":["thick","#000"]}},{"border":{"bottom":["thick","#000"],"right":["thick","#000"]}},{"font":{"size":15},"border":{"left":["thick","#000"]}},{"font":{"size":15}},{"align":"left"},{"font":{"size":14,"bold":true},"align":"center","border":{"bottom":["thick","#000"]}},{"font":{"size":12,"bold":true}},{"font":{"size":12,"bold":true},"align":"center","border":{"bottom":["thick","#000"]}},{"font":{"size":10},"border":{"left":["thick","#000"]},"valign":"bottom"},{"font":{"size":10},"valign":"bottom"},{"valign":"bottom"},{"align":"right","border":{"top":["thick","#000"]}},{"align":"left","border":{"top":["thick","#000"]}},{"font":{"size":10},"border":{"left":["thick","#000"]},"valign":"bottom","align":"right"},{"font":{"size":10},"valign":"bottom","align":"right"},{"font":{"size":10},"border":{"left":["thick","#000"]},"align":"right"},{"font":{"size":10},"border":{"left":["thick","#000"]},"textwrap":true},{"font":{"size":10},"textwrap":true},{"font":{"size":10},"border":{"left":["thick","#000"]},"textwrap":false},{"font":{"size":10},"textwrap":false},{"font":{"size":10},"border":{"left":["thick","#000"]},"textwrap":false,"align":"right"},{"font":{"size":10},"textwrap":false,"align":"right"},{"font":{"size":10},"border":{"left":["thick","#000"]},"textwrap":false,"align":"left"},{"font":{"size":10},"textwrap":false,"align":"left"},{"font":{"size":10},"border":{"left":["thick","#000"]},"textwrap":false,"align":"center"},{"font":{"size":10},"textwrap":false,"align":"center"},{"font":{"size":15},"border":{"left":["thick","#000"]},"align":"right"},{"font":{"size":15},"align":"right"},{"font":{"size":15},"border":{"left":["thick","#000"]},"align":"center"},{"font":{"size":10},"border":{"left":["thin","#000"]},"valign":"bottom","align":"right"},{"font":{"size":10},"valign":"bottom","border":{"right":["thin","#000"]}},{"font":{"size":10},"border":{"left":["thin","#000"]},"align":"right"},{"font":{"size":10},"border":{"left":["thin","#000"]},"textwrap":false,"align":"left"},{"font":{"size":10},"border":{"right":["thin","#000"]}},{"font":{"size":15},"border":{"left":["thin","#000"]},"align":"center"},{"align":"left","border":{"right":["thin","#000"]}},{"font":{"size":10},"valign":"bottom","border":{"right":["thick","#000"]}},{"font":{"size":10},"border":{"right":["thick","#000"]}},{"align":"left","border":{"right":["thick","#000"]}},{"font":{"size":10},"align":"left"},{"border":{"left":["thick","#000"]},"align":"center"},{"border":{"left":["thick","#000"]},"align":"right"},{"border":{"bottom":["thick","#000"],"top":["thick","#000"],"left":["thick","#000"],"right":["thick","#000"]}},{"border":{"bottom":["thin","#000"],"top":["thin","#000"],"left":["thin","#000"],"right":["thin","#000"]},"align":"right"},{"font":{"size":10},"border":{"bottom":["thin","#000"],"top":["thin","#000"],"left":["thin","#000"],"right":["thin","#000"]}},{"font":{"size":10},"align":"left","border":{"bottom":["thin","#000"],"top":["thin","#000"],"left":["thin","#000"],"right":["thin","#000"]}},{"font":{"size":15,"bold":true},"border":{"left":["thick","#000"]},"align":"center"},{},{"font":{"size":15,"bold":true},"align":"center"},{"align":"right","border":{"top":["thin","#000"],"left":["thin","#000"]}},{"font":{"size":14,"bold":true},"align":"center","border":{"bottom":["thick","#000"],"top":["thick","#000"],"left":["thick","#000"],"right":["thick","#000"]}}],"validations":[],"cols":{"0":{"width":23},"1":{"width":14},"2":{"width":56},"3":{"width":40},"4":{"width":156},"5":{"width":41},"6":{"width":18},"7":{"width":92},"8":{"width":58},"9":{"width":20},"10":{"width":20},"11":{"width":148},"12":{"width":12},"13":{"width":11},"len":50},"merges":["C3:E3","C7:E7","H3:I3","H7:I7","C7:E7","H7:I7","I11:K11","I12:K12","I13:K13","E13:H13","C11:D11","C12:D12","C13:D13","C14:D14","L4:M4","C3:L3","B7:D7","C4:D4","C5:D5","E14:L14","G5:L5","C6:D6","E6:L6","D8:E8","H8:I8","C16:D16","J16:L16","F11:G11","F12:G12","D10:L10"]}', '', 'https://static.jeecg.com/designreport/images/处方_1607071731580.png', 'jeecg', '2020-07-10 17:12:16', 'admin', '2021-02-03 14:03:05', 0, NULL, NULL, 1, 849, NULL, NULL, NULL, NULL, 0, NULL); -INSERT INTO "public"."jimu_report" VALUES ('6d6bdcb5e820c301ea32789e3ae43c44', '1223', '供电公司抢修单', '', NULL, '984302991393210368', '{"loopBlockList":[],"area":{"sri":14,"sci":8,"eri":14,"eci":8,"width":100,"height":67},"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":56},"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}","rendered":"","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}","merge":[0,4],"rendered":""}},"height":80},"14":{"cells":{"1":{"text":"责任单位意见","style":32},"2":{"style":33,"merge":[0,4],"text":"#{qiangxiu.zongjie}"}},"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.dshenhe}","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":[0,1]},"6":{"style":28}},"height":41},"18":{"cells":{"1":{"style":28},"2":{"style":28},"3":{"style":28},"4":{"style":28},"5":{"style":28},"6":{"style":28}}},"len":100},"dbexps":[],"toolPrintSizeObj":{"printType":"A4","widthPx":718,"heightPx":1047},"dicts":[],"freeze":"A1","dataRectWidth":699,"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":"#9cc2e6"},{"bgcolor":"#9cc2e6"},{"border":{"bottom":["thin","#000"],"top":["thin","#000"],"left":["thin","#000"],"right":["thin","#000"]},"bgcolor":"#ffffff"},{"bgcolor":"#ffffff"},{"align":"center"},{"align":"center","font":{"size":14}},{"align":"center","font":{"size":14,"bold":true}},{"border":{"bottom":["thin","#000"],"top":["thin","#000"],"left":["thin","#000"],"right":["thin","#000"]},"align":"right"},{"align":"right"},{"border":{"bottom":["thin","#000"],"top":["thin","#000"],"left":["thin","#000"],"right":["thin","#000"]},"align":"left"},{"align":"left"},{"border":{"bottom":["thin","#000"],"top":["thin","#000"],"left":["thin","#000"],"right":["thin","#000"]},"textwrap":true},{"textwrap":true},{"border":{"bottom":["thin","#000"],"top":["thin","#000"],"left":["thin","#000"],"right":["thin","#000"]},"textwrap":false},{"textwrap":false},{"align":"center","font":{"size":18,"bold":true}},{"align":"center","font":{"size":16,"bold":true}},{"align":"right","color":"#7f7f7f"},{"color":"#7f7f7f"},{"border":{"bottom":["thin","#000"],"top":["thin","#000"],"left":["thin","#000"],"right":["thin","#000"]},"bgcolor":"#ffffff","font":{"bold":true}},{"border":{"bottom":["thin","#000"],"top":["thin","#000"],"left":["thin","#000"],"right":["thin","#000"]},"font":{"bold":true}},{"border":{"bottom":["thin","#000"],"top":["thin","#000"],"left":["thin","#000"],"right":["thin","#000"]},"bgcolor":"#ffffff","font":{"bold":false}},{"border":{"bottom":["thin","#000"],"top":["thin","#000"],"left":["thin","#000"],"right":["thin","#000"]},"font":{"bold":false}},{"border":{"bottom":["thin","#000"],"top":["thin","#000"],"left":["thin","#000"],"right":["thin","#000"]},"align":"right","font":{"bold":true}},{"align":"center","font":{"size":16,"bold":true,"name":"宋体"}},{"align":"right","color":"#7f7f7f","font":{"name":"宋体"}},{"color":"#7f7f7f","font":{"name":"宋体"}},{"font":{"name":"宋体"}},{"border":{"bottom":["thin","#000"],"top":["thin","#000"],"left":["thin","#000"],"right":["thin","#000"]},"bgcolor":"#ffffff","font":{"bold":true,"name":"宋体"}},{"border":{"bottom":["thin","#000"],"top":["thin","#000"],"left":["thin","#000"],"right":["thin","#000"]},"bgcolor":"#ffffff","font":{"name":"宋体"}},{"bgcolor":"#ffffff","font":{"name":"宋体"}},{"border":{"bottom":["thin","#000"],"top":["thin","#000"],"left":["thin","#000"],"right":["thin","#000"]},"font":{"bold":true,"name":"宋体"}},{"border":{"bottom":["thin","#000"],"top":["thin","#000"],"left":["thin","#000"],"right":["thin","#000"]},"font":{"name":"宋体"}},{"border":{"bottom":["thin","#000"],"top":["thin","#000"],"left":["thin","#000"],"right":["thin","#000"]},"align":"right","font":{"bold":true,"name":"宋体"}},{"border":{"bottom":["thin","#000"],"top":["thin","#000"],"left":["thin","#000"],"right":["thin","#000"]},"textwrap":true,"font":{"name":"宋体"}},{"textwrap":true,"font":{"name":"宋体"}},{"border":{"bottom":["thin","#000"],"top":["thin","#000"],"left":["thin","#000"],"right":["thin","#000"]},"align":"left","font":{"name":"宋体"}},{"align":"center","font":{"size":16,"bold":false,"name":"宋体"}},{"align":"center","font":{"size":18,"bold":true,"name":"宋体"}}],"validations":[],"cols":{"0":{"width":23},"1":{"width":117},"3":{"width":108},"4":{"width":127},"5":{"width":76},"6":{"width":148},"7":{"width":13},"len":50},"merges":["C7:D7","F7:G7","B2:G2","C9:G9","B11:E11","F11:G11","B13:E13","F13:G13","C16:D16","C18:D18","F16:G16","F18:G18","C10:G10","C8:G8","C6:G6","C12:G12","C14:G14","C15:G15","C17:G17"]}', '', 'https://static.jeecg.com/designreport/images/222_1607311944321.png', 'jeecg', '2020-07-20 19:37:54', 'admin', '2021-02-03 14:00:39', 0, NULL, NULL, 1, 180, NULL, NULL, NULL, NULL, 0, NULL); -INSERT INTO "public"."jimu_report" VALUES ('7905022412733a0c68dc7b4ef8947489', '8996445', '介绍信', '', NULL, '984302991393210368', '{"loopBlockList":[],"area":false,"excel_config_id":"7905022412733a0c68dc7b4ef8947489","printConfig":{"paper":"A4","width":210,"height":297,"definition":1,"isBackend":false,"marginX":10,"marginY":10},"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}},"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":[],"freeze":"A1","dataRectWidth":688,"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","#000"]},"font":{"size":16,"bold":false}},{"align":"left","font":{"size":16,"bold":false},"color":"#3f3f3f"},{"font":{"size":16,"bold":false},"color":"#3f3f3f"},{"align":"center","underline":false,"font":{"size":16,"bold":false},"color":"#3f3f3f"},{"align":"center","underline":false,"border":{"bottom":["thin","#000"]},"font":{"size":16,"bold":false},"color":"#3f3f3f"},{"font":{"bold":false},"color":"#3f3f3f"},{"align":"left","border":{"bottom":["thin","#000"]},"font":{"size":16,"bold":false},"color":"#3f3f3f"},{"font":{"size":12}},{"align":"left","font":{"size":12,"bold":false},"color":"#3f3f3f"},{"font":{"size":12,"bold":false},"color":"#3f3f3f"},{"align":"center","underline":false,"font":{"size":12,"bold":false},"color":"#3f3f3f"},{"align":"center","underline":false,"border":{"bottom":["thin","#000"]},"font":{"size":12,"bold":false},"color":"#3f3f3f"},{"align":"left","border":{"bottom":["thin","#000"]},"font":{"size":12,"bold":false},"color":"#3f3f3f"},{"align":"center","border":{"bottom":["thin","#000"]},"font":{"size":12,"bold":false},"color":"#3f3f3f"},{"font":{"size":12,"bold":false},"color":"#3f3f3f","align":"center"},{"font":{"size":12},"align":"center"},{"font":{"size":8}},{"font":{"size":10}},{"font":{"size":10,"bold":true}},{"font":{"size":10,"bold":true},"align":"center"},{"font":{"size":18,"bold":true},"align":"center"},{"align":"center","font":{"size":18}},{"font":{"size":16,"bold":true},"align":"center"},{"align":"center","font":{"size":16}},{"font":{"size":12},"valign":"bottom"},{"font":{"size":12},"valign":"middle"},{"font":{"size":12},"border":{"top":["thin","#000"],"left":["thin","#000"]}},{"font":{"size":12},"border":{"top":["thin","#000"]}},{"border":{"top":["thin","#000"]}},{"font":{"size":12},"border":{"top":["thin","#000"],"right":["thin","#000"]}},{"font":{"size":12},"border":{"left":["thin","#000"]}},{"font":{"size":12},"border":{"right":["thin","#000"]}},{"font":{"size":12},"valign":"middle","border":{"right":["thin","#000"]}},{"align":"left","font":{"size":12,"bold":false},"color":"#3f3f3f","border":{"left":["thin","#000"],"right":["thin","#000"]}},{"align":"left","font":{"size":12,"bold":false},"color":"#3f3f3f","border":{"left":["thin","#000"]}},{"align":"center","underline":false,"border":{"right":["thin","#000"]},"font":{"size":12,"bold":false},"color":"#3f3f3f"},{"align":"center","border":{"right":["thin","#000"]},"font":{"size":12,"bold":false},"color":"#3f3f3f"},{"align":"left","border":{"right":["thin","#000"]},"font":{"size":12,"bold":false},"color":"#3f3f3f"},{"border":{"bottom":["thin","#000"],"left":["thin","#000"]}},{"border":{"bottom":["thin","#000"]}},{"border":{"bottom":["thin","#000"],"right":["thin","#000"]}},{"font":{"size":12},"border":{"top":["thick","#000"],"left":["thick","#000"]}},{"font":{"size":12},"border":{"top":["thick","#000"]}},{"border":{"top":["thick","#000"]}},{"font":{"size":12},"border":{"top":["thick","#000"],"right":["thick","#000"]}},{"font":{"size":12},"border":{"left":["thick","#000"]}},{"font":{"size":12},"border":{"right":["thick","#000"]}},{"font":{"size":12},"valign":"middle","border":{"right":["thick","#000"]}},{"align":"left","font":{"size":12,"bold":false},"color":"#3f3f3f","border":{"left":["thick","#000"],"right":["thick","#000"]}},{"align":"left","font":{"size":12,"bold":false},"color":"#3f3f3f","border":{"left":["thick","#000"]}},{"align":"center","underline":false,"border":{"right":["thick","#000"]},"font":{"size":12,"bold":false},"color":"#3f3f3f"},{"align":"center","border":{"right":["thick","#000"]},"font":{"size":12,"bold":false},"color":"#3f3f3f"},{"align":"left","border":{"right":["thick","#000"]},"font":{"size":12,"bold":false},"color":"#3f3f3f"},{"border":{"bottom":["thick","#000"],"left":["thick","#000"]}},{"border":{"bottom":["thick","#000"]}},{"border":{"bottom":["thick","#000"],"right":["thick","#000"]}},{"align":"center","font":{"size":12,"bold":false},"color":"#3f3f3f","border":{"left":["thick","#000"]}},{"border":{"left":["thin","#000"]}},{"border":{"left":["dashed","#000"]}},{"border":{"left":["thick","#000"]}},{"border":{"right":["thick","#000"]}},{"align":"left","border":{"bottom":["thick","#000"]},"font":{"size":12,"bold":false},"color":"#3f3f3f"},{"font":{"size":12},"border":{"left":["thick","#000"]},"align":"center"},{"font":{"size":12,"bold":true},"border":{"left":["thick","#000"]},"align":"center"},{"align":"center","font":{"bold":true}},{"font":{"size":14,"bold":true},"border":{"left":["thick","#000"]},"align":"center"},{"align":"center","font":{"bold":true,"size":14}},{"font":{"size":12,"name":"Arial"},"border":{"top":["thick","#000"],"left":["thick","#000"]}},{"font":{"size":12,"name":"Arial"},"border":{"top":["thick","#000"]}},{"border":{"top":["thick","#000"]},"font":{"name":"Arial"}},{"font":{"size":12,"name":"Arial"},"border":{"top":["thick","#000"],"right":["thick","#000"]}},{"font":{"size":12,"name":"Arial"},"border":{"left":["thick","#000"]},"align":"center"},{"align":"center","font":{"name":"Arial"}},{"font":{"size":14,"bold":true,"name":"Arial"},"border":{"left":["thick","#000"]},"align":"center"},{"align":"center","font":{"bold":true,"size":14,"name":"Arial"}},{"font":{"size":12,"name":"Arial"},"border":{"left":["thick","#000"]}},{"font":{"size":12,"name":"Arial"}},{"font":{"name":"Arial"}},{"font":{"size":12,"name":"Arial"},"valign":"middle","border":{"right":["thick","#000"]}},{"align":"left","font":{"size":12,"bold":false,"name":"Arial"},"color":"#3f3f3f","border":{"left":["thick","#000"],"right":["thick","#000"]}},{"font":{"size":12,"bold":false,"name":"Arial"},"color":"#3f3f3f"},{"align":"left","font":{"size":12,"bold":false,"name":"Arial"},"color":"#3f3f3f","border":{"left":["thick","#000"]}},{"align":"center","underline":false,"border":{"bottom":["thin","#000"]},"font":{"size":12,"bold":false,"name":"Arial"},"color":"#3f3f3f"},{"align":"left","border":{"bottom":["thin","#000"]},"font":{"size":12,"bold":false,"name":"Arial"},"color":"#3f3f3f"},{"align":"center","border":{"bottom":["thin","#000"]},"font":{"size":12,"bold":false,"name":"Arial"},"color":"#3f3f3f"},{"font":{"size":12,"bold":false,"name":"Arial"},"color":"#3f3f3f","align":"center"},{"align":"center","font":{"size":12,"bold":false,"name":"Arial"},"color":"#3f3f3f","border":{"left":["thick","#000"]}},{"align":"left","border":{"right":["thick","#000"]},"font":{"size":12,"bold":false,"name":"Arial"},"color":"#3f3f3f"},{"align":"left","font":{"size":12,"bold":false,"name":"Arial"},"color":"#3f3f3f"},{"font":{"size":12,"name":"Arial"},"border":{"right":["thick","#000"]}},{"border":{"bottom":["thick","#000"],"left":["thick","#000"]},"font":{"name":"Arial"}},{"border":{"bottom":["thick","#000"]},"font":{"name":"Arial"}},{"border":{"bottom":["thick","#000"],"right":["thick","#000"]},"font":{"name":"Arial"}},{"font":{"size":12,"name":"Source Sans Pro"},"border":{"top":["thick","#000"],"left":["thick","#000"]}},{"font":{"size":12,"name":"Source Sans Pro"},"border":{"top":["thick","#000"]}},{"border":{"top":["thick","#000"]},"font":{"name":"Source Sans Pro"}},{"font":{"size":12,"name":"Source Sans Pro"},"border":{"top":["thick","#000"],"right":["thick","#000"]}},{"font":{"size":12,"name":"Source Sans Pro"},"border":{"left":["thick","#000"]},"align":"center"},{"align":"center","font":{"name":"Source Sans Pro"}},{"font":{"size":14,"bold":true,"name":"Source Sans Pro"},"border":{"left":["thick","#000"]},"align":"center"},{"align":"center","font":{"bold":true,"size":14,"name":"Source Sans Pro"}},{"font":{"size":12,"name":"Source Sans Pro"},"border":{"left":["thick","#000"]}},{"font":{"size":12,"name":"Source Sans Pro"}},{"font":{"name":"Source Sans Pro"}},{"font":{"size":12,"name":"Source Sans Pro"},"valign":"middle","border":{"right":["thick","#000"]}},{"align":"left","font":{"size":12,"bold":false,"name":"Source Sans Pro"},"color":"#3f3f3f","border":{"left":["thick","#000"],"right":["thick","#000"]}},{"font":{"size":12,"bold":false,"name":"Source Sans Pro"},"color":"#3f3f3f"},{"align":"left","font":{"size":12,"bold":false,"name":"Source Sans Pro"},"color":"#3f3f3f","border":{"left":["thick","#000"]}},{"align":"center","underline":false,"border":{"bottom":["thin","#000"]},"font":{"size":12,"bold":false,"name":"Source Sans Pro"},"color":"#3f3f3f"},{"align":"left","border":{"bottom":["thin","#000"]},"font":{"size":12,"bold":false,"name":"Source Sans Pro"},"color":"#3f3f3f"},{"align":"center","border":{"bottom":["thin","#000"]},"font":{"size":12,"bold":false,"name":"Source Sans Pro"},"color":"#3f3f3f"},{"font":{"size":12,"bold":false,"name":"Source Sans Pro"},"color":"#3f3f3f","align":"center"},{"align":"center","font":{"size":12,"bold":false,"name":"Source Sans Pro"},"color":"#3f3f3f","border":{"left":["thick","#000"]}},{"align":"left","border":{"right":["thick","#000"]},"font":{"size":12,"bold":false,"name":"Source Sans Pro"},"color":"#3f3f3f"},{"align":"left","font":{"size":12,"bold":false,"name":"Source Sans Pro"},"color":"#3f3f3f"},{"font":{"size":12,"name":"Source Sans Pro"},"border":{"right":["thick","#000"]}},{"border":{"bottom":["thick","#000"],"left":["thick","#000"]},"font":{"name":"Source Sans Pro"}},{"border":{"bottom":["thick","#000"]},"font":{"name":"Source Sans Pro"}},{"border":{"bottom":["thick","#000"],"right":["thick","#000"]},"font":{"name":"Source Sans Pro"}},{"font":{"size":12,"name":"Comic Sans MS"},"border":{"top":["thick","#000"],"left":["thick","#000"]}},{"font":{"size":12,"name":"Comic Sans MS"},"border":{"top":["thick","#000"]}},{"border":{"top":["thick","#000"]},"font":{"name":"Comic Sans MS"}},{"font":{"size":12,"name":"Comic Sans MS"},"border":{"top":["thick","#000"],"right":["thick","#000"]}},{"font":{"size":12,"name":"Comic Sans MS"},"border":{"left":["thick","#000"]},"align":"center"},{"align":"center","font":{"name":"Comic Sans MS"}},{"font":{"size":14,"bold":true,"name":"Comic Sans MS"},"border":{"left":["thick","#000"]},"align":"center"},{"align":"center","font":{"bold":true,"size":14,"name":"Comic Sans MS"}},{"font":{"size":12,"name":"Comic Sans MS"},"border":{"left":["thick","#000"]}},{"font":{"size":12,"name":"Comic Sans MS"}},{"font":{"name":"Comic Sans MS"}},{"font":{"size":12,"name":"Comic Sans MS"},"valign":"middle","border":{"right":["thick","#000"]}},{"align":"left","font":{"size":12,"bold":false,"name":"Comic Sans MS"},"color":"#3f3f3f","border":{"left":["thick","#000"],"right":["thick","#000"]}},{"font":{"size":12,"bold":false,"name":"Comic Sans MS"},"color":"#3f3f3f"},{"align":"left","font":{"size":12,"bold":false,"name":"Comic Sans MS"},"color":"#3f3f3f","border":{"left":["thick","#000"]}},{"align":"center","underline":false,"border":{"bottom":["thin","#000"]},"font":{"size":12,"bold":false,"name":"Comic Sans MS"},"color":"#3f3f3f"},{"align":"left","border":{"bottom":["thin","#000"]},"font":{"size":12,"bold":false,"name":"Comic Sans MS"},"color":"#3f3f3f"},{"align":"center","border":{"bottom":["thin","#000"]},"font":{"size":12,"bold":false,"name":"Comic Sans MS"},"color":"#3f3f3f"},{"font":{"size":12,"bold":false,"name":"Comic Sans MS"},"color":"#3f3f3f","align":"center"},{"align":"center","font":{"size":12,"bold":false,"name":"Comic Sans MS"},"color":"#3f3f3f","border":{"left":["thick","#000"]}},{"align":"left","border":{"right":["thick","#000"]},"font":{"size":12,"bold":false,"name":"Comic Sans MS"},"color":"#3f3f3f"},{"align":"left","font":{"size":12,"bold":false,"name":"Comic Sans MS"},"color":"#3f3f3f"},{"font":{"size":12,"name":"Comic Sans MS"},"border":{"right":["thick","#000"]}},{"border":{"bottom":["thick","#000"],"left":["thick","#000"]},"font":{"name":"Comic Sans MS"}},{"border":{"bottom":["thick","#000"]},"font":{"name":"Comic Sans MS"}},{"border":{"bottom":["thick","#000"],"right":["thick","#000"]},"font":{"name":"Comic Sans MS"}},{"font":{"size":12,"name":"Courier New"},"border":{"top":["thick","#000"],"left":["thick","#000"]}},{"font":{"size":12,"name":"Courier New"},"border":{"top":["thick","#000"]}},{"border":{"top":["thick","#000"]},"font":{"name":"Courier New"}},{"font":{"size":12,"name":"Courier New"},"border":{"top":["thick","#000"],"right":["thick","#000"]}},{"font":{"size":12,"name":"Courier New"},"border":{"left":["thick","#000"]},"align":"center"},{"align":"center","font":{"name":"Courier New"}},{"font":{"size":14,"bold":true,"name":"Courier New"},"border":{"left":["thick","#000"]},"align":"center"},{"align":"center","font":{"bold":true,"size":14,"name":"Courier New"}},{"font":{"size":12,"name":"Courier New"},"border":{"left":["thick","#000"]}},{"font":{"size":12,"name":"Courier New"}},{"font":{"name":"Courier New"}},{"font":{"size":12,"name":"Courier New"},"valign":"middle","border":{"right":["thick","#000"]}},{"align":"left","font":{"size":12,"bold":false,"name":"Courier New"},"color":"#3f3f3f","border":{"left":["thick","#000"],"right":["thick","#000"]}},{"font":{"size":12,"bold":false,"name":"Courier New"},"color":"#3f3f3f"},{"align":"left","font":{"size":12,"bold":false,"name":"Courier New"},"color":"#3f3f3f","border":{"left":["thick","#000"]}},{"align":"center","underline":false,"border":{"bottom":["thin","#000"]},"font":{"size":12,"bold":false,"name":"Courier New"},"color":"#3f3f3f"},{"align":"left","border":{"bottom":["thin","#000"]},"font":{"size":12,"bold":false,"name":"Courier New"},"color":"#3f3f3f"},{"align":"center","border":{"bottom":["thin","#000"]},"font":{"size":12,"bold":false,"name":"Courier New"},"color":"#3f3f3f"},{"font":{"size":12,"bold":false,"name":"Courier New"},"color":"#3f3f3f","align":"center"},{"align":"center","font":{"size":12,"bold":false,"name":"Courier New"},"color":"#3f3f3f","border":{"left":["thick","#000"]}},{"align":"left","border":{"right":["thick","#000"]},"font":{"size":12,"bold":false,"name":"Courier New"},"color":"#3f3f3f"},{"align":"left","font":{"size":12,"bold":false,"name":"Courier New"},"color":"#3f3f3f"},{"font":{"size":12,"name":"Courier New"},"border":{"right":["thick","#000"]}},{"border":{"bottom":["thick","#000"],"left":["thick","#000"]},"font":{"name":"Courier New"}},{"border":{"bottom":["thick","#000"]},"font":{"name":"Courier New"}},{"border":{"bottom":["thick","#000"],"right":["thick","#000"]},"font":{"name":"Courier New"}},{"font":{"size":12,"name":"Courier New"},"border":{"top":["thick","#000"],"left":["thick","#000"]},"color":"#000100"},{"font":{"size":12,"name":"Courier New"},"border":{"top":["thick","#000"]},"color":"#000100"},{"border":{"top":["thick","#000"]},"font":{"name":"Courier New"},"color":"#000100"},{"font":{"size":12,"name":"Courier New"},"border":{"top":["thick","#000"],"right":["thick","#000"]},"color":"#000100"},{"font":{"size":12,"name":"Courier New"},"border":{"left":["thick","#000"]},"align":"center","color":"#000100"},{"align":"center","font":{"name":"Courier New"},"color":"#000100"},{"font":{"size":14,"bold":true,"name":"Courier New"},"border":{"left":["thick","#000"]},"align":"center","color":"#000100"},{"align":"center","font":{"bold":true,"size":14,"name":"Courier New"},"color":"#000100"},{"font":{"size":12,"name":"Courier New"},"border":{"left":["thick","#000"]},"color":"#000100"},{"font":{"size":12,"name":"Courier New"},"color":"#000100"},{"font":{"name":"Courier New"},"color":"#000100"},{"font":{"size":12,"name":"Courier New"},"valign":"middle","border":{"right":["thick","#000"]},"color":"#000100"},{"align":"left","font":{"size":12,"bold":false,"name":"Courier New"},"color":"#000100","border":{"left":["thick","#000"],"right":["thick","#000"]}},{"font":{"size":12,"bold":false,"name":"Courier New"},"color":"#000100"},{"align":"left","font":{"size":12,"bold":false,"name":"Courier New"},"color":"#000100","border":{"left":["thick","#000"]}},{"align":"center","underline":false,"border":{"bottom":["thin","#000"]},"font":{"size":12,"bold":false,"name":"Courier New"},"color":"#000100"},{"align":"left","border":{"bottom":["thin","#000"]},"font":{"size":12,"bold":false,"name":"Courier New"},"color":"#000100"},{"align":"center","border":{"bottom":["thin","#000"]},"font":{"size":12,"bold":false,"name":"Courier New"},"color":"#000100"},{"font":{"size":12,"bold":false,"name":"Courier New"},"color":"#000100","align":"center"},{"align":"center","font":{"size":12,"bold":false,"name":"Courier New"},"color":"#000100","border":{"left":["thick","#000"]}},{"align":"left","border":{"right":["thick","#000"]},"font":{"size":12,"bold":false,"name":"Courier New"},"color":"#000100"},{"align":"left","font":{"size":12,"bold":false,"name":"Courier New"},"color":"#000100"},{"font":{"size":12,"name":"Courier New"},"border":{"right":["thick","#000"]},"color":"#000100"},{"border":{"bottom":["thick","#000"],"left":["thick","#000"]},"font":{"name":"Courier New"},"color":"#000100"},{"border":{"bottom":["thick","#000"]},"font":{"name":"Courier New"},"color":"#000100"},{"border":{"bottom":["thick","#000"],"right":["thick","#000"]},"font":{"name":"Courier New"},"color":"#000100"},{"font":{"size":12,"name":"Arial"},"border":{"top":["thick","#000"],"left":["thick","#000"]},"color":"#000100"},{"font":{"size":12,"name":"Arial"},"border":{"top":["thick","#000"]},"color":"#000100"},{"border":{"top":["thick","#000"]},"font":{"name":"Arial"},"color":"#000100"},{"font":{"size":12,"name":"Arial"},"border":{"top":["thick","#000"],"right":["thick","#000"]},"color":"#000100"},{"font":{"size":12,"name":"Arial"},"border":{"left":["thick","#000"]},"align":"center","color":"#000100"},{"align":"center","font":{"name":"Arial"},"color":"#000100"},{"font":{"size":14,"bold":true,"name":"Arial"},"border":{"left":["thick","#000"]},"align":"center","color":"#000100"},{"align":"center","font":{"bold":true,"size":14,"name":"Arial"},"color":"#000100"},{"font":{"size":12,"name":"Arial"},"border":{"left":["thick","#000"]},"color":"#000100"},{"font":{"size":12,"name":"Arial"},"color":"#000100"},{"font":{"name":"Arial"},"color":"#000100"},{"font":{"size":12,"name":"Arial"},"valign":"middle","border":{"right":["thick","#000"]},"color":"#000100"},{"align":"left","font":{"size":12,"bold":false,"name":"Arial"},"color":"#000100","border":{"left":["thick","#000"],"right":["thick","#000"]}},{"font":{"size":12,"bold":false,"name":"Arial"},"color":"#000100"},{"align":"left","font":{"size":12,"bold":false,"name":"Arial"},"color":"#000100","border":{"left":["thick","#000"]}},{"align":"center","underline":false,"border":{"bottom":["thin","#000"]},"font":{"size":12,"bold":false,"name":"Arial"},"color":"#000100"},{"align":"left","border":{"bottom":["thin","#000"]},"font":{"size":12,"bold":false,"name":"Arial"},"color":"#000100"},{"align":"center","border":{"bottom":["thin","#000"]},"font":{"size":12,"bold":false,"name":"Arial"},"color":"#000100"},{"font":{"size":12,"bold":false,"name":"Arial"},"color":"#000100","align":"center"},{"align":"center","font":{"size":12,"bold":false,"name":"Arial"},"color":"#000100","border":{"left":["thick","#000"]}},{"align":"left","border":{"right":["thick","#000"]},"font":{"size":12,"bold":false,"name":"Arial"},"color":"#000100"},{"align":"left","font":{"size":12,"bold":false,"name":"Arial"},"color":"#000100"},{"font":{"size":12,"name":"Arial"},"border":{"right":["thick","#000"]},"color":"#000100"},{"border":{"bottom":["thick","#000"],"left":["thick","#000"]},"font":{"name":"Arial"},"color":"#000100"},{"border":{"bottom":["thick","#000"]},"font":{"name":"Arial"},"color":"#000100"},{"border":{"bottom":["thick","#000"],"right":["thick","#000"]},"font":{"name":"Arial"},"color":"#000100"},{"font":{"size":12,"name":"Helvetica"},"border":{"top":["thick","#000"],"left":["thick","#000"]},"color":"#000100"},{"font":{"size":12,"name":"Helvetica"},"border":{"top":["thick","#000"]},"color":"#000100"},{"border":{"top":["thick","#000"]},"font":{"name":"Helvetica"},"color":"#000100"},{"font":{"size":12,"name":"Helvetica"},"border":{"top":["thick","#000"],"right":["thick","#000"]},"color":"#000100"},{"font":{"size":12,"name":"Helvetica"},"border":{"left":["thick","#000"]},"align":"center","color":"#000100"},{"align":"center","font":{"name":"Helvetica"},"color":"#000100"},{"font":{"size":14,"bold":true,"name":"Helvetica"},"border":{"left":["thick","#000"]},"align":"center","color":"#000100"},{"align":"center","font":{"bold":true,"size":14,"name":"Helvetica"},"color":"#000100"},{"font":{"size":12,"name":"Helvetica"},"border":{"left":["thick","#000"]},"color":"#000100"},{"font":{"size":12,"name":"Helvetica"},"color":"#000100"},{"font":{"name":"Helvetica"},"color":"#000100"},{"font":{"size":12,"name":"Helvetica"},"valign":"middle","border":{"right":["thick","#000"]},"color":"#000100"},{"align":"left","font":{"size":12,"bold":false,"name":"Helvetica"},"color":"#000100","border":{"left":["thick","#000"],"right":["thick","#000"]}},{"font":{"size":12,"bold":false,"name":"Helvetica"},"color":"#000100"},{"align":"left","font":{"size":12,"bold":false,"name":"Helvetica"},"color":"#000100","border":{"left":["thick","#000"]}},{"align":"center","underline":false,"border":{"bottom":["thin","#000"]},"font":{"size":12,"bold":false,"name":"Helvetica"},"color":"#000100"},{"align":"left","border":{"bottom":["thin","#000"]},"font":{"size":12,"bold":false,"name":"Helvetica"},"color":"#000100"},{"align":"center","border":{"bottom":["thin","#000"]},"font":{"size":12,"bold":false,"name":"Helvetica"},"color":"#000100"},{"font":{"size":12,"bold":false,"name":"Helvetica"},"color":"#000100","align":"center"},{"align":"center","font":{"size":12,"bold":false,"name":"Helvetica"},"color":"#000100","border":{"left":["thick","#000"]}},{"align":"left","border":{"right":["thick","#000"]},"font":{"size":12,"bold":false,"name":"Helvetica"},"color":"#000100"},{"align":"left","font":{"size":12,"bold":false,"name":"Helvetica"},"color":"#000100"},{"font":{"size":12,"name":"Helvetica"},"border":{"right":["thick","#000"]},"color":"#000100"},{"border":{"bottom":["thick","#000"],"left":["thick","#000"]},"font":{"name":"Helvetica"},"color":"#000100"},{"border":{"bottom":["thick","#000"]},"font":{"name":"Helvetica"},"color":"#000100"},{"border":{"bottom":["thick","#000"],"right":["thick","#000"]},"font":{"name":"Helvetica"},"color":"#000100"},{"font":{"size":12,"name":"Lato"},"border":{"top":["thick","#000"],"left":["thick","#000"]},"color":"#000100"},{"font":{"size":12,"name":"Lato"},"border":{"top":["thick","#000"]},"color":"#000100"},{"border":{"top":["thick","#000"]},"font":{"name":"Lato"},"color":"#000100"},{"font":{"size":12,"name":"Lato"},"border":{"top":["thick","#000"],"right":["thick","#000"]},"color":"#000100"},{"font":{"size":12,"name":"Lato"},"border":{"left":["thick","#000"]},"align":"center","color":"#000100"},{"align":"center","font":{"name":"Lato"},"color":"#000100"},{"font":{"size":14,"bold":true,"name":"Lato"},"border":{"left":["thick","#000"]},"align":"center","color":"#000100"},{"align":"center","font":{"bold":true,"size":14,"name":"Lato"},"color":"#000100"},{"font":{"size":12,"name":"Lato"},"border":{"left":["thick","#000"]},"color":"#000100"},{"font":{"size":12,"name":"Lato"},"color":"#000100"},{"font":{"name":"Lato"},"color":"#000100"},{"font":{"size":12,"name":"Lato"},"valign":"middle","border":{"right":["thick","#000"]},"color":"#000100"},{"align":"left","font":{"size":12,"bold":false,"name":"Lato"},"color":"#000100","border":{"left":["thick","#000"],"right":["thick","#000"]}},{"font":{"size":12,"bold":false,"name":"Lato"},"color":"#000100"},{"align":"left","font":{"size":12,"bold":false,"name":"Lato"},"color":"#000100","border":{"left":["thick","#000"]}},{"align":"center","underline":false,"border":{"bottom":["thin","#000"]},"font":{"size":12,"bold":false,"name":"Lato"},"color":"#000100"},{"align":"left","border":{"bottom":["thin","#000"]},"font":{"size":12,"bold":false,"name":"Lato"},"color":"#000100"},{"align":"center","border":{"bottom":["thin","#000"]},"font":{"size":12,"bold":false,"name":"Lato"},"color":"#000100"},{"font":{"size":12,"bold":false,"name":"Lato"},"color":"#000100","align":"center"},{"align":"center","font":{"size":12,"bold":false,"name":"Lato"},"color":"#000100","border":{"left":["thick","#000"]}},{"align":"left","border":{"right":["thick","#000"]},"font":{"size":12,"bold":false,"name":"Lato"},"color":"#000100"},{"align":"left","font":{"size":12,"bold":false,"name":"Lato"},"color":"#000100"},{"font":{"size":12,"name":"Lato"},"border":{"right":["thick","#000"]},"color":"#000100"},{"border":{"bottom":["thick","#000"],"left":["thick","#000"]},"font":{"name":"Lato"},"color":"#000100"},{"border":{"bottom":["thick","#000"]},"font":{"name":"Lato"},"color":"#000100"},{"border":{"bottom":["thick","#000"],"right":["thick","#000"]},"font":{"name":"Lato"},"color":"#000100"},{"font":{"size":10,"name":"Lato"},"valign":"middle","border":{"right":["thick","#000"]},"color":"#000100"},{"font":{"size":12,"name":"Lato"},"color":"#000100","align":"center"},{"font":{"size":10,"name":"Lato"},"valign":"middle","color":"#000100"},{"align":"center","underline":false,"font":{"size":12,"bold":false,"name":"Lato"},"color":"#000100"},{},{"font":{"size":12,"name":"Lato","bold":true},"color":"#000100","align":"center"},{"align":"center","font":{"name":"Lato","bold":true},"color":"#000100"},{"font":{"size":12,"bold":false,"name":"Lato"},"color":"#000100","align":"right"},{"align":"right"},{"align":"right","font":{"size":12}},{"align":"left","font":{"size":12}},{"font":{"size":12},"border":{"bottom":["thin","#000"]}},{"font":{"size":12},"border":{"bottom":["thin","#000"]},"align":"center"},{"valign":"top"},{"valign":"top","align":"center"},{"valign":"top","align":"center","font":{"size":12}},{"font":{"size":14,"bold":false,"name":"Lato"},"color":"#000100","align":"right"},{"font":{"size":14}},{"align":"right","font":{"size":14}},{"font":{"size":14},"border":{"bottom":["thin","#000"]}},{"font":{"size":14,"bold":true}},{"align":"right","font":{"size":9}},{"font":{"size":9}},{"font":{"size":9},"align":"center"},{"font":{"size":9},"align":"left"},{"align":"left","font":{"bold":true,"size":14}},{"align":"center","font":{"bold":true,"size":14},"valign":"top"},{"align":"center","font":{"bold":true,"size":16},"valign":"top"},{"align":"center","font":{"bold":true,"size":18},"valign":"top"},{"align":"right","font":{"size":10}},{"font":{"size":10},"align":"center"},{"align":"left","font":{"size":10}},{"align":"right","font":{"size":12},"valign":"bottom"},{"valign":"bottom"},{"font":{"size":12,"bold":false,"name":"Lato"},"color":"#000100","align":"right","valign":"bottom"},{"font":{"size":12},"border":{"bottom":["thin","#000"]},"align":"center","valign":"bottom"},{"align":"left","border":{"bottom":["thin","#000"]},"font":{"size":12,"bold":false,"name":"Lato"},"color":"#000100","valign":"bottom"},{"font":{"size":12,"bold":false,"name":"Lato"},"color":"#000100","valign":"bottom"},{"align":"center","font":{"bold":true,"size":22},"valign":"top"},{"align":"right","font":{"size":14},"valign":"bottom"},{"font":{"size":14},"valign":"bottom"},{"font":{"size":14,"bold":false,"name":"Lato"},"color":"#000100","align":"right","valign":"bottom"},{"font":{"size":14},"border":{"bottom":["thin","#000"]},"align":"center","valign":"bottom"},{"align":"left","border":{"bottom":["thin","#000"]},"font":{"size":14,"bold":false,"name":"Lato"},"color":"#000100","valign":"bottom"},{"align":"left","font":{"size":14,"bold":false,"name":"Lato"},"color":"#000100"},{"font":{"size":14,"bold":false,"name":"Lato"},"color":"#000100","valign":"bottom"},{"font":{"size":14,"name":"Lato"},"color":"#000100"},{"font":{"size":14},"align":"center"},{"valign":"top","align":"center","font":{"size":14}},{"align":"left","font":{"size":14}}],"validations":[],"cols":{"0":{"width":23},"1":{"width":46},"2":{"width":24},"3":{"width":15},"4":{"width":37},"5":{"width":13},"6":{"width":83},"7":{"width":256},"8":{"width":42},"9":{"width":18},"10":{"width":77},"11":{"width":54},"12":{"width":28},"13":{"width":62},"16":{"width":55},"len":50},"merges":["C0:D0","G11:H11","G12:H12","B5:E5","B6:G6","C8:H8","I12:K12","B4:L4","K6:L6","B13:D13","E13:G13","I11:L11","L12:M12","B14:M26","I13:K13","B7:G7"]}', '', 'https://static.jeecg.com/designreport/images/介绍xin_1607072641405.png', 'jeecg', '2020-07-10 13:38:40', 'admin', '2021-04-01 03:15:11', 0, NULL, NULL, 1, 834, NULL, NULL, NULL, NULL, 0, NULL); -INSERT INTO "public"."jimu_report" VALUES ('919370186342354944', '20240103104736__3061', '横向总合计-横纵3*2*2副本3061', NULL, NULL, '984272091947253760', '{"loopBlockList":[],"printConfig":{"paper":"A4","width":210,"height":297,"definition":1,"isBackend":false,"marginX":10,"marginY":10,"layout":"landscape","printCallBackUrl":"","paginationShow":false,"paginationLocation":"middle"},"dbexps":[],"dicts":[],"freeze":"A1","dataRectWidth":1071,"autofilter":{},"validations":[],"cols":{"0":{"width":60},"1":{"width":96},"2":{"width":115},"len":50},"area":{"sri":12,"sci":5,"eri":12,"eci":5,"width":100,"height":25},"excel_config_id":"919370186342354944","hiddenCells":[],"zonedEditionList":[],"rows":{"0":{"cells":{"0":{},"4":{},"5":{}}},"1":{"cells":{"0":{},"1":{"lineStart":"lefttop","merge":[3,1],"style":0,"text":"地区|销售额|时间","height":100},"3":{"merge":[3,0],"style":0,"text":"合计(销售)","height":100},"4":{"merge":[0,1],"style":1,"text":"#{test_heng_sum.groupRight(year)}","aggregate":"group","direction":"right","height":25},"5":{},"6":{"merge":[3,0],"style":0,"text":"合计(销售)","height":100},"7":{"merge":[3,0],"style":0,"text":"合计(赠送)","height":100},"8":{"merge":[3,0],"style":1,"text":"平均(销售)","height":100},"9":{"merge":[3,0],"style":1,"text":"最大(销售)","height":100},"10":{"merge":[3,0],"style":1,"text":"最小(销售)","height":100}}},"2":{"cells":{"0":{},"4":{"merge":[0,1],"style":1,"text":"#{test_heng_sum.groupRight(quarter)}","height":25,"aggregate":"group","direction":"right"},"5":{},"8":{},"9":{},"10":{}}},"3":{"cells":{"0":{},"4":{"merge":[0,1],"style":1,"text":"#{test_heng_sum.groupRight(month)}","height":25,"aggregate":"group","direction":"right"},"5":{},"8":{},"9":{},"10":{}}},"4":{"cells":{"0":{},"4":{"style":1,"text":"销售"},"5":{"style":1,"text":"赠送"},"8":{},"9":{},"10":{}}},"5":{"cells":{"0":{},"1":{"style":1,"text":"#{test_heng_sum.group(region)}","aggregate":"group"},"2":{"style":1,"text":"#{test_heng_sum.group(province)}","aggregate":"group"},"3":{"style":0,"text":"=SUM(E6)"},"4":{"style":0,"text":"#{test_heng_sum.dynamic(sales)}","aggregate":"dynamic"},"5":{"style":0,"text":"#{test_heng_sum.dynamic(gift)}","aggregate":"dynamic"},"6":{"style":0,"text":"=SUM(E6)"},"7":{"style":0,"text":"=SUM(F6)"},"8":{"style":0,"text":"=AVERAGE(E6)"},"9":{"style":0,"text":"=MAX(F6)"},"10":{"style":0,"text":"=MIN(F6)"}}},"6":{"cells":{"0":{},"1":{"merge":[0,1],"style":1,"text":"合计","height":25},"2":{},"3":{"style":0,"text":" "},"4":{"style":0,"text":"=SUM(E6)"},"5":{"style":0,"text":"=SUM(F6)"},"6":{"style":0,"text":" "},"7":{"style":0,"text":" "},"8":{"style":0,"text":" "},"9":{"style":0,"text":" "},"10":{"style":0,"text":" "}}},"7":{"cells":{"0":{},"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":{}}},"8":{"cells":{"0":{}}},"len":167},"rpbar":{"show":true,"pageSize":"","btnList":[]},"groupField":"test_heng_sum.region","fixedPrintHeadRows":[],"fixedPrintTailRows":[],"displayConfig":{},"background":false,"name":"sheet1","styles":[{"border":{"top":["thin","#000"],"left":["thin","#000"],"bottom":["thin","#000"],"right":["thin","#000"]}},{"border":{"top":["thin","#000"],"left":["thin","#000"],"bottom":["thin","#000"],"right":["thin","#000"]},"align":"center"},{"align":"center"},{"bgcolor":"#9cc2e6"},{"border":{"top":["thin","#000"],"left":["thin","#000"],"bottom":["thin","#000"],"right":["thin","#000"]},"bgcolor":"#9cc2e6"}],"isGroup":true,"merges":["B2:C5","D2:D5","E2:F2","G2:G5","H2:H5","I2:I5","J2:J5","K2:K5","E3:F3","E4:F4","B7:C7"]}', NULL, NULL, 'admin', '2024-02-19 09:35:44', '', '2024-03-04 19:15:56', 0, NULL, NULL, 0, 53, NULL, NULL, NULL, NULL, 0, NULL); -INSERT INTO "public"."jimu_report" VALUES ('924614453466595328', '20201214142804__5048', '条形码报表副本5048', NULL, NULL, '984272091947253760', '{"loopBlockList":[],"querySetting":{"izOpenQueryBar":false,"izDefaultQuery":true},"recordSubTableOrCollection":{"group":[],"record":[],"range":[]},"printConfig":{"layout":"portrait","printCallBackUrl":"","paper":"A4","isBackend":false,"width":210,"definition":1,"marginX":10,"height":297,"marginY":10},"hidden":{"rows":[],"cols":[]},"queryFormSetting":{"useQueryForm":false,"dbKey":"","idField":""},"dbexps":[],"toolPrintSizeObj":{"printType":"A4","widthPx":718,"heightPx":1047},"dicts":["sex1","sex1","sex1"],"fillFormToolbar":{"show":true,"btnList":["save","subTable_add","verify","subTable_del","print","close","first","prev","next","paging","total","last","exportPDF","exportExcel"]},"freeze":"A1","dataRectWidth":704,"autofilter":{},"validations":[],"cols":{"0":{"width":16},"1":{"width":103},"2":{"width":156},"3":{"width":51},"4":{"width":96},"5":{"width":61},"6":{"width":106},"7":{"width":115},"8":{"width":135},"len":50},"area":false,"pyGroupEngine":false,"submitHandlers":[],"excel_config_id":"924614453466595328","hiddenCells":[],"zonedEditionList":[],"rows":{"0":{"cells":{"1":{"merge":[1,3],"style":39,"text":"居民身份证申领登记表"},"5":{"rendered":"","merge":[0,2],"display":"text","text":""},"-1":{"text":"${tm.tp}"}},"height":27},"1":{"cells":{"5":{"virtual":"ZiOFmILaRjdmVs6E","rendered":"Mm55SPrx6ZG5ga8T","display":"barcode","merge":[0,2],"style":2,"text":"${tm.tm}"}},"height":52},"2":{"cells":{"1":{"merge":[0,3],"style":36,"text":"受理单位(盖章)珠海市公安局"},"5":{"style":6,"text":" "},"6":{"style":6,"text":" "},"7":{"style":6,"text":" "}},"height":34},"3":{"cells":{"1":{"style":24,"text":"姓名"},"2":{"rendered":"","style":7,"text":"${tm.name}"},"3":{"style":16,"text":"性别"},"4":{"isDict":1,"rendered":"","dictCode":"sex1","style":7,"text":"${tm.sex}"},"5":{"style":16,"text":"民族"},"6":{"style":7,"text":"${tm.nation}"},"7":{"rendered":"ftkUSZOje4A5gVO3","merge":[2,0],"display":"img","style":7,"text":"${tm.tp}"}},"isDrag":true,"height":47},"4":{"cells":{"1":{"style":24,"text":"出生日期"},"2":{"merge":[0,4],"style":32,"text":"${tm.birth}"}},"isDrag":true,"height":51},"5":{"cells":{"1":{"style":21,"text":"常住户口所在地住址"},"2":{"merge":[0,4],"style":7,"text":"${tm.zhuzhi}"}},"isDrag":true,"height":62},"6":{"cells":{"1":{"style":24,"text":"公民身份证"},"2":{"merge":[0,5],"style":7,"text":"${tm.card}"}},"isDrag":true,"height":55},"7":{"cells":{"1":{"style":24,"text":"有限期限"},"2":{"merge":[0,1],"style":34,"text":"${tm.ydate}"},"4":{"style":24,"text":"签发机关"},"5":{"merge":[0,2],"style":7,"text":"${tm.qfjg}"}},"isDrag":true,"height":52},"8":{"cells":{"1":{"style":24,"text":"申领原因"},"2":{"merge":[0,5],"style":7,"text":"${tm.slyy}"}},"isDrag":true,"height":55},"9":{"cells":{"1":{"style":24,"text":"受理时间"},"2":{"merge":[0,1],"style":32,"text":"${tm.sdate}"},"4":{"style":24,"text":"受理号"},"5":{"merge":[0,2],"style":7,"text":"${tm.shao}"}},"isDrag":true,"height":49},"10":{"cells":{"1":{"style":24,"text":"承办人"},"2":{"merge":[0,1],"style":7,"text":"${tm.cbr}"},"4":{"style":24,"text":"受理单位领导"},"5":{"merge":[0,2],"style":7,"text":"${tm.sld}"}},"isDrag":true,"height":42},"11":{"cells":{"1":{"style":21,"text":"申请(监护)人签名"},"2":{"merge":[0,1],"style":7,"text":"${tm.sr}"},"4":{"style":21,"text":"申请(监护)人联系电话"},"5":{"merge":[0,2],"style":7,"text":"${tm.jphone}"}},"isDrag":true,"height":59},"12":{"cells":{"1":{"style":24,"text":"领证人签名"},"2":{"merge":[0,1],"style":7,"text":"${tm.lzr}"},"4":{"style":24,"text":"领证时间"},"5":{"merge":[0,2],"style":32,"text":"${tm.ldate}"}},"isDrag":true,"height":57},"13":{"cells":{"1":{"merge":[0,1],"style":24,"text":"是否通过邮政特快专递方式领取二代"},"3":{"merge":[0,4],"style":7,"text":"${tm.sk}"}},"isDrag":true,"height":50},"14":{"cells":{"1":{"style":24,"text":"投递地址"},"2":{"merge":[0,2],"style":7,"text":"${tm.dizhi}"},"5":{"style":24,"text":"收件人"},"6":{"merge":[0,1],"style":7,"text":" "}},"isDrag":true,"height":53},"15":{"cells":{"1":{"style":24,"text":"邮政编码"},"2":{"merge":[0,1],"style":7,"text":" "},"4":{"style":24,"text":"备注"},"5":{"merge":[0,2],"style":7,"text":" "}},"isDrag":true,"height":47},"16":{"cells":{"1":{"merge":[0,6],"style":31,"text":"公安部治安管理局治"}}},"len":100},"rpbar":{"show":true,"pageSize":"","btnList":[]},"fixedPrintHeadRows":[],"fixedPrintTailRows":[],"displayConfig":{},"fillFormInfo":{"layout":{"direction":"horizontal","width":200,"height":45}},"background":false,"name":"sheet1","styles":[{"font":{"size":16}},{"align":"center","font":{"size":16}},{"align":"center"},{"textwrap":true},{"border":{"top":["thin","#000"],"left":["thin","#000"],"bottom":["thin","#000"],"right":["thin","#000"]}},{"border":{"top":["thin","#000"],"left":["thin","#000"],"bottom":["thin","#000"],"right":["thin","#000"]},"textwrap":true},{"font":{"name":"宋体"}},{"border":{"top":["thin","#000"],"left":["thin","#000"],"bottom":["thin","#000"],"right":["thin","#000"]},"font":{"name":"宋体"}},{"border":{"top":["thin","#000"],"left":["thin","#000"],"bottom":["thin","#000"],"right":["thin","#000"]},"textwrap":true,"font":{"name":"宋体"}},{"font":{"size":9,"name":"宋体"}},{"color":"#3f3f3f","font":{"size":9,"name":"宋体"}},{"color":"#0c0c0c","font":{"size":9,"name":"宋体"}},{"color":"#7f7f7f","font":{"size":9,"name":"宋体"}},{"color":"#595959","font":{"size":9,"name":"宋体"}},{"border":{"top":["thin","#000"],"left":["thin","#000"],"bottom":["thin","#000"],"right":["thin","#000"]},"align":"right","font":{"name":"宋体"}},{"border":{"top":["thin","#000"],"left":["thin","#000"],"bottom":["thin","#000"],"right":["thin","#000"]},"textwrap":true,"align":"center","font":{"name":"宋体"}},{"border":{"top":["thin","#000"],"left":["thin","#000"],"bottom":["thin","#000"],"right":["thin","#000"]},"font":{"name":"宋体","bold":true}},{"border":{"top":["thin","#000"],"left":["thin","#000"],"bottom":["thin","#000"],"right":["thin","#000"]},"font":{"name":"宋体","bold":false}},{"border":{"top":["thin","#000"],"left":["thin","#000"],"bottom":["thin","#000"],"right":["thin","#000"]},"textwrap":true,"font":{"name":"宋体","bold":false}},{"border":{"top":["thin","#000"],"left":["thin","#000"],"bottom":["thin","#000"],"right":["thin","#000"]},"textwrap":true,"align":"center","font":{"name":"宋体","bold":false}},{"border":{"top":["thin","#000"],"left":["thin","#000"],"bottom":["thin","#000"],"right":["thin","#000"]},"textwrap":true,"font":{"name":"宋体","bold":true}},{"border":{"top":["thin","#000"],"left":["thin","#000"],"bottom":["thin","#000"],"right":["thin","#000"]},"textwrap":true,"align":"center","font":{"name":"宋体","bold":true}},{"font":{"name":"宋体","bold":true}},{"border":{"top":["thin","#000"],"left":["thin","#000"],"bottom":["thin","#000"],"right":["thin","#000"]},"align":"right","font":{"name":"宋体","bold":true}},{"border":{"top":["thin","#000"],"left":["thin","#000"],"bottom":["thin","#000"],"right":["thin","#000"]},"align":"center","font":{"name":"宋体","bold":true}},{"align":"center","font":{"name":"宋体","bold":true}},{"border":{"top":["thin","#000"],"left":["thin","#000"],"bottom":["thin","#000"],"right":["thin","#000"]},"align":"center","font":{"name":"宋体"}},{"font":{"size":8}},{"align":"center","font":{"size":8}},{"align":"right","font":{"size":8}},{"align":"right","font":{"size":10}},{"color":"#7f7f7f","align":"right","font":{"size":10}},{"border":{"top":["thin","#000"],"left":["thin","#000"],"bottom":["thin","#000"],"right":["thin","#000"]},"format":"date2","font":{"name":"宋体"}},{"format":"date2"},{"border":{"top":["thin","#000"],"left":["thin","#000"],"bottom":["thin","#000"],"right":["thin","#000"]},"format":"date","font":{"name":"宋体"}},{"format":"date"},{"color":"#595959","valign":"bottom","font":{"size":9,"name":"宋体"}},{"align":"center","font":{"bold":true}},{"align":"center","font":{"size":16,"bold":true}},{"valign":"bottom","align":"center","font":{"size":16,"bold":true}}],"freezeLineColor":"rgb(185, 185, 185)","merges":["B1:E2","F1:H1","F2:H2","B3:E3","H4:H6","C5:G5","C6:G6","C7:H7","C8:D8","F8:H8","C9:H9","C10:D10","F10:H10","C11:D11","F11:H11","C12:D12","F12:H12","C13:D13","F13:H13","B14:C14","D14:H14","C15:E15","G15:H15","C16:D16","F16:H16","B17:H17"]}', NULL, 'https://static.jeecg.com/designreport/images/未标题-1_1608118350039.png', '', '2024-03-04 20:54:34', 'admin', '2025-05-08 19:32:54', 0, NULL, NULL, 0, 56, NULL, NULL, NULL, '1001', 1, NULL); -INSERT INTO "public"."jimu_report" VALUES ('928540173805338624', '20240318105250', '电子收款收据', NULL, NULL, '984302991393210368', '{"loopBlockList":[],"printConfig":{"layout":"portrait","printCallBackUrl":"","paper":"A4","isBackend":false,"width":210,"definition":1,"marginX":10,"height":297,"marginY":10},"dbexps":[],"dicts":[],"freeze":"A1","dataRectWidth":686,"autofilter":{},"validations":[],"cols":{"0":{"width":21},"1":{"width":35},"2":{"width":45},"3":{"width":60},"4":{"width":128},"5":{"width":79},"6":{"width":67},"7":{"width":67},"8":{"width":84},"10":{"width":29},"len":100},"area":{"sri":24,"sci":11,"eri":24,"eci":11,"width":100,"height":25},"pyGroupEngine":false,"excel_config_id":"928540173805338624","hiddenCells":[],"zonedEditionList":[],"rows":{"0":{"cells":{},"height":9},"1":{"cells":{"2":{"rendered":"IKbjwc1lQUlSeJfd","display":"qrcode","merge":[2,1],"style":0,"text":"http://www.baidu.com","config":1,"height":69},"3":{}},"height":19},"2":{"cells":{"2":{},"3":{},"4":{"merge":[0,4],"style":80,"text":"北京万达物业服务有限公司","height":25},"9":{"virtual":"YfdiQDcuqTjlOG4f","style":67,"text":" "}}},"3":{"cells":{"2":{},"3":{},"4":{"merge":[0,4],"style":72,"text":"电子收款收据","height":25}}},"4":{"cells":{"2":{},"3":{}},"height":16},"5":{"cells":{"1":{"rendered":"","merge":[0,2],"style":41,"text":"客户/业主","config":"","height":25},"4":{"merge":[0,1],"style":43,"text":"#{receipt.customName}","height":25},"5":{},"6":{"merge":[0,1],"style":44,"text":"收款单号","height":25},"8":{"merge":[0,1],"style":45,"text":"#{receipt.receiptNo}","height":25},"9":{}},"height":25},"6":{"cells":{"1":{"rendered":"","merge":[0,2],"style":44,"text":"实际交款人","config":"","height":25},"4":{"merge":[0,1],"style":43,"text":"#{receipt.actualPayer}","height":25},"5":{},"6":{"rendered":"","merge":[0,1],"style":44,"text":"结算方式","config":"","height":25},"8":{"merge":[0,1],"style":45,"text":"#{receipt.settlementType}","height":25},"9":{}},"height":25},"7":{"cells":{"1":{"merge":[0,2],"style":44,"text":"收款时间","height":25},"4":{"merge":[0,1],"style":43,"text":"#{receipt.collectionTime}","height":25},"5":{},"6":{"merge":[0,1],"style":44,"text":"原单号","height":25},"8":{"merge":[0,1],"style":45,"text":"#{receipt.originalNumber}","height":25},"9":{}},"height":25},"8":{"cells":{"1":{"merge":[0,2],"style":44,"text":"收款组织","height":25},"4":{"merge":[0,5],"style":46,"text":"#{receipt.organization}","height":25},"5":{},"6":{},"7":{},"8":{},"9":{},"11":{"rendered":"","text":"","config":""}},"height":25},"9":{"cells":{"1":{}}},"10":{"cells":{"1":{"merge":[0,1],"style":19,"text":"行号","height":38},"3":{"merge":[0,1],"style":47,"text":"房产名称","height":38},"5":{"rendered":"","merge":[0,2],"style":47,"text":"费用项目","config":"","height":38},"8":{"style":47,"text":"应交月份"},"9":{"style":19,"text":"金额"}},"height":38},"11":{"cells":{"1":{"merge":[0,1],"text":"=row()","height":34},"3":{"merge":[0,1],"text":"#{receiptProject.propertyName}","height":34},"5":{"merge":[0,2],"text":"#{receiptProject.expenseItem}","height":34},"8":{"style":0,"text":"#{receiptProject.payableMonths}"},"9":{"style":83,"text":"#{receiptProject.price}"},"13":{"rendered":"","text":"","config":""}},"height":34},"12":{"cells":{"1":{"merge":[0,2],"style":17,"text":"款项合计","height":30},"4":{"merge":[0,5],"style":82,"text":"人民币 =sum(J12) 元","height":30},"11":{"rendered":"","text":"","config":""},"15":{"rendered":"","text":"","config":""}},"height":30},"13":{"cells":{"1":{"merge":[0,2],"style":19,"text":"缴费说明","height":30},"4":{"merge":[0,5],"style":23,"text":"#{receipt.paymentDesc}","height":30},"15":{"rendered":"","text":"","config":""}},"height":30},"14":{"cells":{"1":{"merge":[0,2],"style":19,"text":"检验密码","height":35},"4":{"merge":[0,5],"style":84,"text":"#{receipt.verifyPassword}","height":35},"5":{},"6":{},"7":{},"8":{},"9":{}},"height":35},"15":{"cells":{"8":{"text":" ","virtual":"qWMWhe42wLnQXDUa"}},"height":10},"16":{"cells":{"1":{"merge":[0,2],"style":19,"text":"收款经办","height":30},"4":{"style":20,"text":"#{receipt.dealWith}"},"5":{"merge":[0,1],"style":19,"text":"公司签章","height":30},"7":{"merge":[0,2],"style":23,"text":" ","height":30}},"height":30},"17":{"cells":{"8":{"rendered":"","text":"","config":""}},"height":10},"18":{"cells":{"1":{"merge":[0,1],"style":29,"text":"加密说明:","height":25}}},"19":{"cells":{"1":{"merge":[0,8],"style":63,"text":"1、本电子收据加密信息算法使用 SHA256","height":30},"2":{},"3":{},"4":{},"5":{},"6":{},"7":{},"8":{},"9":{}},"height":30},"20":{"cells":{"1":{"merge":[0,8],"style":65,"text":"2、原始输入信息依次为:法人名称、收款组织、客户/业主、实际交款人、结算方式、收款单号、收款时间、款项合计,使用RSA私钥加密信息摘要生成“校验密码”","height":37},"2":{},"3":{},"4":{},"5":{},"6":{},"7":{},"8":{},"9":{}},"height":37},"21":{"cells":{"1":{"merge":[0,8],"style":65,"text":"3、应公钥为MIGEMAOCCSqGSIb3DQEBAQUAMGNADCBiQKBgQCEf iYMBHNInswq1N/KLBy smaG68D+nlQk/RZ3QVSTmWo310WnSipYR3ksCNBksyGZceEneCIEuWBboPImYQUbH/ EHP3I3Ri 1E1 INjNI3GvQ7oXH/RLmHRGAgCz 4d9QcW7mGTHVvj/3o/gEvqyHgW6eG1lsl f6aEi7mi IRHxYtZrFQIDAQAB","height":57},"2":{},"3":{},"4":{},"5":{},"6":{},"7":{},"8":{},"9":{}},"height":57},"23":{"cells":{},"height":25},"len":200},"rpbar":{"show":true,"pageSize":"","btnList":[]},"fixedPrintHeadRows":[],"fixedPrintTailRows":[],"displayConfig":{"1":{"colorDark":"#000000","width":69,"text":"http://www.baidu.com","colorLight":"#ffffff","height":69}},"background":false,"name":"sheet1","styles":[{"align":"center"},{"font":{"size":7.5}},{"font":{"size":8}},{"align":"center","font":{"size":12}},{"font":{"size":12}},{"align":"center","font":{"size":12,"bold":true}},{"font":{"size":12,"bold":true}},{"align":"center","font":{"size":11}},{"font":{"size":11}},{"align":"center","font":{"size":11,"bold":true}},{"font":{"size":11,"bold":true}},{"bgcolor":"#dae7d2","align":"center","font":{"size":11,"bold":true}},{"bgcolor":"#dae7d2","font":{"size":11,"bold":true}},{"border":{"top":["thin","#000"]},"bgcolor":"#dae7d2","align":"center","font":{"size":11,"bold":true}},{"border":{"top":["thin","#000"],"bottom":["thin","#000"]},"bgcolor":"#dae7d2","align":"center","font":{"size":11,"bold":true}},{"border":{"top":["thin","#000"],"bottom":["thin","#000"],"right":["thin","#000"]},"bgcolor":"#dae7d2","align":"center","font":{"size":11,"bold":true}},{"border":{"top":["thin","#000"],"bottom":["thin","#000"],"right":["thin","#1e8a1e"]},"bgcolor":"#dae7d2","align":"center","font":{"size":11,"bold":true}},{"border":{"top":["thin","#000"],"bottom":["thin","#1e8a1e"]},"bgcolor":"#dae7d2","align":"center","font":{"size":11,"bold":true}},{"border":{"top":["thin","#1e8a1e"]},"bgcolor":"#dae7d2","align":"center","font":{"size":11,"bold":true}},{"border":{"top":["thin","#1e8a1e"],"bottom":["thin","#1e8a1e"]},"bgcolor":"#dae7d2","align":"center","font":{"size":11,"bold":true}},{"border":{"top":["thin","#1e8a1e"],"left":["thin","#1e8a1e"],"bottom":["thin","#1e8a1e"],"right":["thin","#1e8a1e"]}},{"border":{"top":["thin","#1e8a1e"]}},{"border":{"top":["thin","#1e8a1e"],"bottom":["thin","#1e8a1e"]}},{"border":{"top":["thin","#1e8a1e"],"left":["thin","#1e8a1e"],"bottom":["thin","#1e8a1e"]}},{"bgcolor":"#dae7d2","align":"center"},{"bgcolor":"#dae7d2"},{"bgcolor":"#dae7d2","align":"center","font":{"bold":true}},{"bgcolor":"#dae7d2","font":{"bold":true}},{"align":"center","font":{"bold":true}},{"font":{"bold":true}},{"bgcolor":"【QQYUN-8110】在线通讯录支持设置权限","align":"center","font":{"bold":true}},{"bgcolor":"【QQYUN-8110】在线通讯录支持设置权限","font":{"bold":true}},{"color":"【QQYUN-8110】在线通讯录支持设置权限"},{"color":"#0a0a0a"},{"border":{"top":["thin","#1e8a1e"]},"bgcolor":"#dae7d2","align":"center","font":{"bold":true}},{"border":{"top":["thin","#1e8a1e"],"bottom":["thin","#1e8a1e"]},"bgcolor":"#dae7d2","align":"center","font":{"bold":true}},{"border":{"left":["thin","#1e8a1e"]}},{"border":{"top":["thin","#1e8a1e"],"left":["thin","#1e8a1e"]}},{"border":{"left":["thin","#1e8a1e"],"bottom":["thin","#1e8a1e"]}},{"border":{"top":["thin","#1e8a1e"],"bottom":["thin","#1e8a1e"]},"bgcolor":"#dae7d2","align":"center","font":{"size":10.5,"bold":true}},{"bgcolor":"#dae7d2","font":{"size":10.5,"bold":true}},{"border":{"top":["thin","#000"],"bottom":["thin","#1e8a1e"]},"bgcolor":"#dae7d2","valign":"middle","align":"center","font":{"size":11,"bold":true}},{"bgcolor":"#dae7d2","valign":"middle","font":{"size":11,"bold":true}},{"border":{"top":["thin","#1e8a1e"],"left":["thin","#1e8a1e"],"bottom":["thin","#1e8a1e"],"right":["thin","#1e8a1e"]},"valign":"middle"},{"border":{"top":["thin","#1e8a1e"],"bottom":["thin","#1e8a1e"]},"bgcolor":"#dae7d2","valign":"middle","align":"center","font":{"size":11,"bold":true}},{"border":{"top":["thin","#1e8a1e"],"left":["thin","#1e8a1e"],"bottom":["thin","#1e8a1e"]},"valign":"middle"},{"border":{"left":["thin","#1e8a1e"],"bottom":["thin","#1e8a1e"]},"valign":"middle"},{"border":{"top":["thin","#1e8a1e"],"left":["thin","#1e8a1e"],"bottom":["thin","#1e8a1e"],"right":["thin","#1e8a1e"]},"bgcolor":"#dae7d2","align":"center","font":{"size":11,"bold":true}},{"bgcolor":"sk-JsZB4Wi1HM2zJne40434CbCd071642Ab9910Ee1cA4CaE115"},{"bgcolor":"#dae7d2","font":{"size":11}},{"border":{"top":["thin","#000"]},"bgcolor":"#dae7d2","font":{"size":11,"bold":true}},{"border":{"top":["thin","#000"],"bottom":["thin","#000"]},"bgcolor":"#dae7d2","font":{"size":11,"bold":true}},{"border":{"top":["thin","#000"],"bottom":["thin","#1e8a1e"]},"bgcolor":"#dae7d2","font":{"size":11,"bold":true}},{"border":{"top":["thin","#1e8a1e"],"bottom":["thin","#1e8a1e"]},"font":{"size":10}},{"font":{"size":10}},{"border":{"top":["thin","#1e8a1e"],"bottom":["thin","#1e8a1e"]},"font":{"size":11}},{"border":{"top":["thin","#1e8a1e"],"bottom":["thin","#1e8a1e"]},"font":{"size":11,"bold":true}},{"border":{"top":["thin","#1e8a1e"],"bottom":["thin","#1e8a1e"]},"align":"center","font":{"size":11,"bold":true}},{},{"border":{"top":["thin","#1e8a1e"],"bottom":["thin","#1e8a1e"]},"align":"center"},{"border":{"top":["thin","#1e8a1e"],"bottom":["thin","#1e8a1e"]},"bgcolor":"#dae7d2","align":"center"},{"border":{"bottom":["thin","#1e8a1e"]}},{"border":{"top":["thin","#1e8a1e"],"bottom":["thin","#1e8a1e"]},"bgcolor":"#dae7d2","align":"center","font":{"size":11}},{"valign":"bottom"},{"textwrap":true},{"textwrap":true,"valign":"top"},{"align":"center","font":{"size":14}},{"font":{"size":14}},{"font":{"size":14,"bold":true}},{"align":"center","font":{"size":14,"bold":true}},{"align":"center","font":{"size":15,"bold":true}},{"font":{"size":15}},{"align":"center","font":{"size":15,"name":"宋体","bold":true}},{"font":{"size":15,"name":"宋体"}},{"align":"center","font":{"size":15,"name":"楷体","bold":true}},{"font":{"size":15,"name":"楷体"}},{"align":"center","font":{"size":15,"name":"仿宋","bold":true}},{"font":{"size":15,"name":"仿宋"}},{"align":"center","font":{"size":15,"name":"华文行楷","bold":true}},{"font":{"size":15,"name":"华文行楷"}},{"align":"center","font":{"size":14,"name":"宋体"}},{"font":{"name":"宋体"}},{"border":{"top":["thin","#1e8a1e"],"left":["thin","#1e8a1e"],"bottom":["thin","#1e8a1e"]},"font":{"bold":true}},{"align":"right"},{"border":{"left":["thin","#1e8a1e"],"bottom":["thin","#1e8a1e"]},"textwrap":true}],"merges":["C2:D4","E3:I3","E4:I4","B6:D6","E6:F6","G6:H6","I6:J6","B7:D7","E7:F7","G7:H7","I7:J7","B8:D8","E8:F8","G8:H8","I8:J8","B9:D9","E9:J9","B11:C11","D11:E11","F11:H11","B12:C12","D12:E12","F12:H12","B13:D13","E13:J13","B14:D14","E14:J14","B15:D15","E15:J15","B17:D17","F17:G17","H17:J17","B19:C19","B20:J20","B21:J21","B22:J22"],"imgList":[{"row":2,"col":9,"colspan":1,"rowspan":2,"width":"96","height":"47","src":"https://jeecgdev.oss-cn-beijing.aliyuncs.com/jimureport/images/wanda_1710733731369.jpg","layer_id":"YfdiQDcuqTjlOG4f","offsetX":0,"offsetY":0,"virtualCellRange":[[2,9]]},{"row":15,"col":8,"colspan":1,"rowspan":5,"width":"82","height":"77","src":"https://jeecgdev.oss-cn-beijing.aliyuncs.com/jimureport/images/dzyz_1710741011435.png","layer_id":"qWMWhe42wLnQXDUa","offsetX":0,"offsetY":0,"virtualCellRange":[[15,8]]}]}', NULL, NULL, 'admin', '2024-03-18 10:52:51', 'admin', '2024-03-20 10:16:40', 0, NULL, NULL, 1, 60, NULL, NULL, NULL, '1', 0, NULL); -INSERT INTO "public"."jimu_report" VALUES ('938680635597357056', '20240412162853', '测试纵向分组报表111', NULL, NULL, '984272091947253760', '{"loopBlockList":[],"printConfig":{"layout":"portrait","printCallBackUrl":"","paper":"A4","isBackend":false,"width":210,"definition":1,"marginX":10,"height":297,"marginY":10},"dbexps":[],"dicts":[],"freeze":"A1","dataRectWidth":1048,"autofilter":{},"validations":[],"cols":{"0":{"width":53},"6":{"width":114},"7":{"width":105},"8":{"width":276},"len":50},"area":{"sri":6,"sci":6,"eri":6,"eci":6,"width":114,"height":25},"pyGroupEngine":false,"excel_config_id":"938680635597357056","hiddenCells":[],"zonedEditionList":[],"rows":{"2":{"cells":{"1":{"style":1,"text":"国家"},"2":{"style":1,"text":"城市"},"3":{"style":1,"text":"地区"},"4":{"style":1,"text":"公司"},"5":{"style":1,"text":"部门"},"6":{"text":"学历","style":1},"7":{"text":"性别","style":1},"8":{"style":1,"text":"年龄"}}},"3":{"cells":{"1":{"style":0,"text":"#{zongxdata.group(country)}","aggregate":"group"},"2":{"style":0,"text":"#{zongxdata.group(city)}","aggregate":"group"},"3":{"style":0,"text":"#{zongxdata.group(region)}","aggregate":"group"},"4":{"style":0,"text":"#{zongxdata.group(org)}","aggregate":"group"},"5":{"style":0,"aggregate":"group","text":"#{zongxdata.group(department)}"},"6":{"style":0,"aggregate":"group","subtotal":"-1","funcname":"-1","text":"#{zongxdata.group(education)}"},"7":{"style":0,"aggregate":"group","text":"#{zongxdata.group(sex)}","subtotal":"groupField","funcname":"-1"},"8":{"style":0,"text":"#{zongxdata.age}","aggregate":"group","subtotal":"-1","funcname":"SUM","noCalculate":false,"filterEmptyValue":false,"filterNegative":false,"direction":"down"}}},"8":{"cells":{}},"9":{"cells":{}},"len":101},"rpbar":{"show":true,"pageSize":"","btnList":[]},"groupField":"zongxdata.country","fixedPrintHeadRows":[],"fixedPrintTailRows":[],"displayConfig":{},"background":false,"name":"sheet1","styles":[{"border":{"top":["thin","#000"],"left":["thin","#000"],"bottom":["thin","#000"],"right":["thin","#000"]}},{"border":{"top":["thin","#000"],"left":["thin","#000"],"bottom":["thin","#000"],"right":["thin","#000"]},"bgcolor":"#c5e0b3"}],"isGroup":true,"merges":[]}', NULL, NULL, 'admin', '2024-04-12 16:28:54', 'admin', '2024-04-12 16:57:16', 0, NULL, NULL, 0, 42, NULL, NULL, NULL, '2', 0, NULL); -INSERT INTO "public"."jimu_report" VALUES ('94b04a1ed7c17f8e96baa6d89fb90758', '3698522', '员工请假单', '', NULL, '984302991393210368', '{"area":false,"printElWidth":794,"excel_config_id":"94b04a1ed7c17f8e96baa6d89fb90758","printElHeight":1047,"rows":{"1":{"cells":{"0":{"text":"员工请假单","style":100,"merge":[0,7]},"1":{"style":100},"2":{"style":100},"3":{"style":100},"4":{"style":100},"5":{"style":100},"6":{"style":100},"7":{"style":100}},"height":65},"2":{"cells":{"0":{"text":"单位:北极星","style":101,"merge":[0,2]},"1":{"style":101},"2":{"style":101},"3":{"style":102},"4":{"style":102},"5":{"style":102},"6":{"style":102},"7":{"style":102}},"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":"婚、丧假"},"5":{"style":107,"text":" "},"6":{"style":119,"merge":[0,1],"text":"生育假"},"7":{"style":107,"text":" "}},"height":29},"5":{"cells":{"0":{"style":0},"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天)"},"5":{"style":107,"text":" "},"6":{"style":119,"merge":[0,1],"text":"1、流产"},"7":{"style":107,"text":" "}},"height":25},"6":{"cells":{"0":{"style":0},"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天)"},"5":{"style":107,"text":" "},"6":{"style":119,"merge":[0,1],"text":"2、产假"},"7":{"style":107,"text":" "}}},"7":{"cells":{"0":{"style":0},"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天)"},"5":{"style":107,"text":" "},"6":{"style":119,"merge":[0,1],"text":"3、哺乳假"},"7":{"style":107,"text":" "}}},"8":{"cells":{"0":{"style":0},"1":{"style":119,"text":" "},"2":{"style":119,"text":" "},"3":{"style":119,"text":"探亲地点:","merge":[0,2]},"4":{"style":107,"text":" "},"5":{"style":107,"text":" "},"6":{"style":119,"merge":[0,1],"text":"4、陪护假"},"7":{"style":107,"text":" "},"8":{"style":15},"9":{"style":15},"10":{"style":15},"11":{"style":15},"12":{"style":15},"13":{"style":15},"14":{"style":15},"15":{"style":15},"16":{"style":15},"17":{"style":15},"18":{"style":15},"19":{"style":15},"20":{"style":15},"21":{"style":15},"22":{"style":15},"23":{"style":5},"24":{"style":5},"25":{"style":5}}},"9":{"cells":{"0":{"style":124,"text":"请假时间"},"1":{"style":125,"merge":[0,6],"text":"2020年02-30 至2020年02-03-30"},"2":{"style":115,"text":" "},"3":{"style":115,"text":" "},"4":{"style":115,"text":" "},"5":{"style":115,"text":" "},"6":{"style":115,"text":" "},"7":{"style":115,"text":" "}},"height":46},"10":{"cells":{"0":{"style":126,"text":"审批人员及意见"},"1":{"merge":[0,6],"style":127,"text":"同意"},"2":{"style":118,"text":" "},"3":{"style":118,"text":" "},"4":{"style":118,"text":" "},"5":{"style":118,"text":" "},"6":{"style":118,"text":" "},"7":{"style":118,"text":" "}},"height":89},"11":{"cells":{"0":{"text":"备注","style":119},"1":{"style":119,"text":" "},"2":{"text":"请假人签名","style":119},"3":{"merge":[0,4],"style":119,"text":" "},"4":{"style":107,"text":" "},"5":{"style":107,"text":" "},"6":{"style":107,"text":" "},"7":{"style":107,"text":" "}},"height":90},"12":{"cells":{"0":{"merge":[0,7],"style":120,"text":"请假审批表一式两份,考勤员与人力资源部门各存一份"},"1":{"style":106,"text":" "},"2":{"style":106,"text":" "},"3":{"style":106,"text":" "},"4":{"style":106,"text":" "},"5":{"style":106,"text":" "},"6":{"style":106,"text":" "},"7":{"style":106,"text":" "}},"height":25},"len":101},"dbexps":[],"toolPrintSizeObj":{"printType":"A4","widthPx":794,"heightPx":1047},"dicts":[],"freeze":"A1","dataRectWidth":789,"background":false,"name":"sheet1","autofilter":{},"styles":[{"textwrap":true},{"textwrap":false},{"textwrap":true,"valign":"middle"},{"textwrap":false,"valign":"middle"},{"align":"center"},{"border":{"bottom":["thin","#000"],"top":["thin","#000"],"left":["thin","#000"],"right":["thin","#000"]}},{"textwrap":true,"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"]}},{"textwrap":false,"valign":"middle","border":{"bottom":["thin","#000"],"top":["thin","#000"],"left":["thin","#000"],"right":["thin","#000"]}},{"textwrap":false,"border":{"bottom":["thin","#000"],"top":["thin","#000"],"left":["thin","#000"],"right":["thin","#000"]}},{"textwrap":false,"valign":"middle","border":{"top":["thin","#000"],"left":["thin","#000"],"right":["thin","#000"]}},{"textwrap":false,"border":{"left":["thin","#000"],"right":["thin","#000"]}},{"textwrap":false,"border":{"bottom":["thin","#000"],"left":["thin","#000"],"right":["thin","#000"]}},{"border":{"bottom":["thin","#000"],"left":["thin","#000"],"right":["thin","#000"]}},{"border":{"bottom":["thin","#000"],"top":["thin","#000"],"left":["thin","#000"],"right":["thin","#000"]},"align":"left"},{},{"font":{"name":"Helvetica"}},{"border":{"bottom":["thin","#000"],"top":["thin","#000"],"left":["thin","#000"],"right":["thin","#000"]},"font":{"name":"Helvetica"}},{"align":"center","border":{"bottom":["thin","#000"],"top":["thin","#000"],"left":["thin","#000"],"right":["thin","#000"]},"font":{"name":"Helvetica"}},{"textwrap":true,"border":{"bottom":["thin","#000"],"top":["thin","#000"],"left":["thin","#000"],"right":["thin","#000"]},"font":{"name":"Helvetica"}},{"align":"center","font":{"name":"Helvetica"}},{"textwrap":false,"valign":"middle","border":{"top":["thin","#000"],"left":["thin","#000"],"right":["thin","#000"]},"font":{"name":"Helvetica"}},{"textwrap":false,"border":{"left":["thin","#000"],"right":["thin","#000"]},"font":{"name":"Helvetica"}},{"border":{"bottom":["thin","#000"],"left":["thin","#000"],"right":["thin","#000"]},"font":{"name":"Helvetica"}},{"font":{"name":"Arial"}},{"border":{"bottom":["thin","#000"],"top":["thin","#000"],"left":["thin","#000"],"right":["thin","#000"]},"font":{"name":"Arial"}},{"align":"center","border":{"bottom":["thin","#000"],"top":["thin","#000"],"left":["thin","#000"],"right":["thin","#000"]},"font":{"name":"Arial"}},{"textwrap":true,"border":{"bottom":["thin","#000"],"top":["thin","#000"],"left":["thin","#000"],"right":["thin","#000"]},"font":{"name":"Arial"}},{"align":"center","font":{"name":"Arial"}},{"textwrap":false,"valign":"middle","border":{"top":["thin","#000"],"left":["thin","#000"],"right":["thin","#000"]},"font":{"name":"Arial"}},{"textwrap":false,"border":{"left":["thin","#000"],"right":["thin","#000"]},"font":{"name":"Arial"}},{"border":{"bottom":["thin","#000"],"left":["thin","#000"],"right":["thin","#000"]},"font":{"name":"Arial"}},{"font":{"name":"Source Sans Pro"}},{"border":{"bottom":["thin","#000"],"top":["thin","#000"],"left":["thin","#000"],"right":["thin","#000"]},"font":{"name":"Source Sans Pro"}},{"align":"center","border":{"bottom":["thin","#000"],"top":["thin","#000"],"left":["thin","#000"],"right":["thin","#000"]},"font":{"name":"Source Sans Pro"}},{"textwrap":true,"border":{"bottom":["thin","#000"],"top":["thin","#000"],"left":["thin","#000"],"right":["thin","#000"]},"font":{"name":"Source Sans Pro"}},{"align":"center","font":{"name":"Source Sans Pro"}},{"textwrap":false,"valign":"middle","border":{"top":["thin","#000"],"left":["thin","#000"],"right":["thin","#000"]},"font":{"name":"Source Sans Pro"}},{"textwrap":false,"border":{"left":["thin","#000"],"right":["thin","#000"]},"font":{"name":"Source Sans Pro"}},{"border":{"bottom":["thin","#000"],"left":["thin","#000"],"right":["thin","#000"]},"font":{"name":"Source Sans Pro"}},{"font":{"name":"Courier New"}},{"border":{"bottom":["thin","#000"],"top":["thin","#000"],"left":["thin","#000"],"right":["thin","#000"]},"font":{"name":"Courier New"}},{"align":"center","border":{"bottom":["thin","#000"],"top":["thin","#000"],"left":["thin","#000"],"right":["thin","#000"]},"font":{"name":"Courier New"}},{"textwrap":true,"border":{"bottom":["thin","#000"],"top":["thin","#000"],"left":["thin","#000"],"right":["thin","#000"]},"font":{"name":"Courier New"}},{"align":"center","font":{"name":"Courier New"}},{"textwrap":false,"valign":"middle","border":{"top":["thin","#000"],"left":["thin","#000"],"right":["thin","#000"]},"font":{"name":"Courier New"}},{"textwrap":false,"border":{"left":["thin","#000"],"right":["thin","#000"]},"font":{"name":"Courier New"}},{"border":{"bottom":["thin","#000"],"left":["thin","#000"],"right":["thin","#000"]},"font":{"name":"Courier New"}},{"font":{"name":"Courier New"},"border":{"top":["thin","#000"],"left":["thin","#000"],"right":["thin","#000"]}},{"font":{"name":"Courier New"},"border":{"left":["thin","#000"],"right":["thin","#000"]}},{"textwrap":true,"border":{"top":["thin","#000"],"left":["thin","#000"],"right":["thin","#000"]},"font":{"name":"Courier New"}},{"textwrap":true,"border":{"top":["thin","#000"],"left":["thin","#000"],"right":["thin","#000"]},"font":{"name":"Courier New"},"align":"center"},{"font":{"name":"Courier New"},"border":{"left":["thin","#000"],"right":["thin","#000"]},"align":"center"},{"border":{"bottom":["thin","#000"],"left":["thin","#000"],"right":["thin","#000"]},"font":{"name":"Courier New"},"align":"center"},{"align":"center","font":{"name":"Courier New","size":14}},{"align":"center","font":{"size":14}},{"align":"center","font":{"name":"Courier New","size":14,"bold":true}},{"align":"center","font":{"size":14,"bold":true}},{"font":{"name":"Courier New"},"color":"#7f7f7f"},{"color":"#7f7f7f"},{"border":{"bottom":["thin","#000"],"top":["thin","#000"],"left":["thin","#000"],"right":["thin","#000"]},"font":{"name":"Courier New"},"color":"#000100"},{"align":"center","border":{"bottom":["thin","#000"],"top":["thin","#000"],"left":["thin","#000"],"right":["thin","#000"]},"font":{"name":"Courier New"},"color":"#000100"},{"textwrap":true,"border":{"top":["thin","#000"],"left":["thin","#000"],"right":["thin","#000"]},"font":{"name":"Courier New"},"align":"center","color":"#000100"},{"align":"center","font":{"name":"Courier New"},"color":"#000100"},{"font":{"name":"Courier New"},"color":"#000100"},{"font":{"name":"Courier New"},"border":{"left":["thin","#000"],"right":["thin","#000"]},"align":"center","color":"#000100"},{"textwrap":false,"valign":"middle","border":{"top":["thin","#000"],"left":["thin","#000"],"right":["thin","#000"]},"font":{"name":"Courier New"},"color":"#000100"},{"textwrap":false,"border":{"left":["thin","#000"],"right":["thin","#000"]},"font":{"name":"Courier New"},"color":"#000100"},{"border":{"bottom":["thin","#000"],"left":["thin","#000"],"right":["thin","#000"]},"font":{"name":"Courier New"},"align":"center","color":"#000100"},{"border":{"bottom":["thin","#000"],"left":["thin","#000"],"right":["thin","#000"]},"font":{"name":"Courier New"},"color":"#000100"},{"border":{"bottom":["thin","#000"],"top":["thin","#000"],"left":["thin","#000"],"right":["thin","#000"]},"color":"#000100"},{"align":"center","border":{"bottom":["thin","#000"],"top":["thin","#000"],"left":["thin","#000"],"right":["thin","#000"]},"color":"#000100"},{"align":"center","color":"#000100"},{"textwrap":true,"border":{"bottom":["thin","#000"],"top":["thin","#000"],"left":["thin","#000"],"right":["thin","#000"]},"color":"#000100"},{"color":"#000100"},{"border":{"bottom":["thin","#000"],"top":["thin","#000"],"left":["thin","#000"],"right":["thin","#000"]},"font":{"name":"Lato"},"color":"#000100"},{"align":"center","border":{"bottom":["thin","#000"],"top":["thin","#000"],"left":["thin","#000"],"right":["thin","#000"]},"font":{"name":"Lato"},"color":"#000100"},{"textwrap":true,"border":{"top":["thin","#000"],"left":["thin","#000"],"right":["thin","#000"]},"font":{"name":"Lato"},"align":"center","color":"#000100"},{"align":"center","font":{"name":"Lato"},"color":"#000100"},{"font":{"name":"Lato"},"color":"#000100"},{"font":{"name":"Lato"},"border":{"left":["thin","#000"],"right":["thin","#000"]},"align":"center","color":"#000100"},{"textwrap":false,"valign":"middle","border":{"top":["thin","#000"],"left":["thin","#000"],"right":["thin","#000"]},"font":{"name":"Lato"},"color":"#000100"},{"textwrap":false,"border":{"left":["thin","#000"],"right":["thin","#000"]},"font":{"name":"Lato"},"color":"#000100"},{"border":{"bottom":["thin","#000"],"left":["thin","#000"],"right":["thin","#000"]},"font":{"name":"Lato"},"align":"center","color":"#000100"},{"border":{"bottom":["thin","#000"],"left":["thin","#000"],"right":["thin","#000"]},"font":{"name":"Lato"},"color":"#000100"},{"textwrap":true,"border":{"bottom":["thin","#000"],"top":["thin","#000"],"left":["thin","#000"],"right":["thin","#000"]},"color":"#000100","font":{"name":"Lato"}},{"textwrap":true,"border":{"bottom":["thin","#000"],"top":["thin","#000"],"left":["thin","#000"],"right":["thin","#000"]},"color":"#000100","font":{"name":"Lato"},"valign":"middle"},{"textwrap":true,"border":{"bottom":["thin","#000"],"top":["thin","#000"],"left":["thin","#000"],"right":["thin","#000"]},"color":"#000100","font":{"name":"Lato"},"valign":"bottom"},{"textwrap":true,"border":{"bottom":["thin","#000"],"top":["thin","#000"],"left":["thin","#000"],"right":["thin","#000"]},"color":"#000100","font":{"name":"Lato"},"valign":"top"},{"align":"center","border":{"bottom":["thin","#000"],"top":["thin","#000"],"left":["thin","#000"],"right":["thin","#000"]},"font":{"name":"Lato"},"color":"#000100","valign":"top"},{"align":"center","font":{"name":"Lato"},"color":"#000100","valign":"top"},{"align":"center","border":{"bottom":["thin","#000"],"top":["thin","#000"],"left":["thin","#000"],"right":["thin","#000"]},"font":{"name":"Lato"},"color":"#000100","valign":"middle"},{"align":"center","font":{"name":"Lato"},"color":"#000100","valign":"middle"},{"align":"center","border":{"bottom":["thin","#000"],"top":["thin","#000"],"left":["thin","#000"],"right":["thin","#000"]},"font":{"name":"Lato"},"color":"#000100","valign":"bottom"},{"align":"center","font":{"name":"Lato"},"color":"#000100","valign":"bottom"},{"align":"center","border":{"bottom":["thin","#000"],"top":["thin","#000"],"left":["thin","#000"],"right":["thin","#000"]},"font":{"name":"Lato"},"color":"#000100","textwrap":true},{"align":"center","font":{"name":"Lato"},"color":"#000100","textwrap":true},{"align":"center","border":{"bottom":["thin","#000"],"top":["thin","#000"],"left":["thin","#000"],"right":["thin","#000"]},"font":{"name":"Lato"},"color":"#000100","textwrap":false},{"align":"center","font":{"name":"Lato"},"color":"#000100","textwrap":false},{"textwrap":false,"border":{"bottom":["thin","#000"],"top":["thin","#000"],"left":["thin","#000"],"right":["thin","#000"]},"color":"#000100","font":{"name":"Lato"}},{"align":"center","font":{"name":"宋体","size":14,"bold":true}},{"font":{"name":"宋体"},"color":"#7f7f7f"},{"font":{"name":"宋体"}},{"border":{"bottom":["thin","#000"],"top":["thin","#000"],"left":["thin","#000"],"right":["thin","#000"]},"font":{"name":"宋体"},"color":"#000100"},{"align":"center","border":{"bottom":["thin","#000"],"top":["thin","#000"],"left":["thin","#000"],"right":["thin","#000"]},"font":{"name":"宋体"},"color":"#000100"},{"textwrap":true,"border":{"top":["thin","#000"],"left":["thin","#000"],"right":["thin","#000"]},"font":{"name":"宋体"},"align":"center","color":"#000100"},{"align":"center","font":{"name":"宋体"},"color":"#000100"},{"font":{"name":"宋体"},"color":"#000100"},{"font":{"name":"宋体"},"border":{"left":["thin","#000"],"right":["thin","#000"]},"align":"center","color":"#000100"},{"textwrap":false,"valign":"middle","border":{"top":["thin","#000"],"left":["thin","#000"],"right":["thin","#000"]},"font":{"name":"宋体"},"color":"#000100"},{"textwrap":false,"border":{"left":["thin","#000"],"right":["thin","#000"]},"font":{"name":"宋体"},"color":"#000100"},{"border":{"bottom":["thin","#000"],"left":["thin","#000"],"right":["thin","#000"]},"font":{"name":"宋体"},"align":"center","color":"#000100"},{"border":{"bottom":["thin","#000"],"left":["thin","#000"],"right":["thin","#000"]},"font":{"name":"宋体"},"color":"#000100"},{"textwrap":true,"border":{"bottom":["thin","#000"],"top":["thin","#000"],"left":["thin","#000"],"right":["thin","#000"]},"color":"#000100","font":{"name":"宋体"},"valign":"top"},{"align":"center","border":{"bottom":["thin","#000"],"top":["thin","#000"],"left":["thin","#000"],"right":["thin","#000"]},"font":{"name":"宋体"},"color":"#000100","valign":"top"},{"align":"center","font":{"name":"宋体"},"color":"#000100","valign":"top"},{"textwrap":true,"border":{"bottom":["thin","#000"],"top":["thin","#000"],"left":["thin","#000"],"right":["thin","#000"]},"color":"#000100","font":{"name":"宋体"},"valign":"bottom"},{"align":"center","border":{"bottom":["thin","#000"],"top":["thin","#000"],"left":["thin","#000"],"right":["thin","#000"]},"font":{"name":"宋体"},"color":"#000100","textwrap":false},{"align":"center","font":{"name":"宋体"},"color":"#000100","textwrap":false},{"border":{"bottom":["thin","#262626"],"top":["thin","#262626"],"left":["thin","#262626"],"right":["thin","#262626"]},"font":{"name":"宋体"},"color":"#000100"},{"align":"center","border":{"bottom":["thin","#262626"],"top":["thin","#262626"],"left":["thin","#262626"],"right":["thin","#262626"]},"font":{"name":"宋体"},"color":"#000100"},{"textwrap":true,"border":{"bottom":["thin","#262626"],"top":["thin","#262626"],"left":["thin","#262626"],"right":["thin","#262626"]},"font":{"name":"宋体"},"align":"center","color":"#000100"},{"textwrap":false,"valign":"middle","border":{"bottom":["thin","#262626"],"top":["thin","#262626"],"left":["thin","#262626"],"right":["thin","#262626"]},"font":{"name":"宋体"},"color":"#000100"},{"textwrap":false,"border":{"bottom":["thin","#262626"],"top":["thin","#262626"],"left":["thin","#262626"],"right":["thin","#262626"]},"font":{"name":"宋体"},"color":"#000100"},{"textwrap":true,"border":{"bottom":["thin","#262626"],"top":["thin","#262626"],"left":["thin","#262626"],"right":["thin","#262626"]},"color":"#000100","font":{"name":"宋体"},"valign":"top"},{"align":"center","border":{"bottom":["thin","#262626"],"top":["thin","#262626"],"left":["thin","#262626"],"right":["thin","#262626"]},"font":{"name":"宋体"},"color":"#000100","valign":"top"},{"textwrap":true,"border":{"bottom":["thin","#262626"],"top":["thin","#262626"],"left":["thin","#262626"],"right":["thin","#262626"]},"color":"#000100","font":{"name":"宋体"},"valign":"bottom"},{"align":"center","border":{"bottom":["thin","#262626"],"top":["thin","#262626"],"left":["thin","#262626"],"right":["thin","#262626"]},"font":{"name":"宋体"},"color":"#000100","textwrap":false}],"validations":[],"cols":{"0":{"width":35},"1":{"width":195},"2":{"width":77},"3":{"width":168},"4":{"width":62},"6":{"width":70},"7":{"width":82},"len":26},"merges":["D9:F9","E5:F5","E6:F6","E7:F7","E8:F8","G5:H5","G6:H6","G7:H7","G8:H8","G9:H9","B10:H10","B11:H11","D12:H12","A13:H13","A3:C3","A2:H2","A5:A9"]}', '', 'https://static.jeecg.com/designreport/images/QQ截图20201207135257_1607320433681.png', 'jeecg', '2020-07-10 18:29:39', 'admin', '2021-02-03 14:01:12', 0, NULL, NULL, 1, 145, NULL, NULL, NULL, NULL, 0, NULL); -INSERT INTO "public"."jimu_report" VALUES ('961455b47c0b86dc961e90b5893bff05', '56780774', '阜阳检票数查询副本0774', '', NULL, '984302991393210368', '{"area":{"sri":8,"sci":6,"eri":8,"eci":6,"width":75,"height":25},"printElWidth":794,"excel_config_id":"53c82a76f837d5661dceec7d93afafec","printElHeight":1047,"rows":{"0":{"cells":{"0":{"style":58},"1":{"text":"","style":66},"2":{"style":66},"3":{"style":67,"merge":[0,3],"text":"阜阳火车站检票数"},"4":{"style":67},"5":{"style":67},"6":{"style":67},"7":{"style":66},"8":{"style":66},"9":{"style":58}},"height":63},"1":{"cells":{"0":{"style":58},"1":{"style":66},"2":{"style":66},"3":{"style":66},"4":{"style":66},"5":{"style":66},"6":{"style":66},"7":{"style":66},"8":{"style":66},"9":{"style":58}},"height":20},"2":{"cells":{"0":{"style":58},"1":{"text":"日期:","style":68},"2":{"text":"${gongsi.tdata}","style":69},"3":{"style":66},"4":{"style":66,"text":"制表人:"},"5":{"text":"${gongsi.gname}","style":66},"6":{"style":66},"7":{"text":"","merge":[0,1],"style":70},"8":{"style":70},"9":{"style":58}},"isDrag":true},"3":{"cells":{"0":{"style":58},"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},"5":{"style":72},"6":{"text":"核载座位数","merge":[1,0],"style":71},"7":{"merge":[1,0],"style":71,"text":"检票数"},"8":{"merge":[1,0],"style":71,"text":"实载率(%)"},"9":{"style":58}}},"4":{"cells":{"0":{"style":58},"1":{"style":72},"2":{"style":71},"3":{"style":72},"4":{"text":"从","style":71},"5":{"text":"到","style":71},"6":{"style":72},"7":{"style":71},"8":{"style":72},"9":{"style":58}},"height":25},"5":{"cells":{"0":{"style":58},"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}"},"9":{"style":58}},"height":33},"6":{"cells":{"1":{"text":"","style":11},"2":{"style":11},"3":{"style":11},"4":{"style":11},"5":{"style":11},"6":{"style":11},"7":{"style":11},"8":{"style":11}},"isDrag":true},"7":{"cells":{"1":{"style":11},"2":{"style":11,"text":""},"3":{"style":11},"4":{"style":11},"5":{"style":11},"6":{"style":11},"7":{"style":11},"8":{"style":11}}},"8":{"cells":{"1":{"style":11},"2":{"style":11},"3":{"style":11},"4":{"style":11},"5":{"style":11},"6":{"style":11},"7":{"style":11},"8":{"style":11}}},"9":{"cells":{"1":{"style":11},"2":{"style":11},"3":{"style":11},"4":{"style":11},"5":{"style":11},"6":{"style":11},"7":{"style":11},"8":{"style":11}}},"10":{"cells":{"1":{"style":11},"2":{"style":11},"3":{"style":11},"4":{"style":11},"5":{"style":11},"6":{"style":11},"7":{"style":11},"8":{"style":11}}},"11":{"cells":{"1":{"style":11},"2":{"style":11},"3":{"style":11},"4":{"style":11},"5":{"style":11},"6":{"style":11},"7":{"style":11},"8":{"style":11}}},"12":{"cells":{"1":{"style":11},"2":{"style":11},"3":{"style":11},"4":{"style":11},"5":{"style":11},"6":{"style":11},"7":{"style":11},"8":{"style":11}}},"13":{"cells":{"1":{"style":11},"2":{"style":11},"3":{"style":11},"4":{"style":11},"5":{"style":11},"6":{"style":11},"7":{"style":11},"8":{"style":11}}},"14":{"cells":{"1":{"style":11},"2":{"style":11},"3":{"style":11},"4":{"style":11},"5":{"style":11},"6":{"style":11},"7":{"style":11},"8":{"style":11}}},"len":96,"-1":{"cells":{"-1":{"text":"${gongsi.id}"}},"isDrag":true}},"dbexps":[],"toolPrintSizeObj":{"printType":"A4","widthPx":794,"heightPx":1047},"dicts":[],"freeze":"A1","dataRectWidth":737,"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","#000100"]}},{"border":{"bottom":["thin","#000100"],"left":["thin","#000100"]}},{"border":{"bottom":["thin","#000100"]}},{"border":{"bottom":["thin","#000100"],"right":["thin","#000100"]}},{"border":{"top":["thin","#7f7f7f"]}},{"align":"center","border":{"bottom":["thin","#000100"],"top":["thin","#000100"],"left":["thin","#000100"],"right":["thin","#000100"]}},{"border":{"bottom":["thin","#000100"],"top":["thin","#000100"],"left":["thin","#000100"],"right":["thin","#000100"]}},{"border":{"right":["thin","#7f7f7f"],"bottom":["thin","#7f7f7f"]}},{"border":{"bottom":["thin","#7f7f7f"]}},{"border":{"right":["thin","#7f7f7f"]}},{"align":"center","font":{"size":16}},{"align":"center","font":{"size":16,"bold":true}},{"font":{"bold":true}},{"font":{"bold":false}},{"align":"center","border":{"bottom":["thin","#000100"],"top":["thin","#000100"],"left":["thin","#000100"],"right":["thin","#000100"]},"font":{"bold":true}},{"align":"center","font":{"bold":true}},{"align":"right"},{"align":"center","font":{"size":14,"bold":true}},{"align":"center","border":{"bottom":["thin","#000100"],"top":["thin","#000100"],"left":["thin","#000100"],"right":["thin","#000100"]},"font":{"bold":true},"bgcolor":"#4371c6"},{"align":"center","font":{"bold":true},"bgcolor":"#4371c6"},{"align":"center","border":{"bottom":["thin","#000100"],"top":["thin","#000100"],"left":["thin","#000100"],"right":["thin","#000100"]},"font":{"bold":false},"bgcolor":"#4371c6"},{"align":"center","font":{"bold":false},"bgcolor":"#4371c6"},{"align":"center","border":{"bottom":["thin","#000100"],"top":["thin","#000100"],"left":["thin","#000100"],"right":["thin","#000100"]},"font":{"bold":false},"bgcolor":"#2e75b5"},{"align":"center","font":{"bold":false},"bgcolor":"#2e75b5"},{"align":"center","border":{"bottom":["thin","#000100"],"top":["thin","#000100"],"left":["thin","#000100"],"right":["thin","#000100"]},"font":{"bold":false},"bgcolor":"#5b9cd6"},{"align":"center","font":{"bold":false},"bgcolor":"#5b9cd6"},{"align":"center","border":{"bottom":["thin","#000100"],"top":["thin","#000100"],"left":["thin","#000100"],"right":["thin","#000100"]},"font":{"bold":false},"bgcolor":"#0170c1"},{"align":"center","font":{"bold":false},"bgcolor":"#0170c1"},{"font":{"bold":false},"color":"#7f7f7f"},{"align":"center","border":{"bottom":["thin","#000100"],"top":["thin","#000100"],"left":["thin","#000100"],"right":["thin","#000100"]},"font":{"bold":false},"bgcolor":"#9cc2e6"},{"align":"center","font":{"bold":false},"bgcolor":"#9cc2e6"},{"align":"center","border":{"bottom":["thin","#000100"],"top":["thin","#000100"],"left":["thin","#000100"],"right":["thin","#000100"]},"font":{"bold":false},"bgcolor":"#01b0f1"},{"align":"center","font":{"bold":false},"bgcolor":"#01b0f1"},{"align":"center","border":{"bottom":["thin","#5b9cd6"],"top":["thin","#5b9cd6"],"left":["thin","#5b9cd6"],"right":["thin","#5b9cd6"]},"font":{"bold":false},"bgcolor":"#5b9cd6"},{"align":"center","border":{"bottom":["thin","#5b9cd6"],"top":["thin","#5b9cd6"],"left":["thin","#5b9cd6"],"right":["thin","#5b9cd6"]}},{"align":"center","border":{"bottom":["thin","#5b9cd6"],"top":["thin","#5b9cd6"],"left":["thin","#5b9cd6"],"right":["thin","#5b9cd6"]},"font":{"bold":false},"bgcolor":"#9cc2e6"},{"align":"center","font":{"size":16,"bold":true},"valign":"bottom"},{"align":"center","font":{"size":22,"bold":true},"valign":"bottom"},{"align":"center","font":{"size":18,"bold":true},"valign":"bottom"},{"font":{"bold":false},"color":"#7f7f7f","align":"right"},{"color":"#7f7f7f"},{"font":{"name":"宋体"}},{"align":"center","font":{"size":18,"bold":true,"name":"宋体"},"valign":"bottom"},{"font":{"bold":false,"name":"宋体"},"color":"#7f7f7f","align":"right"},{"color":"#7f7f7f","font":{"name":"宋体"}},{"align":"right","font":{"name":"宋体"}},{"align":"center","border":{"bottom":["thin","#5b9cd6"],"top":["thin","#5b9cd6"],"left":["thin","#5b9cd6"],"right":["thin","#5b9cd6"]},"font":{"bold":false,"name":"宋体"},"bgcolor":"#9cc2e6"},{"align":"center","font":{"bold":false,"name":"宋体"},"bgcolor":"#9cc2e6"},{"align":"center","border":{"bottom":["thin","#5b9cd6"],"top":["thin","#5b9cd6"],"left":["thin","#5b9cd6"],"right":["thin","#5b9cd6"]},"font":{"name":"宋体"}},{"font":{"name":"Microsoft YaHei"}},{"align":"center","font":{"size":18,"bold":true,"name":"Microsoft YaHei"},"valign":"bottom"},{"font":{"bold":false,"name":"Microsoft YaHei"},"color":"#7f7f7f","align":"right"},{"color":"#7f7f7f","font":{"name":"Microsoft YaHei"}},{"align":"right","font":{"name":"Microsoft YaHei"}},{"align":"center","border":{"bottom":["thin","#5b9cd6"],"top":["thin","#5b9cd6"],"left":["thin","#5b9cd6"],"right":["thin","#5b9cd6"]},"font":{"bold":false,"name":"Microsoft YaHei"},"bgcolor":"#9cc2e6"},{"align":"center","font":{"bold":false,"name":"Microsoft YaHei"},"bgcolor":"#9cc2e6"},{"align":"center","border":{"bottom":["thin","#5b9cd6"],"top":["thin","#5b9cd6"],"left":["thin","#5b9cd6"],"right":["thin","#5b9cd6"]},"font":{"name":"Microsoft YaHei"}}],"validations":[],"cols":{"0":{"width":53},"1":{"width":118},"2":{"width":75},"3":{"width":54},"4":{"width":95},"5":{"width":109},"6":{"width":75},"7":{"width":75},"8":{"width":83},"9":{"width":30},"len":27},"merges":["E4:F4","B4:B5","C4:C5","D4:D5","G4:G5","H4:H5","I4:I5","D1:G1","H3:I3"]}', '', 'https://static.jeecg.com/designreport/images/25_1597233573577.png', 'admin', '2021-01-19 10:46:45', 'admin', '2021-02-03 13:58:22', 0, NULL, NULL, 0, 710, NULL, NULL, NULL, NULL, 0, NULL); -INSERT INTO "public"."jimu_report" VALUES ('975549294469992448', '20240723101422', '简单表达式混合运算', NULL, NULL, 'datainfo', '{"loopBlockList":[],"printConfig":{"paper":"A4","width":210,"height":297,"definition":1,"isBackend":false,"marginX":10,"marginY":10,"layout":"portrait","printCallBackUrl":""},"hidden":{"rows":[],"cols":[]},"dbexps":[],"dicts":[],"freeze":"A1","dataRectWidth":1097,"autofilter":{},"validations":[],"cols":{"0":{"width":81},"1":{"width":55},"2":{"width":144},"3":{"width":143},"4":{"width":112},"5":{"width":129},"7":{"width":333},"len":100},"area":false,"pyGroupEngine":false,"excel_config_id":"975549294469992448","hiddenCells":[],"zonedEditionList":[],"rows":{"0":{"cells":{"0":{"text":"1"},"1":{},"2":{"text":"SUM(A1,A2)"},"3":{"text":"=SUM(A1,A2)"},"4":{"text":"SUM(A1:A10)"},"5":{"text":"=SUM(A1:A10)"}}},"1":{"cells":{"0":{"text":"2"},"1":{},"2":{"text":"SUM(A1,A2)*2"},"3":{"text":"=SUM(A1,A2)*2"},"4":{"text":"SUM(A1:A10)*2"},"5":{"text":"=SUM(A1:A10)*2"},"6":{},"7":{"text":"=2+SUM(A1,A2)*2 "}}},"2":{"cells":{"0":{"text":"3"},"2":{"text":"SUM(A1,A2)/2"},"3":{"text":"=SUM(A1,A2)/2"},"4":{"text":"SUM(A1:A10)/2"},"5":{"text":"=SUM(A1:A10)/2"},"7":{"text":"=A1*A2"}}},"3":{"cells":{"0":{"text":"4"},"2":{"text":"SUM(A1,A2)+2"},"3":{"text":"=SUM(A1,A2)+2"},"4":{"text":"SUM(A1:A10)+2"},"5":{"text":"=SUM(A1:A10)+2"}}},"4":{"cells":{"0":{"text":"5"},"2":{"text":"SUM(A1,A2)-2"},"3":{"text":"=SUM(A1,A2)-2"},"4":{"text":"SUM(A1:A10)-2"},"5":{"text":"=SUM(A1:A10)-2"},"7":{}}},"5":{"cells":{"0":{"text":"6"}}},"6":{"cells":{"0":{"text":"7"},"2":{"text":"MAX(A1,A2)"},"3":{"text":"=MAX(A1,A2)"},"4":{"text":"MAX(A1:A10)"},"5":{"text":"=MAX(A1:A10)"}}},"7":{"cells":{"0":{"text":"8"},"2":{"text":"MAX(A1,A2)*2"},"3":{"text":"=MAX(A1,A2)*2"},"4":{"text":"MAX(A1:A10)*2"},"5":{"text":"=MAX(A1:A10)*2"}}},"8":{"cells":{"0":{"text":"9"},"2":{"text":"MAX(A1,A2)/2"},"3":{"text":"=MAX(A1,A2)/2"},"4":{"text":"MAX(A1:A10)/2"},"5":{"text":"=MAX(A1:A10)/2"}}},"9":{"cells":{"0":{"text":"10"},"2":{"text":"MAX(A1,A2)+2"},"3":{"text":"=MAX(A1,A2)+2"},"4":{"text":"MAX(A1:A10)+2"},"5":{"text":"=MAX(A1:A10)+2"}}},"10":{"cells":{"0":{},"2":{"text":"MAX(A1,A2)-2"},"3":{"text":"=MAX(A1,A2)-2"},"4":{"text":"MAX(A1:A10)-2"},"5":{"text":"=MAX(A1:A10)-2"}}},"11":{"cells":{"0":{}}},"12":{"cells":{"2":{"text":"MIN(A1,A2)"},"3":{"text":"=MIN(A1,A2)"},"4":{"text":"MIN(A1:A10)"},"5":{"text":"=MIN(A1:A10)"}}},"13":{"cells":{"2":{"text":"MIN(A1,A2)*2"},"3":{"text":"=MIN(A1,A2)*2"},"4":{"text":"MIN(A1:A10)*2"},"5":{"text":"=MIN(A1:A10)*2"}}},"14":{"cells":{"2":{"text":"MIN(A1,A2)/2"},"3":{"text":"=MIN(A1,A2)/2"},"4":{"text":"MIN(A1:A10)/2"},"5":{"text":"=MIN(A1:A10)/2"}}},"15":{"cells":{"2":{"text":"MIN(A1,A2)+2"},"3":{"text":"=MIN(A1,A2)+2"},"4":{"text":"MIN(A1:A10)+2"},"5":{"text":"=MIN(A1:A10)+2"}}},"16":{"cells":{"2":{"text":"MIN(A1,A2)-2"},"3":{"text":"=MIN(A1,A2)-2"},"4":{"text":"MIN(A1:A10)-2"},"5":{"text":"=MIN(A1:A10)-2"}}},"18":{"cells":{"2":{"text":"AVERAGE(A1,A2)"},"3":{"text":"=AVERAGE(A1,A2)"},"4":{"text":"AVERAGE(A1:A10)"},"5":{"text":"=AVERAGE(A1:A10)"}}},"19":{"cells":{"2":{"text":"AVERAGE(A1,A2)*2"},"3":{"text":"=AVERAGE(A1,A2)*2"},"4":{"text":"AVERAGE(A1:A10)*2"},"5":{"text":"=AVERAGE(A1:A10)*2"}}},"20":{"cells":{"2":{"text":"AVERAGE(A1,A2)/2"},"3":{"text":"=AVERAGE(A1,A2)/2"},"4":{"text":"AVERAGE(A1:A10)/2"},"5":{"text":"=AVERAGE(A1:A10)/2"}}},"21":{"cells":{"2":{"text":"AVERAGE(A1,A2)+2"},"3":{"text":"=AVERAGE(A1,A2)+2"},"4":{"text":"AVERAGE(A1:A10)+2"},"5":{"text":"=AVERAGE(A1:A10)+2"}}},"22":{"cells":{"2":{"text":"AVERAGE(A1,A2)-2"},"3":{"text":"=AVERAGE(A1,A2)-2"},"4":{"text":"AVERAGE(A1:A10)-2"},"5":{"text":"=AVERAGE(A1:A10)-2"}}},"24":{"cells":{"2":{"text":"COUNTNZ(A1,A2)"},"3":{"text":"=COUNTNZ(A1,A2)"},"4":{"text":"COUNTNZ(A1:A10)"},"5":{"text":"=COUNTNZ(A1:A10)"}}},"25":{"cells":{"2":{"text":"COUNTNZ(A1,A2)*2"},"3":{"text":"=COUNTNZ(A1,A2)*2"},"4":{"text":"COUNTNZ(A1:A10)*2"},"5":{"text":"=COUNTNZ(A1:A10)*2"}}},"26":{"cells":{"2":{"text":"COUNTNZ(A1,A2)/2"},"3":{"text":"=COUNTNZ(A1,A2)/2"},"4":{"text":"COUNTNZ(A1:A10)/2"},"5":{"text":"=COUNTNZ(A1:A10)/2"}}},"27":{"cells":{"2":{"text":"COUNTNZ(A1,A2)+2"},"3":{"text":"=COUNTNZ(A1,A2)+2"},"4":{"text":"COUNTNZ(A1:A10)+2"},"5":{"text":"=COUNTNZ(A1:A10)+2"}}},"28":{"cells":{"2":{"text":"COUNTNZ(A1,A2)-2"},"3":{"text":"=COUNTNZ(A1,A2)-2"},"4":{"text":"COUNTNZ(A1:A10)-2"},"5":{"text":"=COUNTNZ(A1:A10)-2"}}},"len":200},"rpbar":{"show":true,"pageSize":"","btnList":[]},"fixedPrintHeadRows":[],"fixedPrintTailRows":[],"displayConfig":{},"background":false,"name":"sheet1","styles":[],"freezeLineColor":"rgb(185, 185, 185)","merges":[]}', NULL, NULL, 'admin', '2024-07-23 10:14:22', 'admin', '2024-07-24 19:17:39', 0, NULL, NULL, 0, 75, NULL, NULL, NULL, NULL, 0, NULL); -INSERT INTO "public"."jimu_report" VALUES ('989065112487022592', '20240823093133__1750', '在线填报-员工信息登记', NULL, NULL, 'datainfo', '{"loopBlockList":[],"querySetting":{"izOpenQueryBar":false,"izDefaultQuery":true},"printConfig":{"paper":"A4","width":210,"height":297,"definition":1,"isBackend":false,"marginX":10,"marginY":10,"layout":"portrait","printCallBackUrl":""},"hidden":{"rows":[],"cols":[]},"dbexps":[],"dicts":[],"freeze":"A1","dataRectWidth":698,"autofilter":{},"validations":[],"cols":{"0":{"width":76},"1":{"width":114},"2":{"width":87},"3":{"width":99},"4":{"width":65},"5":{"width":126},"6":{"width":131},"len":100},"area":{"sri":10,"sci":9,"eri":10,"eci":9,"width":100,"height":121},"pyGroupEngine":false,"submitHandlers":[{"type":"api","code":"api","name":"api","isMain":true,"isEdit":true,"apiUrl":"https://bootapi.jeecg.com/jmreport/test/submit/handle"}],"excel_config_id":"989065112487022592","hiddenCells":[],"zonedEditionList":[],"rows":{"0":{"cells":{"0":{"merge":[1,6],"height":90,"text":"员工信息登记表","style":6}},"height":45},"1":{"cells":{},"height":45},"2":{"cells":{"0":{"text":"编号","style":7,"fillFormLabel":"*"},"1":{"fillForm":{"componentFlag":"input-text","component":"Input","field":"no","value":"","defaultValue":"","placeholder":"","required":false,"requiredTip":"不能为空~","pattern":"","patternErrorTip":""},"style":7,"text":" "},"2":{"text":"年龄","style":7},"3":{"fillForm":{"componentFlag":"InputNumber","component":"InputNumber","field":"age","placeholder":"","required":false,"requiredTip":"不能为空~","label":"","labelText":"","precision":0,"isLimitMinNum":false,"minNum":0,"isLimitMaxNum":false,"maxNum":100,"dbFieldBind":[{"dbTable":"test_form_submit","dbField":"age"}]},"style":7,"text":" "},"4":{"text":"填写时间","style":7},"5":{"fillForm":{"componentFlag":"DatePicker-time","component":"DatePicker","field":"create_time","placeholder":"","required":false,"requiredTip":"不能为空~","label":"","labelText":"","dateFormat":"yyyy-MM-dd HH:mm:ss","defaultValue":""},"style":7,"text":" "},"6":{"merge":[3,0],"height":180,"fillForm":{"componentFlag":"JUploadImage","component":"JUploadImage","field":"photo","value":"","defaultValue":"","placeholder":"","required":false,"requiredTip":"不能为空~","multiple":false,"maxUploadNum":1,"h_align":"center"},"style":7,"text":" "}},"height":45},"3":{"cells":{"0":{"text":"姓名","style":7,"fillFormLabel":"*"},"1":{"text":" ","fillForm":{"componentFlag":"input-text","component":"Input","field":"name","placeholder":"","required":true,"requiredTip":"不能为空~","dbFieldBind":[{"dbTable":"test_form_submit","dbField":"name"},{"dbTable":"test_form_submit1","dbField":"name"}],"label":"A5","labelText":"姓名","pattern":"","patternErrorTip":""}},"2":{"text":"性别","style":7},"3":{"fillForm":{"componentFlag":"JRadio","component":"JRadio","field":"sex","value":"","defaultValue":"","placeholder":"","required":false,"requiredTip":"不能为空~","dataSource":"dict","options":[{"label":"男","value":"1"},{"label":"女","value":"2"}],"apiUrl":"","dictCode":"sex1","dictName":"性别"},"style":8,"text":" "},"4":{"text":"出生日期","style":7},"5":{"fillForm":{"componentFlag":"DatePicker-date","component":"DatePicker","field":"brithday","value":"","defaultValue":"","placeholder":"","required":false,"requiredTip":"不能为空~","dateFormat":"yyyy-MM-dd","dateShowType":"date"},"style":7,"text":" "},"8":{}},"height":45},"4":{"cells":{"0":{"text":"民族","style":7,"fillFormLabel":"*"},"1":{"fillForm":{"componentFlag":"JSelect","component":"JSelect","field":"nation","value":"","defaultValue":"","placeholder":"","required":false,"requiredTip":"不能为空~","dataSource":"dict","options":[{"label":"选项1","value":"1"},{"label":"选项2","value":"2"},{"label":"选项3","value":"3"}],"apiUrl":"","dictCode":"minzu","dictName":"民族","multiple":""},"style":7,"text":" "},"2":{"text":"政治面貌","style":7},"3":{"fillForm":{"componentFlag":"JSelect","component":"JSelect","field":"politics","value":"","defaultValue":"","placeholder":"","required":false,"requiredTip":"不能为空~","dbFieldBind":[{"dbTable":"test_form_submit","dbField":"politics"}],"dataSource":"api","options":[{"label":"选项1","value":"1"},{"label":"选项2","value":"2"},{"label":"选项3","value":"3"}],"apiUrl":"https://bootapi.jeecg.com/jmreport/test/submit/dict/political","dictCode":"","dictName":"","multiple":""},"style":7,"text":" "},"4":{"text":"籍贯","style":7},"5":{"fillForm":{"componentFlag":"JAreaLinkage","component":"JAreaLinkage","field":"native_place","value":"","defaultValue":"","placeholder":"","required":false,"requiredTip":"不能为空~","dbFieldBind":[{"dbTable":"test_form_submit","dbField":"native_place"}],"areaType":"region"},"style":7,"text":" "}},"height":45},"5":{"cells":{"0":{"text":"身高(cm)","style":7},"1":{"fillForm":{"componentFlag":"InputNumber","component":"InputNumber","field":"height","value":"","defaultValue":"","placeholder":"","required":false,"requiredTip":"不能为空~","dbFieldBind":[{"dbTable":"test_form_submit","dbField":"height"}],"precision":2,"isLimitMinNum":false,"minNum":50,"isLimitMaxNum":false,"maxNum":200},"style":7,"text":" "},"2":{"text":"体重","style":7},"3":{"fillForm":{"componentFlag":"InputNumber","component":"InputNumber","field":"weight","value":"","defaultValue":"","placeholder":"","required":false,"requiredTip":"不能为空~","dbFieldBind":[{"dbTable":"test_form_submit","dbField":"weight"}],"precision":2,"isLimitMinNum":false,"minNum":30,"isLimitMaxNum":false,"maxNum":300},"style":7,"text":" "},"4":{"text":"健康状况","style":7},"5":{"fillForm":{"componentFlag":"JSelect","component":"JSelect","field":"health","value":"","defaultValue":"","placeholder":"","required":false,"requiredTip":"不能为空~","dataSource":"static","options":[{"label":"健康","value":"1"},{"label":"不健康","value":"2"}],"apiUrl":"","dictCode":"","dictName":"","multiple":""},"style":7,"text":" "}},"height":45},"6":{"cells":{"0":{"text":"身份证号","style":7},"1":{"merge":[0,2],"height":45,"fillForm":{"componentFlag":"input-text","component":"Input","field":"idcard","value":"","defaultValue":"","placeholder":"","required":false,"requiredTip":"不能为空~","pattern":"^\\d{17}[\\dX]$","patternErrorTip":"请输入身份证号","dbFieldBind":[{"dbTable":"test_form_submit","dbField":"id_card"}]},"style":7,"text":" "},"4":{"text":"学历","style":7},"5":{"fillForm":{"componentFlag":"JSelect","component":"JSelect","field":"people","value":"","defaultValue":"","placeholder":"","required":false,"requiredTip":"不能为空~","dataSource":"dict","options":[{"label":"选项1","value":"1"},{"label":"选项2","value":"2"},{"label":"选项3","value":"3"}],"apiUrl":"","dictCode":"xueli_sf","dictName":"学历","multiple":true},"style":7,"text":" ","merge":[0,1],"height":45}},"height":45},"7":{"cells":{"0":{"text":"联系地址","style":7},"1":{"fillForm":{"componentFlag":"input-text","component":"Input","field":"addr","value":"","defaultValue":"","placeholder":"","required":false,"requiredTip":"不能为空~","dbFieldBind":[{"dbTable":"test_form_submit","dbField":"address"}],"pattern":"","patternErrorTip":""},"merge":[0,2],"height":45,"style":7,"text":" "},"4":{"text":"手机号","style":7},"5":{"fillForm":{"componentFlag":"input-text","component":"Input","field":"phone","value":"","defaultValue":"","placeholder":"","required":false,"requiredTip":"不能为空~","dbFieldBind":[{"dbTable":"test_form_submit","dbField":"phone"}],"pattern":"","patternErrorTip":""},"style":7,"text":" ","merge":[0,1],"height":45}},"height":45},"8":{"cells":{"0":{"text":"毕业证书","style":7},"1":{"merge":[0,2],"height":45,"fillForm":{"componentFlag":"JUploadFile","component":"JUploadFile","field":"ca","value":"","defaultValue":"","placeholder":"","required":false,"requiredTip":"不能为空~","multiple":false,"maxUploadNum":1,"dbFieldBind":[{"dbTable":"test_form_submit","dbField":"ca"}]},"style":9,"text":" "},"4":{"text":"幸运色","style":7},"5":{"fillForm":{"componentFlag":"ColorPicker","component":"ColorPicker","field":"lucky_color","value":"","defaultValue":"","placeholder":"","required":false,"requiredTip":"不能为空~","alpha":false},"style":7,"text":" ","merge":[0,1],"height":45}},"height":45},"9":{"cells":{"0":{"text":"教育经历","merge":[0,6],"height":45,"style":8}},"height":45},"10":{"cells":{"0":{"merge":[0,6],"height":121,"fillForm":{"componentFlag":"input-textarea","component":"Input","field":"education","value":"","defaultValue":"","placeholder":"","required":false,"requiredTip":"不能为空~","dbFieldBind":[{"dbTable":"test_form_submit","dbField":"education"}],"pattern":"","patternErrorTip":""},"style":7,"text":" "}},"height":121},"11":{"cells":{"0":{"text":"工作经历","merge":[0,6],"height":45,"style":8}},"height":45},"12":{"cells":{"0":{"merge":[0,6],"height":150,"fillForm":{"componentFlag":"input-textarea","component":"Input","field":"work_exp","value":"","defaultValue":"","placeholder":"","required":false,"requiredTip":"不能为空~","dbFieldBind":[{"dbTable":"test_form_submit","dbField":"work_exp"}],"pattern":"","patternErrorTip":""},"style":7,"text":" "}},"height":150},"13":{"cells":{"0":{"text":"爱好","style":7},"1":{"merge":[0,5],"height":45,"fillForm":{"componentFlag":"JCheckbox","component":"JCheckbox","field":"fruity","value":"","defaultValue":"","placeholder":"","required":false,"requiredTip":"不能为空~","dbFieldBind":[{"dbTable":"test_form_submit","dbField":"fruity"}],"dataSource":"dict","options":[{"label":"选项1","value":"1"},{"label":"选项2","value":"2"},{"label":"选项3","value":"3"}],"apiUrl":"","dictCode":"aihao","dictName":"爱好"},"style":7,"text":" "}},"height":45},"14":{"cells":{"0":{"text":"所属部门","style":7},"1":{"fillForm":{"componentFlag":"JDepartment","component":"JDepartment","field":"dept","value":"","defaultValue":"","placeholder":"","required":false,"requiredTip":"不能为空~","dbFieldBind":[{"dbTable":"test_form_submit","dbField":"dept"}],"multiple":true,"apiUrl":"http://192.168.1.69:8086/jmreport/test/getDepartmentList"},"merge":[0,2],"height":45,"style":7,"text":" "},"4":{"text":"薪资","style":7},"5":{"fillForm":{"componentFlag":"JMoney","component":"JMoney","field":"pay","placeholder":"","required":false,"requiredTip":"不能为空~","label":"","labelText":"","precision":0,"addon":"prepend","moenyUnit":"¥"},"style":7,"text":" ","merge":[0,1],"height":45}},"height":45},"15":{"cells":{"0":{"text":"角色","style":7},"1":{"merge":[0,2],"height":45,"fillForm":{"componentFlag":"JRole","component":"JRole","field":"role","value":"","defaultValue":"","placeholder":"","required":false,"requiredTip":"不能为空~","multiple":false,"apiUrl":"https://bootapi.jeecg.com/jmreport/test/getRoleList","dbFieldBind":[{"dbTable":"test_form_submit","dbField":"role"}]},"style":7,"text":" "},"4":{"style":7,"text":"工位"},"5":{"style":7,"text":" ","merge":[0,1],"height":45,"fillForm":{"componentFlag":"JSelect","component":"JSelect","field":"station","placeholder":"","required":false,"requiredTip":"不能为空~","label":"","labelText":"","dataSource":"static","options":[{"label":"101","value":"1"},{"label":"102","value":"2"},{"label":"103","value":"3"},{"label":"104","value":"4"}],"apiUrl":"","dictCode":"","dictName":"","multiple":true}}},"height":45},"16":{"cells":{"0":{"text":"直属领导","style":7},"1":{"fillForm":{"componentFlag":"JUser","component":"JUser","field":"leader","value":"","defaultValue":"","placeholder":"","required":false,"requiredTip":"不能为空~","multiple":false,"apiUrl":"https://bootapi.jeecg.com/jmreport/test/getUserList","dbFieldBind":[{"dbTable":"test_form_submit","dbField":"leader"}]},"merge":[0,2],"height":45,"style":7,"text":" "},"4":{"style":7,"text":"是否启用"},"5":{"style":10,"text":" ","merge":[0,1],"height":45,"fillForm":{"componentFlag":"JSwitch","component":"JSwitch","field":"status","placeholder":"","required":false,"requiredTip":"不能为空~","dbFieldBind":[{"dbTable":"test_form_submit","dbField":"status"}],"label":"","labelText":"","switchOpen":"Y","switchClose":"N","h_align":"center"}},"6":{}},"height":45},"17":{"cells":{"0":{"style":7,"text":"负责部门"},"1":{"fillForm":{"componentFlag":"JSelectTree","component":"JSelectTree","field":"responsible","value":"","defaultValue":"","placeholder":"","required":false,"requiredTip":"不能为空~","multiple":true,"apiUrl":"https://bootapi.jeecg.com/jmreport/test/getDepartmentList"},"style":7,"text":" ","merge":[0,2],"height":45},"4":{"style":7,"text":"上班时间"},"5":{"style":7,"text":" ","merge":[0,1],"height":45,"fillForm":{"componentFlag":"TimePicker","component":"TimePicker","field":"key_1724408224853_326455","placeholder":"","required":false,"requiredTip":"不能为空~","label":"","labelText":"","isRangTime":false,"timeType":"time"}}},"height":45},"20":{"cells":{"6":{}}},"len":201},"rpbar":{"show":true,"pageSize":"","btnList":[]},"fixedPrintHeadRows":[],"fixedPrintTailRows":[],"displayConfig":{},"background":false,"name":"sheet1","styles":[{"align":"center"},{"align":"center","valign":"middle"},{"align":"center","valign":"middle","font":{"size":16}},{"font":{"size":16}},{"align":"center","valign":"middle","font":{"size":16,"bold":true}},{"font":{"size":16,"bold":true}},{"align":"center","valign":"middle","font":{"size":16,"bold":true},"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","border":{"bottom":["thin","#000"],"top":["thin","#000"],"left":["thin","#000"],"right":["thin","#000"]},"valign":"middle"},{"align":"right","border":{"bottom":["thin","#000"],"top":["thin","#000"],"left":["thin","#000"],"right":["thin","#000"]}}],"freezeLineColor":"rgb(185, 185, 185)","merges":["A1:G2","G3:G6","B7:D7","F7:G7","B8:D8","F8:G8","B9:D9","F9:G9","A10:G10","A11:G11","A12:G12","A13:G13","B14:G14","B15:D15","F15:G15","B16:D16","F16:G16","B17:D17","F17:G17","B18:D18","F18:G18"]}', NULL, NULL, 'admin', '2024-08-29 17:18:29', 'admin', '2024-08-30 10:24:03', 0, NULL, NULL, 1, 2, NULL, NULL, NULL, '1', 9, 1); -INSERT INTO "public"."jimu_report" VALUES ('9dbadaee8720767efe3164a7d018c870', '45566', '发票打印', '', NULL, '984302991393210368', '{"area":{"sri":8,"sci":4,"eri":8,"eci":4,"width":100,"height":25},"printElWidth":794,"excel_config_id":"9dbadaee8720767efe3164a7d018c870","printElHeight":500,"rows":{"0":{"cells":{"0":{"text":"","virtual":"RTA6TUIKs1pmgVOM"},"1":{"text":" ","virtual":"RTA6TUIKs1pmgVOM"},"2":{"text":" ","virtual":"RTA6TUIKs1pmgVOM"},"3":{"text":" ","virtual":"RTA6TUIKs1pmgVOM"},"4":{"text":" ","virtual":"RTA6TUIKs1pmgVOM"},"5":{"text":" ","virtual":"RTA6TUIKs1pmgVOM"},"6":{"text":" ","virtual":"RTA6TUIKs1pmgVOM"},"7":{"text":" ","virtual":"RTA6TUIKs1pmgVOM"},"8":{"text":" ","virtual":"RTA6TUIKs1pmgVOM"}}},"2":{"cells":{},"height":11},"3":{"cells":{"2":{"text":""},"5":{"text":""}},"height":18},"4":{"cells":{"2":{"text":"182123434","style":0},"5":{"text":"12345678"}},"height":15},"5":{"cells":{"2":{"text":""}}},"7":{"cells":{}},"8":{"cells":{"1":{"text":"餐饮"},"2":{"text":" A11"},"3":{"text":" 333 3"},"4":{"text":" 3 4"},"5":{"text":" 1"},"6":{"text":"3333"}}},"9":{"cells":{"1":{"text":"测试"},"2":{"text":" mmm"},"3":{"text":" 33 5"}}},"10":{"cells":{},"height":22},"11":{"cells":{"2":{"text":" "},"3":{"text":"343434"},"6":{"text":"3434"}},"height":45},"12":{"cells":{"4":{"text":" 刮开中奖"}},"height":12},"13":{"cells":{"2":{"text":""},"4":{"text":" "},"5":{"text":"备注"}},"height":31},"14":{"cells":{"1":{"text":" 张三"},"3":{"text":"完成"},"4":{"text":" 李思"}},"height":41},"len":100},"dbexps":[],"toolPrintSizeObj":{"printType":"A4","widthPx":794,"heightPx":1047},"dicts":[],"freeze":"A1","dataRectWidth":847,"background":false,"name":"sheet1","autofilter":{},"styles":[{"font":{"size":8}}],"validations":[],"cols":{"0":{"width":93},"1":{"width":74},"2":{"width":80},"len":26},"merges":[],"imgList":[{"row":0,"col":0,"width":"832","height":"480","src":"https://static.jeecg.com/designreport/images/套打_1609313052910.png","isBackend":true,"commonBackend":true,"layer_id":"RTA6TUIKs1pmgVOM","offsetX":0,"offsetY":0,"virtualCellRange":[[0,0],[0,1],[0,2],[0,3],[0,4],[0,5],[0,6],[0,7],[0,8]]}]}', '', 'https://static.jeecg.com/designreport/images/QQ截图20201207113651_1607312223499.png', 'jeecg', '2020-07-20 18:55:59', 'admin', '2021-02-03 13:38:49', 0, NULL, NULL, 0, 1126, NULL, NULL, NULL, NULL, 0, NULL); -INSERT INTO "public"."jimu_report" VALUES ('a250846887abe01217aab173d3006489', '56663', '不动产打印', '', NULL, '984302991393210368', '{"loopBlockList":[],"area":false,"excel_config_id":"a250846887abe01217aab173d3006489","printConfig":{"paper":"A4","width":210,"height":297,"definition":1,"isBackend":true,"marginX":10,"marginY":10},"rows":{"0":{"cells":{"0":{"text":" ","virtual":"BJ9o6oelCr85EpT2"},"1":{"text":" ","virtual":"BJ9o6oelCr85EpT2"},"2":{"text":" ","virtual":"BJ9o6oelCr85EpT2"},"3":{"text":" ","virtual":"BJ9o6oelCr85EpT2"},"4":{"text":" ","virtual":"BJ9o6oelCr85EpT2"},"5":{"text":" ","virtual":"BJ9o6oelCr85EpT2"},"6":{"text":" ","virtual":"BJ9o6oelCr85EpT2"},"7":{"text":" ","virtual":"BJ9o6oelCr85EpT2"},"8":{"text":" ","virtual":"BJ9o6oelCr85EpT2"},"9":{"text":" ","virtual":"BJ9o6oelCr85EpT2"}},"isDrag":true,"height":45},"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]},"5":{"text":"${budong.beizhu}","merge":[5,3]}},"isDrag":true,"height":39},"4":{"cells":{"1":{"text":" ${budong.zhuzhi}","style":39,"merge":[0,2]}},"isDrag":true,"height":33},"5":{"cells":{"1":{"text":" ${budong.danyuan}","style":0,"merge":[0,2]}},"isDrag":true,"height":53},"6":{"cells":{"1":{"text":" ${budong.type}","style":0,"merge":[0,2]}},"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]}},"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":35},"12":{"cells":{"1":{"text":"","style":0},"2":{"text":"${budong.chanquan}","style":0,"merge":[4,1]}},"isDrag":true},"13":{"cells":{}},"14":{"cells":{}},"15":{"cells":{}},"16":{"cells":{},"height":5},"17":{"cells":{"2":{"text":"","style":0}},"isDrag":true,"height":33},"18":{"cells":{"2":{"style":0,"text":""}}},"len":100,"-1":{"cells":{"0":{"text":"#{budong.zhuzhi}"},"-1":{"text":"#{budong.suoyou}"}},"isDrag":true}},"dbexps":[],"toolPrintSizeObj":{"printType":"A4","widthPx":794,"heightPx":1047},"dicts":[],"freeze":"A1","dataRectWidth":1024,"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":"bottom","font":{"bold":true,"size":8}},{"font":{"bold":true,"size":8},"valign":"bottom"},{"align":"center","valign":"bottom","font":{"bold":true,"size":8}},{"align":"left","valign":"middle","font":{"bold":true}},{"align":"left","valign":"middle"},{"font":{"italic":false,"bold":true},"valign":"bottom"},{"font":{"italic":false,"bold":true},"valign":"middle"},{"valign":"middle"},{"font":{"italic":true,"bold":true},"valign":"middle"},{"valign":"middle","font":{"italic":true}},{"valign":"middle","font":{"italic":false}},{"font":{"italic":false,"bold":false},"valign":"middle"},{"align":"center","valign":"middle","font":{"bold":true,"size":8}},{"font":{"bold":true,"size":8},"valign":"middle"},{"align":"left","valign":"middle","font":{"bold":true,"size":8}},{"align":"right","valign":"middle","font":{"bold":true,"size":8}},{"font":{"italic":false,"bold":true},"valign":"middle","align":"center"},{"font":{"italic":false,"bold":true},"valign":"middle","align":"left"},{"align":"right","valign":"bottom"},{"align":"right","valign":"bottom","font":{"bold":true,"size":8}},{"align":"center","valign":"middle"}],"validations":[],"cols":{"0":{"width":107},"1":{"width":54},"2":{"width":135},"3":{"width":180},"6":{"width":123},"8":{"width":25},"len":50},"merges":["B1:B2","B12:D12","B9:D9","B7:D7","B6:D6","B5:D5","B3:D3","B11:D11","B8:D8","B10:D10","C13:D17","C1:C2","B4:D4","F4:I9","D1:D2"],"imgList":[{"row":0,"col":0,"width":"950","height":"683","src":"https://jimureport.oss-cn-beijing.aliyuncs.com/designreport/images/38_1610456500965_1617247643815.jpg","isBackend":true,"commonBackend":true,"layer_id":"BJ9o6oelCr85EpT2","offsetX":0,"offsetY":0,"virtualCellRange":[[0,0],[0,1],[0,2],[0,3],[0,4],[0,5],[0,6],[0,7],[0,8],[0,9]]}]}', '', 'https://static.jeecg.com/designreport/images/24_1597233568822.png', 'jeecg', '2020-07-09 10:48:22', 'admin', '2021-04-01 03:27:28', 0, NULL, NULL, 1, 1416, NULL, NULL, NULL, NULL, 0, NULL); -INSERT INTO "public"."jimu_report" VALUES ('a9f068972508920cd4aab831814f0c04', '23445', '逮捕证', '', NULL, '984302991393210368', '{"loopBlockList":[],"area":false,"excel_config_id":"a9f068972508920cd4aab831814f0c04","printConfig":{"paper":"A4","width":210,"height":297,"definition":1,"isBackend":false,"marginX":10,"marginY":10},"rows":{"0":{"cells":{"2":{"text":"","merge":[0,9],"style":324},"12":{}},"isDrag":true,"height":55},"1":{"cells":{"1":{"style":410,"merge":[0,13],"text":"兰州市经济侦查大队"},"15":{"style":324,"text":" "}},"height":128},"2":{"cells":{"1":{"style":411,"merge":[0,13],"text":"逮捕令"},"15":{"style":324,"text":" "}},"height":41},"3":{"cells":{"1":{"style":412,"merge":[0,12],"text":"第123459663号"},"14":{"style":413,"text":" "}},"height":60},"4":{"cells":{"1":{"style":414,"text":" "},"2":{"text":" 根据《中华人民共和国刑事诉讼法》第七十八条之规定,","style":341,"merge":[0,11]},"14":{"style":413,"text":" "}},"height":43},"5":{"cells":{"1":{"style":414,"text":" "},"2":{"style":341,"text":"经","merge":[0,1]},"4":{"text":"${pdaibu.pname}","style":342,"merge":[0,9]},"14":{"style":413,"text":" "}},"isDrag":true,"height":47},"6":{"cells":{"1":{"style":414,"text":" "},"2":{"style":344,"text":" ","merge":[0,2]},"5":{"merge":[0,3],"text":"批准,兹由我局对涉嫌","style":338},"9":{"text":"${pdaibu.shiqing}","style":347,"merge":[0,4]},"14":{"style":413,"text":" "}},"isDrag":true,"height":49},"7":{"cells":{"1":{"style":414,"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]},"8":{"style":346,"text":"出生日期"},"9":{"text":"${pdaibu.cdata}","style":345,"merge":[0,4]},"14":{"style":413,"text":" "}},"isDrag":true,"height":51},"8":{"cells":{"1":{"style":414,"text":" "},"2":{"text":"${pdaibu.zhuzhi}","style":345,"merge":[0,7]},"10":{"style":341,"text":"执行逮捕,送兰州","merge":[0,3]},"14":{"style":413,"text":" "}},"isDrag":true,"height":51},"9":{"cells":{"1":{"style":414,"text":" "},"2":{"style":341,"merge":[0,6],"text":"市经济侦查大队羁押。"},"9":{"style":341,"text":" "},"10":{"style":341,"merge":[5,1],"text":" "},"14":{"style":413,"text":" "}},"height":57},"10":{"cells":{"1":{"style":414,"text":" "},"4":{"style":338,"virtual":"DId4FGTLnP3vfp4y","text":" "},"5":{"style":338,"virtual":"DId4FGTLnP3vfp4y","text":" "},"6":{"style":338,"virtual":"DId4FGTLnP3vfp4y","text":" "},"14":{"style":413,"text":" "}},"height":61},"11":{"cells":{"1":{"style":414,"text":" "},"6":{"style":376,"merge":[0,2],"text":" "},"14":{"style":413,"text":" "}},"height":83},"12":{"cells":{"1":{"style":414,"text":" "},"2":{"merge":[0,6],"style":338,"text":" "},"14":{"style":413,"text":" "}},"height":14},"13":{"cells":{"1":{"style":414,"text":" "},"2":{"style":351,"merge":[0,5],"text":" "},"8":{"style":380,"text":"公安局印"},"9":{"text":" ","virtual":"XefZfpEcdS3wI6Ae"},"10":{"text":" ","virtual":"XefZfpEcdS3wI6Ae"},"11":{"text":" ","virtual":"XefZfpEcdS3wI6Ae"},"14":{"style":413,"text":" "}},"height":89},"14":{"cells":{"1":{"style":414,"text":" "},"14":{"style":413,"text":" "}},"height":21},"15":{"cells":{"1":{"style":415,"text":" "},"2":{"style":416,"text":" "},"3":{"style":417,"text":" "},"4":{"style":417,"text":" "},"5":{"style":417,"text":" "},"6":{"text":"${pdaibu.gdata}","style":421,"merge":[0,6]},"13":{"style":417,"text":" "},"14":{"style":419,"text":" "}},"isDrag":true,"height":168},"len":88,"-1":{"cells":{"1":{"text":"#{daibu.fdata}"},"-1":{"text":"#{pdaibu.shiqing}"}},"isDrag":true}},"dbexps":[],"toolPrintSizeObj":{"printType":"A4","widthPx":718,"heightPx":1047},"dicts":[],"freeze":"A1","dataRectWidth":709,"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","#000"]},"font":{"size":16,"bold":false}},{"align":"left","font":{"size":16,"bold":false},"color":"#3f3f3f"},{"font":{"size":16,"bold":false},"color":"#3f3f3f"},{"align":"center","underline":false,"font":{"size":16,"bold":false},"color":"#3f3f3f"},{"align":"center","underline":false,"border":{"bottom":["thin","#000"]},"font":{"size":16,"bold":false},"color":"#3f3f3f"},{"font":{"bold":false},"color":"#3f3f3f"},{"align":"left","border":{"bottom":["thin","#000"]},"font":{"size":16,"bold":false},"color":"#3f3f3f"},{"font":{"size":12}},{"align":"left","font":{"size":12,"bold":false},"color":"#3f3f3f"},{"font":{"size":12,"bold":false},"color":"#3f3f3f"},{"align":"center","underline":false,"font":{"size":12,"bold":false},"color":"#3f3f3f"},{"align":"center","underline":false,"border":{"bottom":["thin","#000"]},"font":{"size":12,"bold":false},"color":"#3f3f3f"},{"align":"left","border":{"bottom":["thin","#000"]},"font":{"size":12,"bold":false},"color":"#3f3f3f"},{"align":"center","border":{"bottom":["thin","#000"]},"font":{"size":12,"bold":false},"color":"#3f3f3f"},{"font":{"size":12,"bold":false},"color":"#3f3f3f","align":"center"},{"font":{"size":12},"align":"center"},{"font":{"size":8}},{"font":{"size":10}},{"font":{"size":10,"bold":true}},{"font":{"size":10,"bold":true},"align":"center"},{"font":{"size":18,"bold":true},"align":"center"},{"align":"center","font":{"size":18}},{"font":{"size":16,"bold":true},"align":"center"},{"align":"center","font":{"size":16}},{"font":{"size":12},"valign":"bottom"},{"font":{"size":12},"valign":"middle"},{"font":{"size":12},"border":{"top":["thin","#000"],"left":["thin","#000"]}},{"font":{"size":12},"border":{"top":["thin","#000"]}},{"border":{"top":["thin","#000"]}},{"font":{"size":12},"border":{"top":["thin","#000"],"right":["thin","#000"]}},{"font":{"size":12},"border":{"left":["thin","#000"]}},{"font":{"size":12},"border":{"right":["thin","#000"]}},{"font":{"size":12},"valign":"middle","border":{"right":["thin","#000"]}},{"align":"left","font":{"size":12,"bold":false},"color":"#3f3f3f","border":{"left":["thin","#000"],"right":["thin","#000"]}},{"align":"left","font":{"size":12,"bold":false},"color":"#3f3f3f","border":{"left":["thin","#000"]}},{"align":"center","underline":false,"border":{"right":["thin","#000"]},"font":{"size":12,"bold":false},"color":"#3f3f3f"},{"align":"center","border":{"right":["thin","#000"]},"font":{"size":12,"bold":false},"color":"#3f3f3f"},{"align":"left","border":{"right":["thin","#000"]},"font":{"size":12,"bold":false},"color":"#3f3f3f"},{"border":{"bottom":["thin","#000"],"left":["thin","#000"]}},{"border":{"bottom":["thin","#000"]}},{"border":{"bottom":["thin","#000"],"right":["thin","#000"]}},{"font":{"size":12},"border":{"top":["thick","#000"],"left":["thick","#000"]}},{"font":{"size":12},"border":{"top":["thick","#000"]}},{"border":{"top":["thick","#000"]}},{"font":{"size":12},"border":{"top":["thick","#000"],"right":["thick","#000"]}},{"font":{"size":12},"border":{"left":["thick","#000"]}},{"font":{"size":12},"border":{"right":["thick","#000"]}},{"font":{"size":12},"valign":"middle","border":{"right":["thick","#000"]}},{"align":"left","font":{"size":12,"bold":false},"color":"#3f3f3f","border":{"left":["thick","#000"],"right":["thick","#000"]}},{"align":"left","font":{"size":12,"bold":false},"color":"#3f3f3f","border":{"left":["thick","#000"]}},{"align":"center","underline":false,"border":{"right":["thick","#000"]},"font":{"size":12,"bold":false},"color":"#3f3f3f"},{"align":"center","border":{"right":["thick","#000"]},"font":{"size":12,"bold":false},"color":"#3f3f3f"},{"align":"left","border":{"right":["thick","#000"]},"font":{"size":12,"bold":false},"color":"#3f3f3f"},{"border":{"bottom":["thick","#000"],"left":["thick","#000"]}},{"border":{"bottom":["thick","#000"]}},{"border":{"bottom":["thick","#000"],"right":["thick","#000"]}},{"align":"center","font":{"size":12,"bold":false},"color":"#3f3f3f","border":{"left":["thick","#000"]}},{"border":{"left":["thin","#000"]}},{"border":{"left":["dashed","#000"]}},{"border":{"left":["thick","#000"]}},{"border":{"right":["thick","#000"]}},{"align":"left","border":{"bottom":["thick","#000"]},"font":{"size":12,"bold":false},"color":"#3f3f3f"},{"font":{"size":12},"border":{"left":["thick","#000"]},"align":"center"},{"font":{"size":12,"bold":true},"border":{"left":["thick","#000"]},"align":"center"},{"align":"center","font":{"bold":true}},{"font":{"size":14,"bold":true},"border":{"left":["thick","#000"]},"align":"center"},{"align":"center","font":{"bold":true,"size":14}},{"font":{"size":12,"name":"Arial"},"border":{"top":["thick","#000"],"left":["thick","#000"]}},{"font":{"size":12,"name":"Arial"},"border":{"top":["thick","#000"]}},{"border":{"top":["thick","#000"]},"font":{"name":"Arial"}},{"font":{"size":12,"name":"Arial"},"border":{"top":["thick","#000"],"right":["thick","#000"]}},{"font":{"size":12,"name":"Arial"},"border":{"left":["thick","#000"]},"align":"center"},{"align":"center","font":{"name":"Arial"}},{"font":{"size":14,"bold":true,"name":"Arial"},"border":{"left":["thick","#000"]},"align":"center"},{"align":"center","font":{"bold":true,"size":14,"name":"Arial"}},{"font":{"size":12,"name":"Arial"},"border":{"left":["thick","#000"]}},{"font":{"size":12,"name":"Arial"}},{"font":{"name":"Arial"}},{"font":{"size":12,"name":"Arial"},"valign":"middle","border":{"right":["thick","#000"]}},{"align":"left","font":{"size":12,"bold":false,"name":"Arial"},"color":"#3f3f3f","border":{"left":["thick","#000"],"right":["thick","#000"]}},{"font":{"size":12,"bold":false,"name":"Arial"},"color":"#3f3f3f"},{"align":"left","font":{"size":12,"bold":false,"name":"Arial"},"color":"#3f3f3f","border":{"left":["thick","#000"]}},{"align":"center","underline":false,"border":{"bottom":["thin","#000"]},"font":{"size":12,"bold":false,"name":"Arial"},"color":"#3f3f3f"},{"align":"left","border":{"bottom":["thin","#000"]},"font":{"size":12,"bold":false,"name":"Arial"},"color":"#3f3f3f"},{"align":"center","border":{"bottom":["thin","#000"]},"font":{"size":12,"bold":false,"name":"Arial"},"color":"#3f3f3f"},{"font":{"size":12,"bold":false,"name":"Arial"},"color":"#3f3f3f","align":"center"},{"align":"center","font":{"size":12,"bold":false,"name":"Arial"},"color":"#3f3f3f","border":{"left":["thick","#000"]}},{"align":"left","border":{"right":["thick","#000"]},"font":{"size":12,"bold":false,"name":"Arial"},"color":"#3f3f3f"},{"align":"left","font":{"size":12,"bold":false,"name":"Arial"},"color":"#3f3f3f"},{"font":{"size":12,"name":"Arial"},"border":{"right":["thick","#000"]}},{"border":{"bottom":["thick","#000"],"left":["thick","#000"]},"font":{"name":"Arial"}},{"border":{"bottom":["thick","#000"]},"font":{"name":"Arial"}},{"border":{"bottom":["thick","#000"],"right":["thick","#000"]},"font":{"name":"Arial"}},{"font":{"size":12,"name":"Source Sans Pro"},"border":{"top":["thick","#000"],"left":["thick","#000"]}},{"font":{"size":12,"name":"Source Sans Pro"},"border":{"top":["thick","#000"]}},{"border":{"top":["thick","#000"]},"font":{"name":"Source Sans Pro"}},{"font":{"size":12,"name":"Source Sans Pro"},"border":{"top":["thick","#000"],"right":["thick","#000"]}},{"font":{"size":12,"name":"Source Sans Pro"},"border":{"left":["thick","#000"]},"align":"center"},{"align":"center","font":{"name":"Source Sans Pro"}},{"font":{"size":14,"bold":true,"name":"Source Sans Pro"},"border":{"left":["thick","#000"]},"align":"center"},{"align":"center","font":{"bold":true,"size":14,"name":"Source Sans Pro"}},{"font":{"size":12,"name":"Source Sans Pro"},"border":{"left":["thick","#000"]}},{"font":{"size":12,"name":"Source Sans Pro"}},{"font":{"name":"Source Sans Pro"}},{"font":{"size":12,"name":"Source Sans Pro"},"valign":"middle","border":{"right":["thick","#000"]}},{"align":"left","font":{"size":12,"bold":false,"name":"Source Sans Pro"},"color":"#3f3f3f","border":{"left":["thick","#000"],"right":["thick","#000"]}},{"font":{"size":12,"bold":false,"name":"Source Sans Pro"},"color":"#3f3f3f"},{"align":"left","font":{"size":12,"bold":false,"name":"Source Sans Pro"},"color":"#3f3f3f","border":{"left":["thick","#000"]}},{"align":"center","underline":false,"border":{"bottom":["thin","#000"]},"font":{"size":12,"bold":false,"name":"Source Sans Pro"},"color":"#3f3f3f"},{"align":"left","border":{"bottom":["thin","#000"]},"font":{"size":12,"bold":false,"name":"Source Sans Pro"},"color":"#3f3f3f"},{"align":"center","border":{"bottom":["thin","#000"]},"font":{"size":12,"bold":false,"name":"Source Sans Pro"},"color":"#3f3f3f"},{"font":{"size":12,"bold":false,"name":"Source Sans Pro"},"color":"#3f3f3f","align":"center"},{"align":"center","font":{"size":12,"bold":false,"name":"Source Sans Pro"},"color":"#3f3f3f","border":{"left":["thick","#000"]}},{"align":"left","border":{"right":["thick","#000"]},"font":{"size":12,"bold":false,"name":"Source Sans Pro"},"color":"#3f3f3f"},{"align":"left","font":{"size":12,"bold":false,"name":"Source Sans Pro"},"color":"#3f3f3f"},{"font":{"size":12,"name":"Source Sans Pro"},"border":{"right":["thick","#000"]}},{"border":{"bottom":["thick","#000"],"left":["thick","#000"]},"font":{"name":"Source Sans Pro"}},{"border":{"bottom":["thick","#000"]},"font":{"name":"Source Sans Pro"}},{"border":{"bottom":["thick","#000"],"right":["thick","#000"]},"font":{"name":"Source Sans Pro"}},{"font":{"size":12,"name":"Comic Sans MS"},"border":{"top":["thick","#000"],"left":["thick","#000"]}},{"font":{"size":12,"name":"Comic Sans MS"},"border":{"top":["thick","#000"]}},{"border":{"top":["thick","#000"]},"font":{"name":"Comic Sans MS"}},{"font":{"size":12,"name":"Comic Sans MS"},"border":{"top":["thick","#000"],"right":["thick","#000"]}},{"font":{"size":12,"name":"Comic Sans MS"},"border":{"left":["thick","#000"]},"align":"center"},{"align":"center","font":{"name":"Comic Sans MS"}},{"font":{"size":14,"bold":true,"name":"Comic Sans MS"},"border":{"left":["thick","#000"]},"align":"center"},{"align":"center","font":{"bold":true,"size":14,"name":"Comic Sans MS"}},{"font":{"size":12,"name":"Comic Sans MS"},"border":{"left":["thick","#000"]}},{"font":{"size":12,"name":"Comic Sans MS"}},{"font":{"name":"Comic Sans MS"}},{"font":{"size":12,"name":"Comic Sans MS"},"valign":"middle","border":{"right":["thick","#000"]}},{"align":"left","font":{"size":12,"bold":false,"name":"Comic Sans MS"},"color":"#3f3f3f","border":{"left":["thick","#000"],"right":["thick","#000"]}},{"font":{"size":12,"bold":false,"name":"Comic Sans MS"},"color":"#3f3f3f"},{"align":"left","font":{"size":12,"bold":false,"name":"Comic Sans MS"},"color":"#3f3f3f","border":{"left":["thick","#000"]}},{"align":"center","underline":false,"border":{"bottom":["thin","#000"]},"font":{"size":12,"bold":false,"name":"Comic Sans MS"},"color":"#3f3f3f"},{"align":"left","border":{"bottom":["thin","#000"]},"font":{"size":12,"bold":false,"name":"Comic Sans MS"},"color":"#3f3f3f"},{"align":"center","border":{"bottom":["thin","#000"]},"font":{"size":12,"bold":false,"name":"Comic Sans MS"},"color":"#3f3f3f"},{"font":{"size":12,"bold":false,"name":"Comic Sans MS"},"color":"#3f3f3f","align":"center"},{"align":"center","font":{"size":12,"bold":false,"name":"Comic Sans MS"},"color":"#3f3f3f","border":{"left":["thick","#000"]}},{"align":"left","border":{"right":["thick","#000"]},"font":{"size":12,"bold":false,"name":"Comic Sans MS"},"color":"#3f3f3f"},{"align":"left","font":{"size":12,"bold":false,"name":"Comic Sans MS"},"color":"#3f3f3f"},{"font":{"size":12,"name":"Comic Sans MS"},"border":{"right":["thick","#000"]}},{"border":{"bottom":["thick","#000"],"left":["thick","#000"]},"font":{"name":"Comic Sans MS"}},{"border":{"bottom":["thick","#000"]},"font":{"name":"Comic Sans MS"}},{"border":{"bottom":["thick","#000"],"right":["thick","#000"]},"font":{"name":"Comic Sans MS"}},{"font":{"size":12,"name":"Courier New"},"border":{"top":["thick","#000"],"left":["thick","#000"]}},{"font":{"size":12,"name":"Courier New"},"border":{"top":["thick","#000"]}},{"border":{"top":["thick","#000"]},"font":{"name":"Courier New"}},{"font":{"size":12,"name":"Courier New"},"border":{"top":["thick","#000"],"right":["thick","#000"]}},{"font":{"size":12,"name":"Courier New"},"border":{"left":["thick","#000"]},"align":"center"},{"align":"center","font":{"name":"Courier New"}},{"font":{"size":14,"bold":true,"name":"Courier New"},"border":{"left":["thick","#000"]},"align":"center"},{"align":"center","font":{"bold":true,"size":14,"name":"Courier New"}},{"font":{"size":12,"name":"Courier New"},"border":{"left":["thick","#000"]}},{"font":{"size":12,"name":"Courier New"}},{"font":{"name":"Courier New"}},{"font":{"size":12,"name":"Courier New"},"valign":"middle","border":{"right":["thick","#000"]}},{"align":"left","font":{"size":12,"bold":false,"name":"Courier New"},"color":"#3f3f3f","border":{"left":["thick","#000"],"right":["thick","#000"]}},{"font":{"size":12,"bold":false,"name":"Courier New"},"color":"#3f3f3f"},{"align":"left","font":{"size":12,"bold":false,"name":"Courier New"},"color":"#3f3f3f","border":{"left":["thick","#000"]}},{"align":"center","underline":false,"border":{"bottom":["thin","#000"]},"font":{"size":12,"bold":false,"name":"Courier New"},"color":"#3f3f3f"},{"align":"left","border":{"bottom":["thin","#000"]},"font":{"size":12,"bold":false,"name":"Courier New"},"color":"#3f3f3f"},{"align":"center","border":{"bottom":["thin","#000"]},"font":{"size":12,"bold":false,"name":"Courier New"},"color":"#3f3f3f"},{"font":{"size":12,"bold":false,"name":"Courier New"},"color":"#3f3f3f","align":"center"},{"align":"center","font":{"size":12,"bold":false,"name":"Courier New"},"color":"#3f3f3f","border":{"left":["thick","#000"]}},{"align":"left","border":{"right":["thick","#000"]},"font":{"size":12,"bold":false,"name":"Courier New"},"color":"#3f3f3f"},{"align":"left","font":{"size":12,"bold":false,"name":"Courier New"},"color":"#3f3f3f"},{"font":{"size":12,"name":"Courier New"},"border":{"right":["thick","#000"]}},{"border":{"bottom":["thick","#000"],"left":["thick","#000"]},"font":{"name":"Courier New"}},{"border":{"bottom":["thick","#000"]},"font":{"name":"Courier New"}},{"border":{"bottom":["thick","#000"],"right":["thick","#000"]},"font":{"name":"Courier New"}},{"font":{"size":12,"name":"Courier New"},"border":{"top":["thick","#000"],"left":["thick","#000"]},"color":"#000100"},{"font":{"size":12,"name":"Courier New"},"border":{"top":["thick","#000"]},"color":"#000100"},{"border":{"top":["thick","#000"]},"font":{"name":"Courier New"},"color":"#000100"},{"font":{"size":12,"name":"Courier New"},"border":{"top":["thick","#000"],"right":["thick","#000"]},"color":"#000100"},{"font":{"size":12,"name":"Courier New"},"border":{"left":["thick","#000"]},"align":"center","color":"#000100"},{"align":"center","font":{"name":"Courier New"},"color":"#000100"},{"font":{"size":14,"bold":true,"name":"Courier New"},"border":{"left":["thick","#000"]},"align":"center","color":"#000100"},{"align":"center","font":{"bold":true,"size":14,"name":"Courier New"},"color":"#000100"},{"font":{"size":12,"name":"Courier New"},"border":{"left":["thick","#000"]},"color":"#000100"},{"font":{"size":12,"name":"Courier New"},"color":"#000100"},{"font":{"name":"Courier New"},"color":"#000100"},{"font":{"size":12,"name":"Courier New"},"valign":"middle","border":{"right":["thick","#000"]},"color":"#000100"},{"align":"left","font":{"size":12,"bold":false,"name":"Courier New"},"color":"#000100","border":{"left":["thick","#000"],"right":["thick","#000"]}},{"font":{"size":12,"bold":false,"name":"Courier New"},"color":"#000100"},{"align":"left","font":{"size":12,"bold":false,"name":"Courier New"},"color":"#000100","border":{"left":["thick","#000"]}},{"align":"center","underline":false,"border":{"bottom":["thin","#000"]},"font":{"size":12,"bold":false,"name":"Courier New"},"color":"#000100"},{"align":"left","border":{"bottom":["thin","#000"]},"font":{"size":12,"bold":false,"name":"Courier New"},"color":"#000100"},{"align":"center","border":{"bottom":["thin","#000"]},"font":{"size":12,"bold":false,"name":"Courier New"},"color":"#000100"},{"font":{"size":12,"bold":false,"name":"Courier New"},"color":"#000100","align":"center"},{"align":"center","font":{"size":12,"bold":false,"name":"Courier New"},"color":"#000100","border":{"left":["thick","#000"]}},{"align":"left","border":{"right":["thick","#000"]},"font":{"size":12,"bold":false,"name":"Courier New"},"color":"#000100"},{"align":"left","font":{"size":12,"bold":false,"name":"Courier New"},"color":"#000100"},{"font":{"size":12,"name":"Courier New"},"border":{"right":["thick","#000"]},"color":"#000100"},{"border":{"bottom":["thick","#000"],"left":["thick","#000"]},"font":{"name":"Courier New"},"color":"#000100"},{"border":{"bottom":["thick","#000"]},"font":{"name":"Courier New"},"color":"#000100"},{"border":{"bottom":["thick","#000"],"right":["thick","#000"]},"font":{"name":"Courier New"},"color":"#000100"},{"font":{"size":12,"name":"Arial"},"border":{"top":["thick","#000"],"left":["thick","#000"]},"color":"#000100"},{"font":{"size":12,"name":"Arial"},"border":{"top":["thick","#000"]},"color":"#000100"},{"border":{"top":["thick","#000"]},"font":{"name":"Arial"},"color":"#000100"},{"font":{"size":12,"name":"Arial"},"border":{"top":["thick","#000"],"right":["thick","#000"]},"color":"#000100"},{"font":{"size":12,"name":"Arial"},"border":{"left":["thick","#000"]},"align":"center","color":"#000100"},{"align":"center","font":{"name":"Arial"},"color":"#000100"},{"font":{"size":14,"bold":true,"name":"Arial"},"border":{"left":["thick","#000"]},"align":"center","color":"#000100"},{"align":"center","font":{"bold":true,"size":14,"name":"Arial"},"color":"#000100"},{"font":{"size":12,"name":"Arial"},"border":{"left":["thick","#000"]},"color":"#000100"},{"font":{"size":12,"name":"Arial"},"color":"#000100"},{"font":{"name":"Arial"},"color":"#000100"},{"font":{"size":12,"name":"Arial"},"valign":"middle","border":{"right":["thick","#000"]},"color":"#000100"},{"align":"left","font":{"size":12,"bold":false,"name":"Arial"},"color":"#000100","border":{"left":["thick","#000"],"right":["thick","#000"]}},{"font":{"size":12,"bold":false,"name":"Arial"},"color":"#000100"},{"align":"left","font":{"size":12,"bold":false,"name":"Arial"},"color":"#000100","border":{"left":["thick","#000"]}},{"align":"center","underline":false,"border":{"bottom":["thin","#000"]},"font":{"size":12,"bold":false,"name":"Arial"},"color":"#000100"},{"align":"left","border":{"bottom":["thin","#000"]},"font":{"size":12,"bold":false,"name":"Arial"},"color":"#000100"},{"align":"center","border":{"bottom":["thin","#000"]},"font":{"size":12,"bold":false,"name":"Arial"},"color":"#000100"},{"font":{"size":12,"bold":false,"name":"Arial"},"color":"#000100","align":"center"},{"align":"center","font":{"size":12,"bold":false,"name":"Arial"},"color":"#000100","border":{"left":["thick","#000"]}},{"align":"left","border":{"right":["thick","#000"]},"font":{"size":12,"bold":false,"name":"Arial"},"color":"#000100"},{"align":"left","font":{"size":12,"bold":false,"name":"Arial"},"color":"#000100"},{"font":{"size":12,"name":"Arial"},"border":{"right":["thick","#000"]},"color":"#000100"},{"border":{"bottom":["thick","#000"],"left":["thick","#000"]},"font":{"name":"Arial"},"color":"#000100"},{"border":{"bottom":["thick","#000"]},"font":{"name":"Arial"},"color":"#000100"},{"border":{"bottom":["thick","#000"],"right":["thick","#000"]},"font":{"name":"Arial"},"color":"#000100"},{"font":{"size":12,"name":"Helvetica"},"border":{"top":["thick","#000"],"left":["thick","#000"]},"color":"#000100"},{"font":{"size":12,"name":"Helvetica"},"border":{"top":["thick","#000"]},"color":"#000100"},{"border":{"top":["thick","#000"]},"font":{"name":"Helvetica"},"color":"#000100"},{"font":{"size":12,"name":"Helvetica"},"border":{"top":["thick","#000"],"right":["thick","#000"]},"color":"#000100"},{"font":{"size":12,"name":"Helvetica"},"border":{"left":["thick","#000"]},"align":"center","color":"#000100"},{"align":"center","font":{"name":"Helvetica"},"color":"#000100"},{"font":{"size":14,"bold":true,"name":"Helvetica"},"border":{"left":["thick","#000"]},"align":"center","color":"#000100"},{"align":"center","font":{"bold":true,"size":14,"name":"Helvetica"},"color":"#000100"},{"font":{"size":12,"name":"Helvetica"},"border":{"left":["thick","#000"]},"color":"#000100"},{"font":{"size":12,"name":"Helvetica"},"color":"#000100"},{"font":{"name":"Helvetica"},"color":"#000100"},{"font":{"size":12,"name":"Helvetica"},"valign":"middle","border":{"right":["thick","#000"]},"color":"#000100"},{"align":"left","font":{"size":12,"bold":false,"name":"Helvetica"},"color":"#000100","border":{"left":["thick","#000"],"right":["thick","#000"]}},{"font":{"size":12,"bold":false,"name":"Helvetica"},"color":"#000100"},{"align":"left","font":{"size":12,"bold":false,"name":"Helvetica"},"color":"#000100","border":{"left":["thick","#000"]}},{"align":"center","underline":false,"border":{"bottom":["thin","#000"]},"font":{"size":12,"bold":false,"name":"Helvetica"},"color":"#000100"},{"align":"left","border":{"bottom":["thin","#000"]},"font":{"size":12,"bold":false,"name":"Helvetica"},"color":"#000100"},{"align":"center","border":{"bottom":["thin","#000"]},"font":{"size":12,"bold":false,"name":"Helvetica"},"color":"#000100"},{"font":{"size":12,"bold":false,"name":"Helvetica"},"color":"#000100","align":"center"},{"align":"center","font":{"size":12,"bold":false,"name":"Helvetica"},"color":"#000100","border":{"left":["thick","#000"]}},{"align":"left","border":{"right":["thick","#000"]},"font":{"size":12,"bold":false,"name":"Helvetica"},"color":"#000100"},{"align":"left","font":{"size":12,"bold":false,"name":"Helvetica"},"color":"#000100"},{"font":{"size":12,"name":"Helvetica"},"border":{"right":["thick","#000"]},"color":"#000100"},{"border":{"bottom":["thick","#000"],"left":["thick","#000"]},"font":{"name":"Helvetica"},"color":"#000100"},{"border":{"bottom":["thick","#000"]},"font":{"name":"Helvetica"},"color":"#000100"},{"border":{"bottom":["thick","#000"],"right":["thick","#000"]},"font":{"name":"Helvetica"},"color":"#000100"},{"font":{"size":12,"name":"Lato"},"border":{"top":["thick","#000"],"left":["thick","#000"]},"color":"#000100"},{"font":{"size":12,"name":"Lato"},"border":{"top":["thick","#000"]},"color":"#000100"},{"border":{"top":["thick","#000"]},"font":{"name":"Lato"},"color":"#000100"},{"font":{"size":12,"name":"Lato"},"border":{"top":["thick","#000"],"right":["thick","#000"]},"color":"#000100"},{"font":{"size":12,"name":"Lato"},"border":{"left":["thick","#000"]},"align":"center","color":"#000100"},{"align":"center","font":{"name":"Lato"},"color":"#000100"},{"font":{"size":14,"bold":true,"name":"Lato"},"border":{"left":["thick","#000"]},"align":"center","color":"#000100"},{"align":"center","font":{"bold":true,"size":14,"name":"Lato"},"color":"#000100"},{"font":{"size":12,"name":"Lato"},"border":{"left":["thick","#000"]},"color":"#000100"},{"font":{"size":12,"name":"Lato"},"color":"#000100"},{"font":{"name":"Lato"},"color":"#000100"},{"font":{"size":12,"name":"Lato"},"valign":"middle","border":{"right":["thick","#000"]},"color":"#000100"},{"align":"left","font":{"size":12,"bold":false,"name":"Lato"},"color":"#000100","border":{"left":["thick","#000"],"right":["thick","#000"]}},{"font":{"size":12,"bold":false,"name":"Lato"},"color":"#000100"},{"align":"left","font":{"size":12,"bold":false,"name":"Lato"},"color":"#000100","border":{"left":["thick","#000"]}},{"align":"center","underline":false,"border":{"bottom":["thin","#000"]},"font":{"size":12,"bold":false,"name":"Lato"},"color":"#000100"},{"align":"left","border":{"bottom":["thin","#000"]},"font":{"size":12,"bold":false,"name":"Lato"},"color":"#000100"},{"align":"center","border":{"bottom":["thin","#000"]},"font":{"size":12,"bold":false,"name":"Lato"},"color":"#000100"},{"font":{"size":12,"bold":false,"name":"Lato"},"color":"#000100","align":"center"},{"align":"center","font":{"size":12,"bold":false,"name":"Lato"},"color":"#000100","border":{"left":["thick","#000"]}},{"align":"left","border":{"right":["thick","#000"]},"font":{"size":12,"bold":false,"name":"Lato"},"color":"#000100"},{"align":"left","font":{"size":12,"bold":false,"name":"Lato"},"color":"#000100"},{"font":{"size":12,"name":"Lato"},"border":{"right":["thick","#000"]},"color":"#000100"},{"border":{"bottom":["thick","#000"],"left":["thick","#000"]},"font":{"name":"Lato"},"color":"#000100"},{"border":{"bottom":["thick","#000"]},"font":{"name":"Lato"},"color":"#000100"},{"border":{"bottom":["thick","#000"],"right":["thick","#000"]},"font":{"name":"Lato"},"color":"#000100"},{"font":{"size":10,"name":"Lato"},"valign":"middle","border":{"right":["thick","#000"]},"color":"#000100"},{"font":{"size":12,"name":"Lato"},"color":"#000100","align":"center"},{"font":{"size":12,"name":"Lato"},"border":{"left":["thick","#000"]},"color":"#000100","align":"right"},{"align":"right"},{"font":{"size":12,"name":"Lato"},"border":{"left":["thick","#000"]},"align":"left","color":"#000100"},{"font":{"size":12,"name":"Lato"},"border":{"left":["thick","#000"]},"align":"left","color":"#000100","valign":"top"},{"align":"left","valign":"top"},{"font":{"size":12,"name":"Lato"},"border":{"left":["thick","#000"]},"align":"left","color":"#000100","valign":"middle"},{"align":"left","valign":"middle"},{"font":{"size":12,"name":"Lato"},"border":{"left":["thick","#000"]},"align":"left","color":"#000100","valign":"bottom"},{"align":"left","valign":"bottom"},{"font":{"size":12,"name":"Lato"},"border":{"left":["thick","#000"]},"align":"center","color":"#000100","valign":"bottom"},{"font":{"size":12,"name":"Lato"},"border":{"left":["thick","#000"]},"align":"right","color":"#000100","valign":"bottom"},{"font":{"size":12,"name":"Lato"},"border":{"bottom":["thin","#000"],"top":["thin","#000"],"left":["thin","#000"],"right":["thin","#000"]},"color":"#000100"},{"font":{"size":12,"name":"Lato"},"border":{"bottom":["thin","#000"],"top":["thin","#000"],"left":["thin","#000"],"right":["thin","#000"]},"align":"center","color":"#000100"},{"font":{"size":14,"bold":true,"name":"Lato"},"border":{"bottom":["thin","#000"],"top":["thin","#000"],"left":["thin","#000"],"right":["thin","#000"]},"align":"center","color":"#000100"},{"font":{"size":12,"name":"Lato"},"border":{"bottom":["thin","#000"],"top":["thin","#000"],"left":["thin","#000"],"right":["thin","#000"]},"align":"right","color":"#000100","valign":"bottom"},{"align":"left","font":{"size":12,"bold":false,"name":"Lato"},"color":"#000100","border":{"bottom":["thin","#000"],"top":["thin","#000"],"left":["thin","#000"],"right":["thin","#000"]}},{"align":"center","underline":false,"border":{"bottom":["thin","#000"],"top":["thin","#000"],"left":["thin","#000"],"right":["thin","#000"]},"font":{"size":12,"bold":false,"name":"Lato"},"color":"#000100"},{"font":{"size":12,"bold":false,"name":"Lato"},"color":"#000100","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"]},"font":{"size":12,"bold":false,"name":"Lato"},"color":"#000100"},{"font":{"name":"Lato"},"color":"#000100","border":{"bottom":["thin","#000"],"top":["thin","#000"],"left":["thin","#000"],"right":["thin","#000"]}},{"font":{"size":12,"name":"Lato"},"border":{"bottom":["thin","#000"],"top":["thin","#000"],"left":["thin","#000"],"right":["thin","#000"]},"color":"#000100","align":"right"},{"font":{"size":12,"name":"Lato","bold":true},"border":{"bottom":["thin","#000"],"top":["thin","#000"],"left":["thin","#000"],"right":["thin","#000"]},"color":"#000100"},{"border":{"right":["thin","#000"]}},{},{"font":{"size":12,"name":"Lato"},"border":{"bottom":["thin","#000"]},"color":"#000100","align":"right"},{"font":{"size":12,"name":"Lato","bold":true},"color":"#000100"},{"font":{"size":12,"name":"Lato"},"align":"right","color":"#000100","valign":"bottom"},{"align":"center","underline":false,"font":{"size":12,"bold":false,"name":"Lato"},"color":"#000100"},{"font":{"size":12},"align":"center","border":{"bottom":["thin","#000"]}},{"align":"left","font":{"name":"Lato"},"color":"#000100"},{"font":{"size":12,"name":"Lato"},"color":"#000100","align":"right"},{"border":{"bottom":["thin","#000"]},"font":{"size":12}},{"align":"center","font":{"bold":false}},{"align":"center","font":{"bold":false,"size":12}},{"align":"center","font":{"bold":false,"size":12},"border":{"bottom":["thin","#000"]}},{"align":"center","valign":"top"},{"font":{"size":14,"name":"Lato"},"color":"#000100","align":"center"},{"font":{"size":14}},{"align":"center","font":{"bold":true,"size":16,"name":"Lato"},"color":"#000100"},{"font":{"size":14,"name":"Lato"},"align":"right","color":"#000100","valign":"bottom"},{"align":"left","font":{"size":14,"bold":false,"name":"Lato"},"color":"#000100"},{"align":"center","font":{"bold":false,"size":14},"border":{"bottom":["thin","#000"]}},{"font":{"name":"Lato","size":14},"color":"#000100"},{"align":"left","border":{"bottom":["thin","#000"]},"font":{"size":14,"bold":false,"name":"Lato"},"color":"#000100"},{"align":"center","border":{"bottom":["thin","#000"]},"font":{"size":14,"bold":false,"name":"Lato"},"color":"#000100"},{"font":{"size":14,"bold":false,"name":"Lato"},"color":"#000100","align":"center"},{"font":{"size":14},"align":"center","border":{"bottom":["thin","#000"]}},{"border":{"bottom":["thin","#000"]},"font":{"size":14}},{"align":"left","font":{"size":14}},{"align":"left","font":{"name":"Lato","size":14},"color":"#000100"},{"font":{"size":14,"name":"Lato"},"color":"#000100","align":"right"},{"align":"left","valign":"top","font":{"size":14}},{"border":{"top":["thick","#000"],"left":["thick","#000"],"right":["thick","#000"]}},{"font":{"size":14,"name":"Lato"},"color":"#000100","align":"center","border":{"left":["thick","#000"],"right":["thick","#000"]}},{"align":"center","font":{"bold":true,"size":16,"name":"Lato"},"color":"#000100","border":{"left":["thick","#000"],"right":["thick","#000"]}},{"font":{"size":14,"name":"Lato"},"align":"right","color":"#000100","valign":"bottom","border":{"left":["thick","#000"],"right":["thick","#000"]}},{"align":"left","font":{"size":14,"bold":false,"name":"Lato"},"color":"#000100","border":{"left":["thick","#000"],"right":["thick","#000"]}},{"align":"left","font":{"size":14,"bold":false,"name":"Lato"},"color":"#000100","border":{"left":["thick","#000"]}},{"align":"center","font":{"bold":false,"size":14},"border":{"right":["thick","#000"]}},{"align":"center","border":{"right":["thick","#000"]},"font":{"size":14,"bold":false,"name":"Lato"},"color":"#000100"},{"border":{"right":["thick","#000"]},"font":{"size":14}},{"align":"left","font":{"size":14,"bold":false,"name":"Lato"},"color":"#000100","border":{"right":["thick","#000"]}},{"font":{"name":"Lato","size":14},"color":"#000100","border":{"left":["thick","#000"]}},{"font":{"size":14,"name":"Lato"},"color":"#000100","align":"center","border":{"left":["thick","#000"]}},{"font":{"size":14},"border":{"left":["thick","#000"]}},{"font":{"size":14,"name":"Lato"},"color":"#000100","align":"right","border":{"left":["thick","#000"]}},{"font":{"size":12,"name":"Lato"},"color":"#000100","align":"right","border":{"bottom":["thick","#000"],"left":["thick","#000"]}},{"font":{"size":14},"border":{"bottom":["thick","#000"]}},{"align":"center","font":{"bold":false,"size":14}},{"font":{"size":14},"align":"center"},{"font":{"size":14,"name":"Lato"},"color":"#000100","align":"center","border":{"top":["thick","#000"],"left":["thick","#000"],"right":["thick","#000"]}},{"border":{"top":["thick","#000"],"left":["thick","#000"]}},{"font":{"size":14,"name":"Lato"},"color":"#000100","align":"center","border":{"top":["thick","#000"]}},{"border":{"top":["thick","#000"],"right":["thick","#000"]}},{"font":{"size":12,"name":"Lato"},"color":"#000100","align":"right","border":{"bottom":["thick","#000"]}},{"font":{"size":14},"align":"right"},{"border":{"bottom":["thick","#000"]},"font":{"size":12}},{"font":{"size":14},"border":{"bottom":["thick","#000"]},"align":"center"},{"border":{"bottom":["thick","#000"]},"font":{"size":12},"align":"center"},{"align":"left","valign":"middle","font":{"size":14}},{"border":{"top":["thick","#000"]},"font":{"size":24}},{"font":{"size":24}},{"border":{"top":["thick","#000"]},"font":{"size":22}},{"font":{"size":22}},{"border":{"top":["thick","#000"]},"font":{"size":18}},{"font":{"size":18}},{"border":{"top":["thick","#000"]},"font":{"size":18,"bold":true}},{"font":{"size":18,"bold":true}},{"border":{"top":["thick","#000"]},"font":{"size":18,"bold":true},"align":"center"},{"border":{"top":["thick","#000"]},"font":{"size":18,"bold":false},"align":"center"},{"font":{"size":18,"bold":false},"align":"center"},{"font":{"size":14,"bold":true}},{"border":{"top":["thick","#000"]},"font":{"size":18,"bold":false},"align":"center","valign":"bottom"},{"font":{"size":18,"bold":false},"align":"center","valign":"bottom"},{"valign":"bottom"},{"valign":"bottom","align":"right"},{"valign":"bottom","align":"right","font":{"size":14}},{"font":{"size":18,"bold":false},"align":"center","valign":"bottom","border":{"top":["thin","#000"],"left":["thin","#000"],"right":["thin","#000"]}},{"align":"center","font":{"bold":true,"size":14},"border":{"left":["thin","#000"],"right":["thin","#000"]}},{"valign":"bottom","align":"right","font":{"size":14},"border":{"left":["thin","#000"],"right":["thin","#000"]}},{"align":"left","font":{"size":14,"bold":false,"name":"Lato"},"color":"#000100","border":{"right":["thin","#000"]}},{"align":"center","font":{"bold":false,"size":14},"border":{"right":["thin","#000"]}},{"font":{"size":14},"align":"center","border":{"right":["thin","#000"]}},{"font":{"size":18,"bold":false},"align":"center","valign":"bottom","border":{"top":["thick","#000"],"left":["thick","#000"],"right":["thick","#000"]}},{"align":"center","font":{"bold":true,"size":14},"border":{"left":["thick","#000"],"right":["thick","#000"]}},{"valign":"bottom","align":"right","font":{"size":14},"border":{"left":["thick","#000"],"right":["thick","#000"]}},{"font":{"size":14},"align":"center","border":{"right":["thick","#000"]}},{"font":{"size":18,"bold":false},"align":"center","valign":"bottom","border":{"top":["thick","#000"],"left":["thick","#000"]}},{"valign":"bottom","align":"right","font":{"size":14},"border":{"left":["thick","#000"]}},{"font":{"size":18,"bold":false},"align":"center","valign":"bottom","border":{"top":["medium","#000"],"left":["medium","#000"],"right":["medium","#000"]}},{"align":"center","font":{"bold":true,"size":14},"border":{"left":["medium","#000"],"right":["medium","#000"]}},{"valign":"bottom","align":"right","font":{"size":14},"border":{"left":["medium","#000"]}},{"border":{"right":["medium","#000"]}},{"border":{"left":["medium","#000"]}},{"border":{"bottom":["medium","#000"],"left":["medium","#000"]}},{"font":{"size":12,"name":"Lato"},"color":"#000100","align":"right","border":{"bottom":["medium","#000"]}},{"border":{"bottom":["medium","#000"]}},{"font":{"size":12},"align":"center","border":{"bottom":["medium","#000"]}},{"border":{"bottom":["medium","#000"],"right":["medium","#000"]}},{"align":"center","font":{"bold":false,"size":14},"border":{"top":["thin","#000"],"bottom":["thin","#000"],"left":["thin","#000"],"right":["thin","#000"]}},{"font":{"size":12},"align":"right","border":{"bottom":["medium","#000"]}},{"font":{"size":12},"align":"right"}],"validations":[],"cols":{"0":{"width":18},"1":{"width":21},"2":{"width":27},"3":{"width":6},"4":{"width":87},"5":{"width":51},"6":{"width":51},"7":{"width":1},"8":{"width":86},"9":{"width":163},"10":{"width":1},"11":{"width":60},"12":{"width":45},"13":{"width":49},"14":{"width":23},"15":{"width":20},"len":50},"merges":["D8:E8","C6:D6","C10:I10","G8:H8","C9:J9","C1:L1","K10:L15","C13:I13","C14:H14","F7:I7","G12:I12","G16:M16","B4:N4","C5:N5","E6:N6","J7:N7","C7:E7","K9:N9","B2:O2","B3:O3","J8:N8"],"imgList":[{"row":13,"col":9,"width":"168","height":"158","src":"https://static.jeecg.com/designreport/images/QQ截图20210105214919_1610075317075.png","layer_id":"XefZfpEcdS3wI6Ae","offsetX":0,"offsetY":0,"virtualCellRange":[[13,9],[13,10],[13,11]]}]}', '', 'https://static.jeecg.com/designreport/images/逮捕令_1607070625878.png', 'jeecg', '2020-07-10 13:38:40', 'admin', '2021-04-05 18:47:36', 0, NULL, NULL, 1, 2513, NULL, NULL, NULL, NULL, 0, NULL); -INSERT INTO "public"."jimu_report" VALUES ('f6ee801e8bdc28ba9d63f95dc65ccd79', '4556633', '采购单', '', NULL, '984302991393210368', '{"loopBlockList":[],"area":false,"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":89},"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":45},"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":26},"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"],"right":["thin","#bfbfbf"]},"bgcolor":"#9cc2e6","font":{"name":"宋体"}},{"border":{"bottom":["thin","#bfbfbf"],"top":["thin","#bfbfbf"],"left":["thin","#bfbfbf"],"right":["thin","#bfbfbf"]},"align":"center","font":{"name":"宋体"}},{"align":"center","color":"#000100","border":{"bottom":["thin","#bfbfbf"],"top":["thin","#bfbfbf"],"left":["thin","#bfbfbf"],"right":["thin","#bfbfbf"]},"bgcolor":"#5b9cd6","font":{"name":"宋体"}},{"align":"center","color":"#ffffff","border":{"bottom":["thin","#bfbfbf"],"top":["thin","#bfbfbf"],"left":["thin","#bfbfbf"],"right":["thin","#bfbfbf"]},"bgcolor":"#5b9cd6","font":{"name":"宋体"}},{"align":"center","font":{"size":16,"bold":true,"name":"Microsoft YaHei"}},{"font":{"name":"Microsoft YaHei"}},{"align":"center","color":"#ffffff","border":{"bottom":["thin","#bfbfbf"],"top":["thin","#bfbfbf"],"left":["thin","#bfbfbf"],"right":["thin","#bfbfbf"]},"bgcolor":"#5b9cd6","font":{"name":"Microsoft YaHei"}},{"border":{"bottom":["thin","#bfbfbf"],"top":["thin","#bfbfbf"],"left":["thin","#bfbfbf"],"right":["thin","#bfbfbf"]},"align":"center","font":{"name":"Microsoft YaHei"}}],"validations":[],"cols":{"0":{"width":43},"1":{"width":114},"2":{"width":109},"3":{"width":78},"4":{"width":77},"5":{"width":84},"6":{"width":82},"7":{"width":95},"len":50},"merges":["B1:H1"]}', '', 'https://static.jeecg.com/designreport/images/caigou_1607310279439.png', 'jeecg', '2020-07-28 16:54:44', 'admin', '2021-04-01 03:09:41', 0, NULL, NULL, 1, 1252, NULL, NULL, NULL, NULL, 0, NULL); - --- ---------------------------- --- Table structure for jimu_report_category --- ---------------------------- -DROP TABLE IF EXISTS "public"."jimu_report_category"; -CREATE TABLE "public"."jimu_report_category" ( - "id" varchar(32) COLLATE "pg_catalog"."default" NOT NULL, - "name" varchar(100) COLLATE "pg_catalog"."default" NOT NULL, - "parent_id" varchar(32) COLLATE "pg_catalog"."default", - "iz_leaf" int4, - "source_type" varchar(10) COLLATE "pg_catalog"."default", - "del_flag" int4, - "create_by" varchar(32) COLLATE "pg_catalog"."default", - "create_time" timestamp(6), - "update_by" varchar(32) COLLATE "pg_catalog"."default", - "update_time" timestamp(6), - "tenant_id" varchar(11) COLLATE "pg_catalog"."default", - "sort_no" int4 -)TABLESPACE "stas" -; -COMMENT ON COLUMN "public"."jimu_report_category"."id" IS '主键'; -COMMENT ON COLUMN "public"."jimu_report_category"."name" IS '分类名称'; -COMMENT ON COLUMN "public"."jimu_report_category"."parent_id" IS '父级id'; -COMMENT ON COLUMN "public"."jimu_report_category"."iz_leaf" IS '是否为叶子节点(0 否 1是)'; -COMMENT ON COLUMN "public"."jimu_report_category"."source_type" IS '来源类型( report 积木报表 screen 大屏 drag 仪表盘)'; -COMMENT ON COLUMN "public"."jimu_report_category"."del_flag" IS '删除标识(0 正常 1 已删除)'; -COMMENT ON COLUMN "public"."jimu_report_category"."create_by" IS '创建人'; -COMMENT ON COLUMN "public"."jimu_report_category"."create_time" IS '创建时间'; -COMMENT ON COLUMN "public"."jimu_report_category"."update_by" IS '更新人'; -COMMENT ON COLUMN "public"."jimu_report_category"."update_time" IS '更新时间'; -COMMENT ON COLUMN "public"."jimu_report_category"."tenant_id" IS '租户id'; -COMMENT ON COLUMN "public"."jimu_report_category"."sort_no" IS '排序'; -COMMENT ON TABLE "public"."jimu_report_category" IS '分类'; - --- ---------------------------- --- Records of jimu_report_category --- ---------------------------- -INSERT INTO "public"."jimu_report_category" VALUES ('984272091947253760', '数据报表', '0', 1, 'report', 0, 'admin', '2024-08-16 11:52:44', NULL, NULL, '1000', 0); -INSERT INTO "public"."jimu_report_category" VALUES ('984302961118724096', '图形报表', '0', 1, 'report', 0, 'admin', '2024-08-16 13:55:24', NULL, NULL, '1000', 0); -INSERT INTO "public"."jimu_report_category" VALUES ('984302991393210368', '打印设计', '0', 1, 'report', 0, 'admin', '2024-08-16 13:55:31', NULL, NULL, '1000', 0); -INSERT INTO "public"."jimu_report_category" VALUES ('988299668956545024', '仪表盘设计', '0', 1, 'drag', 0, '15931993294', '2024-08-27 00:00:00', '15931993294', '2024-08-28 00:00:00', NULL, 0); -INSERT INTO "public"."jimu_report_category" VALUES ('988299695309357056', '门户设计', '0', 1, 'drag', 0, '15931993294', '2024-08-27 00:00:00', '15931993294', '2024-08-27 00:00:00', NULL, 0); - --- ---------------------------- --- Table structure for jimu_report_data_source --- ---------------------------- -DROP TABLE IF EXISTS "public"."jimu_report_data_source"; -CREATE TABLE "public"."jimu_report_data_source" ( - "id" varchar(36) COLLATE "pg_catalog"."default" NOT NULL, - "name" varchar(100) COLLATE "pg_catalog"."default", - "report_id" varchar(100) COLLATE "pg_catalog"."default", - "code" varchar(100) COLLATE "pg_catalog"."default", - "remark" varchar(200) COLLATE "pg_catalog"."default", - "db_type" varchar(10) COLLATE "pg_catalog"."default", - "db_driver" varchar(100) COLLATE "pg_catalog"."default", - "db_url" varchar(500) COLLATE "pg_catalog"."default", - "db_username" varchar(100) COLLATE "pg_catalog"."default", - "db_password" varchar(100) COLLATE "pg_catalog"."default", - "create_by" varchar(50) COLLATE "pg_catalog"."default", - "create_time" timestamp(6), - "update_by" varchar(50) COLLATE "pg_catalog"."default", - "update_time" timestamp(6), - "connect_times" int4, - "tenant_id" varchar(10) COLLATE "pg_catalog"."default", - "type" varchar(10) COLLATE "pg_catalog"."default" -)TABLESPACE "stas" -; -COMMENT ON COLUMN "public"."jimu_report_data_source"."name" IS '数据源名称'; -COMMENT ON COLUMN "public"."jimu_report_data_source"."report_id" IS '报表_id'; -COMMENT ON COLUMN "public"."jimu_report_data_source"."code" IS '编码'; -COMMENT ON COLUMN "public"."jimu_report_data_source"."remark" IS '备注'; -COMMENT ON COLUMN "public"."jimu_report_data_source"."db_type" IS '数据库类型'; -COMMENT ON COLUMN "public"."jimu_report_data_source"."db_driver" IS '驱动类'; -COMMENT ON COLUMN "public"."jimu_report_data_source"."db_url" IS '数据源地址'; -COMMENT ON COLUMN "public"."jimu_report_data_source"."db_username" IS '用户名'; -COMMENT ON COLUMN "public"."jimu_report_data_source"."db_password" IS '密码'; -COMMENT ON COLUMN "public"."jimu_report_data_source"."create_by" IS '创建人'; -COMMENT ON COLUMN "public"."jimu_report_data_source"."create_time" IS '创建日期'; -COMMENT ON COLUMN "public"."jimu_report_data_source"."update_by" IS '更新人'; -COMMENT ON COLUMN "public"."jimu_report_data_source"."update_time" IS '更新日期'; -COMMENT ON COLUMN "public"."jimu_report_data_source"."connect_times" IS '连接失败次数'; -COMMENT ON COLUMN "public"."jimu_report_data_source"."tenant_id" IS '多租户标识'; -COMMENT ON COLUMN "public"."jimu_report_data_source"."type" IS '类型(report:报表;drag:仪表盘)'; - --- ---------------------------- --- Records of jimu_report_data_source --- ---------------------------- -INSERT INTO "public"."jimu_report_data_source" VALUES ('1324261983692902402', 'jeewx', '1324261770294071296', '', NULL, 'MYSQL', 'com.mysql.jdbc.Driver', 'jdbc:mysql://127.0.0.1:3306/jeewx-boot?useUnicode=true&characterEncoding=UTF-8&serverTimezone=GMT%2B8', 'root', 'root', 'jeecg', '2020-11-05 16:07:15', NULL, '2020-11-05 16:07:15', 0, NULL, 'report'); -INSERT INTO "public"."jimu_report_data_source" VALUES ('26d21fe4f27920d2f56abc8d90a8e527', 'oracle', '1308645288868712448', '', NULL, 'ORACLE', 'oracle.jdbc.OracleDriver', 'jdbc:oracle:thin:@192.168.1.199:1521:helowin', 'jeecgbootbpm', 'jeecg196283', 'admin', '2021-01-05 19:26:24', NULL, '2021-01-05 19:26:24', 1, NULL, 'report'); -INSERT INTO "public"."jimu_report_data_source" VALUES ('707437208002265088', 'MySQL5.7', NULL, NULL, NULL, 'MYSQL5.7', 'com.mysql.cj.jdbc.Driver', 'jdbc:mysql://127.0.0.1:3306/jeecg-boot?characterEncoding=UTF-8&useUnicode=true&useSSL=false&tinyInt1isBit=false&allowPublicKeyRetrieval=true&serverTimezone=Asia/Shanghai', 'root', '@JimuReportSMy3f94QGFM=', 'admin', '2022-07-14 13:49:44', 'admin', '2025-06-05 15:51:54', 0, NULL, 'drag'); -INSERT INTO "public"."jimu_report_data_source" VALUES ('8f90daf47d15d35ca6cf420748b8b9ba', 'localhost', '1316944968992034816', '', NULL, 'MYSQL5.7', 'com.mysql.cj.jdbc.Driver', 'jdbc:mysql://127.0.0.1:3306/jeecg-boot?useUnicode=true&characterEncoding=UTF-8&serverTimezone=GMT%2B8', 'root', 'root', 'admin', '2021-01-13 14:34:00', NULL, '2021-01-13 14:34:00', 0, NULL, 'report'); - --- ---------------------------- --- Table structure for jimu_report_db --- ---------------------------- -DROP TABLE IF EXISTS "public"."jimu_report_db"; -CREATE TABLE "public"."jimu_report_db" ( - "id" varchar(36) COLLATE "pg_catalog"."default" NOT NULL, - "jimu_report_id" varchar(32) COLLATE "pg_catalog"."default", - "create_by" varchar(50) COLLATE "pg_catalog"."default", - "update_by" varchar(50) COLLATE "pg_catalog"."default", - "create_time" timestamp(6), - "update_time" timestamp(6), - "db_code" varchar(32) COLLATE "pg_catalog"."default", - "db_ch_name" varchar(50) COLLATE "pg_catalog"."default", - "db_type" varchar(32) COLLATE "pg_catalog"."default", - "db_table_name" varchar(32) COLLATE "pg_catalog"."default", - "db_dyn_sql" text COLLATE "pg_catalog"."default", - "db_key" varchar(32) COLLATE "pg_catalog"."default", - "tb_db_key" varchar(32) COLLATE "pg_catalog"."default", - "tb_db_table_name" varchar(32) COLLATE "pg_catalog"."default", - "java_type" varchar(32) COLLATE "pg_catalog"."default", - "java_value" varchar(255) COLLATE "pg_catalog"."default", - "api_url" varchar(255) COLLATE "pg_catalog"."default", - "api_method" varchar(255) COLLATE "pg_catalog"."default", - "is_list" varchar(10) COLLATE "pg_catalog"."default", - "is_page" varchar(10) COLLATE "pg_catalog"."default", - "db_source" varchar(255) COLLATE "pg_catalog"."default", - "db_source_type" varchar(50) COLLATE "pg_catalog"."default", - "json_data" text COLLATE "pg_catalog"."default", - "api_convert" varchar(255) COLLATE "pg_catalog"."default", - "iz_shared_source" int4, - "jimu_shared_source_id" varchar(32) COLLATE "pg_catalog"."default" -)TABLESPACE "stas" -; -COMMENT ON COLUMN "public"."jimu_report_db"."id" IS 'id'; -COMMENT ON COLUMN "public"."jimu_report_db"."jimu_report_id" IS '主键字段'; -COMMENT ON COLUMN "public"."jimu_report_db"."create_by" IS '创建人登录名称'; -COMMENT ON COLUMN "public"."jimu_report_db"."update_by" IS '更新人登录名称'; -COMMENT ON COLUMN "public"."jimu_report_db"."create_time" IS '创建日期'; -COMMENT ON COLUMN "public"."jimu_report_db"."update_time" IS '更新日期'; -COMMENT ON COLUMN "public"."jimu_report_db"."db_code" IS '数据集编码'; -COMMENT ON COLUMN "public"."jimu_report_db"."db_ch_name" IS '数据集名字'; -COMMENT ON COLUMN "public"."jimu_report_db"."db_type" IS '数据源类型'; -COMMENT ON COLUMN "public"."jimu_report_db"."db_table_name" IS '数据库表名'; -COMMENT ON COLUMN "public"."jimu_report_db"."db_dyn_sql" IS '动态查询SQL'; -COMMENT ON COLUMN "public"."jimu_report_db"."db_key" IS '数据源KEY'; -COMMENT ON COLUMN "public"."jimu_report_db"."tb_db_key" IS '填报数据源'; -COMMENT ON COLUMN "public"."jimu_report_db"."tb_db_table_name" IS '填报数据表'; -COMMENT ON COLUMN "public"."jimu_report_db"."java_type" IS 'java类数据集 类型(spring:springkey,class:java类名)'; -COMMENT ON COLUMN "public"."jimu_report_db"."java_value" IS 'java类数据源 数值(bean key/java类名)'; -COMMENT ON COLUMN "public"."jimu_report_db"."api_url" IS '请求地址'; -COMMENT ON COLUMN "public"."jimu_report_db"."api_method" IS '请求方法0-get,1-post'; -COMMENT ON COLUMN "public"."jimu_report_db"."is_list" IS '是否是列表0否1是 默认0'; -COMMENT ON COLUMN "public"."jimu_report_db"."is_page" IS '是否作为分页,0:不分页,1:分页'; -COMMENT ON COLUMN "public"."jimu_report_db"."db_source" IS '数据源'; -COMMENT ON COLUMN "public"."jimu_report_db"."db_source_type" IS '数据库类型 MYSQL ORACLE SQLSERVER'; -COMMENT ON COLUMN "public"."jimu_report_db"."json_data" IS 'json数据,直接解析json内容'; -COMMENT ON COLUMN "public"."jimu_report_db"."api_convert" IS 'api转换器'; -COMMENT ON COLUMN "public"."jimu_report_db"."iz_shared_source" IS '是否为共享数据源(0 否 1 是)'; -COMMENT ON COLUMN "public"."jimu_report_db"."jimu_shared_source_id" IS '指向共享数据集的id'; - --- ---------------------------- --- Records of jimu_report_db --- ---------------------------- -INSERT INTO "public"."jimu_report_db" VALUES ('1036890631451017216', '1036890552178671616', 'admin', NULL, '2025-01-08 16:40:01', '2025-01-08 16:40:01', 'aaa', 'aa', '0', NULL, 'select * from sys_log', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '1', '1', '', 'mysql', '', '', 0, NULL); -INSERT INTO "public"."jimu_report_db" VALUES ('1080630642394300416', '1080630641874206720', 'admin', NULL, '2024-01-17 14:19:41', '2024-01-17 14:19:41', 'aa', 'aa', '0', NULL, 'select * from rep_demo_order_main', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '1', '1', '8f90daf47d15d35ca6cf420748b8b9ba', 'mysql', '', NULL, NULL, NULL); -INSERT INTO "public"."jimu_report_db" VALUES ('1080630642507546624', '1080630641874206720', 'admin', NULL, '2024-01-17 14:21:57', '2024-01-17 14:21:57', 'bb', 'bb', '0', NULL, 'select * from rep_demo_order_product where order_fk_id = ''${orderId}''', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '1', '0', '8f90daf47d15d35ca6cf420748b8b9ba', 'mysql', '', '', NULL, NULL); -INSERT INTO "public"."jimu_report_db" VALUES ('1272834687525482497', '53c82a76f837d5661dceec7d93afafec', 'admin', NULL, '2021-01-04 20:42:17', '2021-01-04 20:42:17', 'jianpiao', 'jianpiao', '0', NULL, 'select * from rep_demo_jianpiao where s_id=''${id}''', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '1', '1', NULL, 'MYSQL', NULL, NULL, NULL, NULL); -INSERT INTO "public"."jimu_report_db" VALUES ('1283730831482937345', '6059e405dd9c66a6d38e00841d2e40cc', 'admin', NULL, '2020-12-04 16:53:38', '2020-12-04 16:53:38', 'yaopin', 'yaopin', '1', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'https://api.jeecg.com/mock/26/baobiao/chufangjian', '0', '0', '0', NULL, 'MYSQL', NULL, NULL, NULL, NULL); -INSERT INTO "public"."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, 'https://api.jeecg.com/mock/26/baobiao/yonghu', '0', '0', NULL, NULL, 'MYSQL', NULL, NULL, NULL, NULL); -INSERT INTO "public"."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, 'https://api.jeecg.com/mock/26/baobiao/budongchan', '0', '0', NULL, NULL, 'MYSQL', NULL, NULL, NULL, NULL); -INSERT INTO "public"."jimu_report_db" VALUES ('1285157606524002305', 'a9f068972508920cd4aab831814f0c04', 'admin', 'admin', '2021-04-01 02:44:48', '2021-04-01 02:44:48', 'pdaibu', 'pdaibu', '1', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'https://api.jeecg.com/mock/26/baobiao/daibu', '0', '0', '0', '', 'MYSQL', NULL, NULL, NULL, NULL); -INSERT INTO "public"."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, 'https://api.jeecg.com/mock/26/baobiao/jieshaoxin', '0', '0', NULL, NULL, 'MYSQL', NULL, NULL, NULL, NULL); -INSERT INTO "public"."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, 'https://api.jeecg.com/mock/26/baobiao/qiangxiu', '0', '0', NULL, NULL, 'MYSQL', NULL, NULL, NULL, NULL); -INSERT INTO "public"."jimu_report_db" VALUES ('1288038655293661186', 'f6ee801e8bdc28ba9d63f95dc65ccd79', 'admin', 'admin', '2021-04-01 03:09:40', '2021-04-01 03:09:40', 'caigou', 'caigou', '1', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'https://api.jeecg.com/mock/26/baobiao/caigou?pageNo=''${pageNo}''&pageSize=''${pageSize}''', '0', '1', '1', '', NULL, NULL, NULL, NULL, NULL); -INSERT INTO "public"."jimu_report_db" VALUES ('1289140698221678593', '519c1c6f4d1f584ae8fa5b43b45acdc7', 'admin', 'admin', '2021-04-01 03:09:23', '2021-04-01 03:09:23', 'xiaoshou', 'xiaoshou', '1', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'https://api.jeecg.com/mock/26/baobiao/xiaoshou?pageNo=''${pageNo}''&pageSize=''${pageSize}''', '0', '1', '1', '', NULL, NULL, NULL, NULL, NULL); -INSERT INTO "public"."jimu_report_db" VALUES ('1290104038414721025', '53c82a76f837d5661dceec7d93afafec', 'admin', NULL, '2021-01-04 20:47:07', '2021-01-04 20:47:07', 'gongsi', 'gongsi', '0', NULL, 'select * from rep_demo_gongsi where id=''${id}''', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0', '0', '', 'MYSQL', NULL, NULL, NULL, NULL); -INSERT INTO "public"."jimu_report_db" VALUES ('1316987047604514817', '1314846205892759552', 'admin', NULL, '2021-01-08 10:36:58', '2021-01-08 10:36:58', 'yuangongjiben', 'yuangongjiben', '1', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'https://api.jeecg.com/mock/26/yuangongjiben', '0', '0', '0', '', NULL, NULL, NULL, NULL, NULL); -INSERT INTO "public"."jimu_report_db" VALUES ('1316997232402231298', '1316944968992034816', 'admin', NULL, '2021-01-13 14:34:06', '2021-01-13 14:34:06', 'employee', 'employee', '0', NULL, 'select * from rep_demo_employee where id=''${id}''', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '1', '0', '', '', NULL, NULL, NULL, NULL); -INSERT INTO "public"."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, 'https://api.jeecg.com/mock/26/xueli', '0', '1', '0', '', NULL, NULL, NULL, NULL, NULL); -INSERT INTO "public"."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, 'https://api.jeecg.com/mock/26/gongzuojingli', '0', '1', '0', '', NULL, NULL, NULL, NULL, NULL); -INSERT INTO "public"."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, 'https://api.jeecg.com/mock/26/zhengshu', '0', '0', '0', '', NULL, NULL, NULL, NULL, NULL); -INSERT INTO "public"."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, 'https://api.jeecg.com/mock/26/jtcy', '0', '0', '0', '', NULL, NULL, NULL, NULL, NULL); -INSERT INTO "public"."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, 'https://api.jeecg.com/mock/26/jiangli', '0', '0', '0', '', NULL, NULL, NULL, NULL, NULL); -INSERT INTO "public"."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, 'https://api.jeecg.com/mock/26/chengjiao', '0', '0', '0', '', NULL, NULL, NULL, NULL, NULL); -INSERT INTO "public"."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, 'https://api.jeecg.com/mock/26/cjpaihang', '0', '0', '0', '', NULL, NULL, NULL, NULL, NULL); -INSERT INTO "public"."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, 'https://api.jeecg.com/mock/26/cjjine', '0', '0', '0', '', NULL, NULL, NULL, NULL, NULL); -INSERT INTO "public"."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, 'https://api.jeecg.com/mock/26/chengjiao1', '0', '0', '0', '', NULL, NULL, NULL, NULL, NULL); -INSERT INTO "public"."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, 'https://api.jeecg.com/mock/26/zhuangxiu', '0', '0', '0', '', NULL, NULL, NULL, NULL, NULL); -INSERT INTO "public"."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, 'https://api.jeecg.com/mock/26/btchanquan', '0', '0', '0', '', NULL, NULL, NULL, NULL, NULL); -INSERT INTO "public"."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, 'https://api.jeecg.com/mock/26/huxingxiaoshou', '0', '0', '0', '', NULL, NULL, NULL, NULL, NULL); -INSERT INTO "public"."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, 'https://api.jeecg.com/mock/26/fangyuan', '0', '0', '0', '', NULL, NULL, NULL, NULL, NULL); -INSERT INTO "public"."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, 'https://api.jeecg.com/mock/26/qingkuang', '0', '0', '0', '', NULL, NULL, NULL, NULL, NULL); -INSERT INTO "public"."jimu_report_db" VALUES ('1334390762455965697', '1334378897302753280', 'admin', NULL, '2021-01-06 11:43:35', '2021-01-06 11:43:35', 'quyuxiaoshou', 'quyuxiaoshou', '1', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'https://api.jeecg.com/mock/26/quyuxiaoshou', '0', '1', '1', '', NULL, NULL, NULL, NULL, NULL); -INSERT INTO "public"."jimu_report_db" VALUES ('1334440263732436994', '1334420681185566722', 'admin', NULL, '2021-01-04 21:28:19', '2021-01-04 21:28:19', 'laiyuan', 'laiyuan', '1', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'https://api.jeecg.com/mock/26/laiyuan', '0', '1', '1', '', NULL, NULL, NULL, NULL, NULL); -INSERT INTO "public"."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, 'https://api.jeecg.com/mock/26/xiaoshou', '0', '1', '1', '', NULL, NULL, NULL, NULL, NULL); -INSERT INTO "public"."jimu_report_db" VALUES ('1334708015269490689', '1334696790477377536', 'admin', NULL, '2021-01-04 21:30:29', '2021-01-04 21:30:29', 'shouru', 'shouru', '1', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'https://api.jeecg.com/mock/26/shouru', '0', '1', '0', '', NULL, NULL, NULL, NULL, NULL); -INSERT INTO "public"."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, 'https://api.jeecg.com/mock/26/chejian', '0', '0', '0', '', NULL, NULL, NULL, NULL, NULL); -INSERT INTO "public"."jimu_report_db" VALUES ('1338756341933543425', '1338744112815411200', 'admin', NULL, '2021-02-02 19:20:56', '2021-02-02 19:20:56', 'jdcx', 'jdcx', '0', NULL, 'select * from rep_demo_dxtj', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '1', '0', '', 'MYSQL', NULL, NULL, NULL, NULL); -INSERT INTO "public"."jimu_report_db" VALUES ('537477711022567424', '537446834339098624', 'admin', 'admin', '2021-04-01 05:54:42', '2021-04-01 05:54:42', 'yy', 'yy', '0', NULL, 'select * from rep_demo_dxtj', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '1', '1', '', 'MYSQL', NULL, NULL, NULL, NULL); -INSERT INTO "public"."jimu_report_db" VALUES ('537478337278291968', '537446834339098624', 'admin', 'admin', '2021-04-01 05:54:37', '2021-04-01 05:54:37', 'tt', 'tt', '0', NULL, 'select * from SYS_DATA_LOG', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '1', '0', '26d21fe4f27920d2f56abc8d90a8e527', 'ORACLE', NULL, NULL, NULL, NULL); -INSERT INTO "public"."jimu_report_db" VALUES ('537478706314129408', '537446834339098624', 'admin', 'admin', '2021-04-01 05:56:44', '2021-04-01 05:56:44', 'pp', 'pp', '1', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'https://api.jeecg.com/mock/26/baobiao/caigou', '0', '1', '0', '', NULL, NULL, NULL, NULL, NULL); -INSERT INTO "public"."jimu_report_db" VALUES ('6011955e58d89040fca52e7f962d0bf4', '961455b47c0b86dc961e90b5893bff05', 'admin', NULL, '2021-01-04 20:47:07', '2021-01-04 20:47:07', 'gongsi', 'gongsi', '0', NULL, 'select * from rep_demo_gongsi where id=''${id}''', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0', '0', '', 'MYSQL', NULL, NULL, NULL, NULL); -INSERT INTO "public"."jimu_report_db" VALUES ('629609c4d540cb4675e9064af8955296', '7c02c224a2db56d0350069650033f702', 'admin', NULL, '2021-02-02 19:33:09', '2021-02-02 19:33:09', 'hecha', 'hecha', '1', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'https://api.jeecg.com/mock/26/hecha', '0', '1', '0', '', NULL, NULL, NULL, NULL, NULL); -INSERT INTO "public"."jimu_report_db" VALUES ('654609e4247a0469e0b2befbc69b00f9', '1cd9d574d0c42f3915046dc61d9f33bd', 'admin', NULL, '2020-12-17 16:42:21', '2020-12-17 19:50:14', 'xiaoshoue', '销售额', '1', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'https://api.jeecg.com/mock/26/xiaoshoue', '0', '0', '0', '', NULL, NULL, NULL, NULL, NULL); -INSERT INTO "public"."jimu_report_db" VALUES ('7911bd189c2d53e182693bd599a315a2', '1cd9d574d0c42f3915046dc61d9f33bd', 'admin', NULL, '2020-12-17 16:59:12', '2020-12-17 19:50:14', 'chengshi', '城市', '1', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'https://api.jeecg.com/mock/26/chengshi', '0', '0', '0', '', NULL, NULL, NULL, NULL, NULL); -INSERT INTO "public"."jimu_report_db" VALUES ('7b20679054449c554cde856ef24126ab', '1347454742040809472', 'admin', NULL, '2021-01-08 16:24:16', '2021-01-08 16:24:16', 'tmp_report_data_1', '年度佣金收入', '0', NULL, 'select monty,main_income,total,his_lowest,his_average,his_highest from tmp_report_data_1', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '1', '0', '', 'MYSQL', NULL, NULL, NULL, NULL); -INSERT INTO "public"."jimu_report_db" VALUES ('907482846256762880', '907480464532770816', 'admin', NULL, '2024-01-17 14:19:41', '2024-01-17 14:19:41', 'aa', 'aa', '0', NULL, 'select * from rep_demo_order_main', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '1', '1', '8f90daf47d15d35ca6cf420748b8b9ba', 'mysql', '', NULL, NULL, NULL); -INSERT INTO "public"."jimu_report_db" VALUES ('907483416753410048', '907480464532770816', 'admin', NULL, '2024-01-17 14:21:57', '2024-01-17 14:21:57', 'bb', 'bb', '0', NULL, 'select * from rep_demo_order_product where order_fk_id = ''${orderId}''', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '1', '0', '8f90daf47d15d35ca6cf420748b8b9ba', 'mysql', '', '', NULL, NULL); -INSERT INTO "public"."jimu_report_db" VALUES ('919370187038609408', '919370186342354944', 'admin', 'admin', '2024-01-04 17:46:20', '2024-01-04 17:46:20', 'test_heng_sum', 'test_heng_sum', '3', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', '0', '1', '1', '', NULL, '{ - "data": [ - {"region":"华东","province":"上海市","year":"2022","quarter":"1","month":"1月","sales":"2000","gift":"1000","proportion":"10%"}, - {"region":"华东","province":"上海市","year":"2022","quarter":"1","month":"2月","sales":"2000","gift":"1000","proportion":"10%"}, - {"region":"华东","province":"上海市","year":"2022","quarter":"1","month":"3月","sales":"2000","gift":"1000","proportion":"10%"}, - {"region":"华东","province":"上海市","year":"2022","quarter":"2","month":"1月","sales":"3000","gift":"2000","proportion":"10%"}, - {"region":"华东","province":"上海市","year":"2022","quarter":"2","month":"2月","sales":"3000","gift":"2000","proportion":"10%"}, - {"region":"华东","province":"上海市","year":"2022","quarter":"2","month":"3月","sales":"3000","gift":"2000","proportion":"10%"}, - {"region":"华西","province":"太原市","year":"2022","quarter":"1","month":"1月","sales":"2000","gift":"1000","proportion":"10%"}, - {"region":"华西","province":"太原市","year":"2022","quarter":"1","month":"2月","sales":"2000","gift":"1000","proportion":"10%"}, - {"region":"华西","province":"太原市","year":"2022","quarter":"1","month":"3月","sales":"2000","gift":"1000","proportion":"10%"}, - {"region":"华西","province":"太原市","year":"2022","quarter":"2","month":"1月","sales":"3000","gift":"2000","proportion":"10%"}, - {"region":"华西","province":"太原市","year":"2022","quarter":"2","month":"2月","sales":"3000","gift":"2000","proportion":"10%"}, - {"region":"华西","province":"太原市","year":"2022","quarter":"2","month":"3月","sales":"3000","gift":"2000","proportion":"10%"}, - {"region":"华东","province":"上海市","year":"2023","quarter":"1","month":"1月","sales":"2000","gift":"1000","proportion":"10%"}, - {"region":"华东","province":"上海市","year":"2023","quarter":"1","month":"2月","sales":"2000","gift":"1000","proportion":"10%"}, - {"region":"华东","province":"上海市","year":"2023","quarter":"1","month":"3月","sales":"2000","gift":"1000","proportion":"10%"}, - {"region":"华东","province":"上海市","year":"2023","quarter":"2","month":"1月","sales":"3000","gift":"2000","proportion":"10%"}, - {"region":"华东","province":"上海市","year":"2023","quarter":"2","month":"2月","sales":"3000","gift":"2000","proportion":"10%"}, - {"region":"华东","province":"上海市","year":"2023","quarter":"2","month":"3月","sales":"3000","gift":"2000","proportion":"10%"}, - {"region":"华西","province":"太原市","year":"2023","quarter":"1","month":"1月","sales":"2000","gift":"1000","proportion":"10%"}, - {"region":"华西","province":"太原市","year":"2023","quarter":"1","month":"2月","sales":"2000","gift":"1000","proportion":"10%"}, - {"region":"华西","province":"太原市","year":"2023","quarter":"1","month":"3月","sales":"2000","gift":"1000","proportion":"10%"}, - {"region":"华西","province":"太原市","year":"2023","quarter":"2","month":"1月","sales":"3000","gift":"2000","proportion":"10%"}, - {"region":"华西","province":"太原市","year":"2023","quarter":"2","month":"2月","sales":"3000","gift":"2000","proportion":"10%"}, - {"region":"华西","province":"太原市","year":"2023","quarter":"2","month":"3月","sales":"3000","gift":"2000","proportion":"10%"} - ] -}', '', NULL, NULL); -INSERT INTO "public"."jimu_report_db" VALUES ('924614453609201664', '924614453466595328', '', NULL, '2024-03-04 20:55:03', '2024-03-04 20:55:03', 'tm', 'tm', '1', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'https://api.jeecg.com/mock/26/tiaoma1', '0', '0', '0', '', NULL, NULL, NULL, NULL, NULL); -INSERT INTO "public"."jimu_report_db" VALUES ('930045149249585152', '928540173805338624', 'admin', 'admin', '2024-03-20 10:18:16', '2024-03-20 10:18:16', 'receipt', '顾客/业主收费明细', '1', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'https://api.jeecg.com/mock/26/receipt?id=${id}', '0', '0', '0', '', NULL, '', '', NULL, NULL); -INSERT INTO "public"."jimu_report_db" VALUES ('930241691461926912', '928540173805338624', 'admin', 'admin', '2024-03-20 10:07:37', '2024-03-20 10:07:37', 'receiptProject', '顾客/业主收费项目明细', '1', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'https://api.jeecg.com/mock/26/receiptProject?customId=${customId}', '0', '1', '0', '', NULL, '', '', NULL, NULL); -INSERT INTO "public"."jimu_report_db" VALUES ('934653343564922880', '934653264347103232', 'admin', NULL, '2024-04-01 13:45:32', '2024-04-01 13:45:32', 'aa', 'a', '0', NULL, 'select * from demo', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '1', '1', '', 'mysql', '', '', NULL, NULL); -INSERT INTO "public"."jimu_report_db" VALUES ('938680893609967616', '938680635597357056', 'admin', NULL, '2024-04-12 16:29:35', '2024-04-12 16:29:35', 'zongxdata', '分组纵向数据1', '1', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'https://api.jeecg.com/mock/26/baobiao/ygtj_1712909288392', '0', '1', '0', '', NULL, '', '', NULL, NULL); -INSERT INTO "public"."jimu_report_db" VALUES ('94bcd8202bc6bc467efd0d679dadd7bb', '1338370016550195200', 'admin', NULL, '2021-02-02 19:27:31', '2021-02-02 19:27:31', 'tm', 'tm', '1', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'https://api.jeecg.com/mock/26/tiaoma1', '0', '0', '0', '', NULL, NULL, NULL, NULL, NULL); -INSERT INTO "public"."jimu_report_db" VALUES ('9b75c161322e0b7e29b3ffc84239a72c', '1cd9d574d0c42f3915046dc61d9f33bd', 'admin', NULL, '2020-12-17 17:13:21', '2020-12-17 19:50:14', 'xsjd', '销售进度', '1', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'https://api.jeecg.com/mock/26/xsjd', '0', '0', '0', '', NULL, NULL, NULL, NULL, NULL); -INSERT INTO "public"."jimu_report_db" VALUES ('9b7d28336b01f9a6b1a613957c3d7cda', '1338769064067076098', 'admin', NULL, '2021-02-02 19:12:55', '2021-02-02 19:12:55', 'pop', 'pop', '0', NULL, 'select * from rep_demo_dxtj', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '1', '0', '', 'MYSQL', NULL, NULL, NULL, NULL); -INSERT INTO "public"."jimu_report_db" VALUES ('e4cec9ff15bc0ea42f536a442a6d1335', '961455b47c0b86dc961e90b5893bff05', 'admin', NULL, '2021-01-04 20:42:17', '2021-01-04 20:42:17', 'jianpiao', 'jianpiao', '0', NULL, 'select * from rep_demo_jianpiao where s_id=''${id}''', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '1', '1', NULL, 'MYSQL', NULL, NULL, NULL, NULL); -INSERT INTO "public"."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, 'https://api.jeecg.com/mock/26/baobiao/shixi', '0', '0', '0', '', NULL, NULL, NULL, NULL, NULL); -INSERT INTO "public"."jimu_report_db" VALUES ('fb70a91730f087f8023afd88d24f9697', '1cd9d574d0c42f3915046dc61d9f33bd', 'admin', NULL, '2020-12-17 19:50:14', '2020-12-17 19:50:14', 'zhexian', 'zhexian', '1', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'https://api.jeecg.com/mock/26/zhexian', '0', '1', '1', '', NULL, NULL, NULL, NULL, NULL); - --- ---------------------------- --- Table structure for jimu_report_db_field --- ---------------------------- -DROP TABLE IF EXISTS "public"."jimu_report_db_field"; -CREATE TABLE "public"."jimu_report_db_field" ( - "id" varchar(36) COLLATE "pg_catalog"."default" NOT NULL, - "create_by" varchar(50) COLLATE "pg_catalog"."default", - "create_time" timestamp(6), - "update_by" varchar(50) COLLATE "pg_catalog"."default", - "update_time" timestamp(6), - "jimu_report_db_id" varchar(32) COLLATE "pg_catalog"."default", - "field_name" varchar(80) COLLATE "pg_catalog"."default", - "field_name_physics" varchar(200) COLLATE "pg_catalog"."default", - "field_text" varchar(50) COLLATE "pg_catalog"."default", - "widget_type" varchar(50) COLLATE "pg_catalog"."default", - "widget_width" int4, - "order_num" int4, - "search_flag" int4, - "search_mode" int4, - "dict_code" varchar(255) COLLATE "pg_catalog"."default", - "search_value" varchar(100) COLLATE "pg_catalog"."default", - "search_format" varchar(50) COLLATE "pg_catalog"."default", - "ext_json" text COLLATE "pg_catalog"."default" -)TABLESPACE "stas" -; -COMMENT ON COLUMN "public"."jimu_report_db_field"."id" IS 'id'; -COMMENT ON COLUMN "public"."jimu_report_db_field"."create_by" IS '创建人登录名称'; -COMMENT ON COLUMN "public"."jimu_report_db_field"."create_time" IS '创建日期'; -COMMENT ON COLUMN "public"."jimu_report_db_field"."update_by" IS '更新人登录名称'; -COMMENT ON COLUMN "public"."jimu_report_db_field"."update_time" IS '更新日期'; -COMMENT ON COLUMN "public"."jimu_report_db_field"."jimu_report_db_id" IS '数据源ID'; -COMMENT ON COLUMN "public"."jimu_report_db_field"."field_name" IS '字段名'; -COMMENT ON COLUMN "public"."jimu_report_db_field"."field_name_physics" IS '物理字段名(文件数据集使用,存的是excel的字段标题)'; -COMMENT ON COLUMN "public"."jimu_report_db_field"."field_text" IS '字段文本'; -COMMENT ON COLUMN "public"."jimu_report_db_field"."widget_type" IS '控件类型'; -COMMENT ON COLUMN "public"."jimu_report_db_field"."widget_width" IS '控件宽度'; -COMMENT ON COLUMN "public"."jimu_report_db_field"."order_num" IS '排序'; -COMMENT ON COLUMN "public"."jimu_report_db_field"."search_flag" IS '查询标识0否1是 默认0'; -COMMENT ON COLUMN "public"."jimu_report_db_field"."search_mode" IS '查询模式1简单2范围'; -COMMENT ON COLUMN "public"."jimu_report_db_field"."dict_code" IS '字典编码支持从表中取数据'; -COMMENT ON COLUMN "public"."jimu_report_db_field"."search_value" IS '查询默认值'; -COMMENT ON COLUMN "public"."jimu_report_db_field"."search_format" IS '查询时间格式化表达式'; -COMMENT ON COLUMN "public"."jimu_report_db_field"."ext_json" IS '参数配置'; - --- ---------------------------- --- Records of jimu_report_db_field --- ---------------------------- -INSERT INTO "public"."jimu_report_db_field" VALUES ('014179e260e0adf1706c616a3ad6e552', NULL, '2021-01-08 16:10:28', NULL, NULL, '7b20679054449c554cde856ef24126ab', 'main_income', NULL, 'main_income', 'String', NULL, 2, 0, NULL, NULL, NULL, NULL, NULL); -INSERT INTO "public"."jimu_report_db_field" VALUES ('01cb1f61f836aae43bca333dbaf293be', NULL, '2021-01-11 14:38:14', NULL, NULL, '1317006713165049858', 'zhuanye', NULL, 'zhuanye', 'String', NULL, 4, 0, NULL, NULL, NULL, NULL, NULL); -INSERT INTO "public"."jimu_report_db_field" VALUES ('0680555456f0e579a0065c4ca5dd8d06', NULL, '2021-01-13 11:59:53', NULL, NULL, '1316997232402231298', 'id', NULL, 'id', 'String', NULL, 1, 0, NULL, NULL, NULL, NULL, NULL); -INSERT INTO "public"."jimu_report_db_field" VALUES ('08a3043298245b914eec1444906f6acd', NULL, '2021-02-02 19:13:46', NULL, NULL, '1338756341933543425', 'name', NULL, '姓名', 'string', NULL, 2, 1, NULL, '', NULL, NULL, NULL); -INSERT INTO "public"."jimu_report_db_field" VALUES ('08e22bbf63e81198c0d2585dce8ee8f9', NULL, '2021-02-02 19:10:15', NULL, NULL, '9b7d28336b01f9a6b1a613957c3d7cda', 'jperson', NULL, 'jperson', 'String', NULL, 9, 0, NULL, NULL, NULL, NULL, NULL); -INSERT INTO "public"."jimu_report_db_field" VALUES ('0c82931edb766ad89ead9e98a998d43f', NULL, '2021-01-11 14:38:14', NULL, NULL, '1317006713165049858', 'kdate', NULL, 'kdate', 'String', NULL, 1, 0, NULL, NULL, NULL, NULL, NULL); -INSERT INTO "public"."jimu_report_db_field" VALUES ('0c9f65f5f754f1251070f51a2a19905d', NULL, '2021-02-02 19:30:23', NULL, NULL, '629609c4d540cb4675e9064af8955296', 'hname', NULL, 'hname', 'String', NULL, 2, 0, NULL, NULL, NULL, NULL, NULL); -INSERT INTO "public"."jimu_report_db_field" VALUES ('0e47a8aa98116f10c53c3a366b9c2324', NULL, '2021-02-02 19:23:18', NULL, NULL, '94bcd8202bc6bc467efd0d679dadd7bb', 'dizhi', NULL, 'dizhi', 'String', NULL, 21, 0, NULL, NULL, NULL, NULL, NULL); -INSERT INTO "public"."jimu_report_db_field" VALUES ('0fb03c8e2330e051564f3dd1de54512f', NULL, '2021-01-11 14:38:14', NULL, NULL, '1317006713165049858', 'jstudent', NULL, 'jstudent', 'String', NULL, 3, 0, NULL, NULL, NULL, NULL, NULL); -INSERT INTO "public"."jimu_report_db_field" VALUES ('1036890631694286848', 'admin', '2025-01-08 16:40:01', NULL, NULL, '1036890631451017216', 'id', NULL, 'id', 'String', NULL, 0, NULL, NULL, NULL, NULL, NULL, NULL); -INSERT INTO "public"."jimu_report_db_field" VALUES ('1036890631740424192', 'admin', '2025-01-08 16:40:01', NULL, NULL, '1036890631451017216', 'log_type', NULL, 'log_type', 'String', NULL, 1, NULL, NULL, NULL, NULL, NULL, NULL); -INSERT INTO "public"."jimu_report_db_field" VALUES ('1036890631778172928', 'admin', '2025-01-08 16:40:01', NULL, NULL, '1036890631451017216', 'log_content', NULL, 'log_content', 'String', NULL, 2, NULL, NULL, NULL, NULL, NULL, NULL); -INSERT INTO "public"."jimu_report_db_field" VALUES ('1036890631803338752', 'admin', '2025-01-08 16:40:01', NULL, NULL, '1036890631451017216', 'operate_type', NULL, 'operate_type', 'String', NULL, 3, NULL, NULL, NULL, NULL, NULL, NULL); -INSERT INTO "public"."jimu_report_db_field" VALUES ('1036890631832698880', 'admin', '2025-01-08 16:40:01', NULL, NULL, '1036890631451017216', 'userid', NULL, 'userid', 'String', NULL, 4, NULL, NULL, NULL, NULL, NULL, NULL); -INSERT INTO "public"."jimu_report_db_field" VALUES ('1036890631874641920', 'admin', '2025-01-08 16:40:01', NULL, NULL, '1036890631451017216', 'username', NULL, 'username', 'String', NULL, 5, NULL, NULL, NULL, NULL, NULL, NULL); -INSERT INTO "public"."jimu_report_db_field" VALUES ('1036890631904002048', 'admin', '2025-01-08 16:40:01', NULL, NULL, '1036890631451017216', 'ip', NULL, 'ip', 'String', NULL, 6, NULL, NULL, NULL, NULL, NULL, NULL); -INSERT INTO "public"."jimu_report_db_field" VALUES ('1036890631933362176', 'admin', '2025-01-08 16:40:01', NULL, NULL, '1036890631451017216', 'method', NULL, 'method', 'String', NULL, 7, NULL, NULL, NULL, NULL, NULL, NULL); -INSERT INTO "public"."jimu_report_db_field" VALUES ('1036890631962722304', 'admin', '2025-01-08 16:40:01', NULL, NULL, '1036890631451017216', 'request_url', NULL, 'request_url', 'String', NULL, 8, NULL, NULL, NULL, NULL, NULL, NULL); -INSERT INTO "public"."jimu_report_db_field" VALUES ('1036890632042414080', 'admin', '2025-01-08 16:40:01', NULL, NULL, '1036890631451017216', 'request_param', NULL, 'request_param', 'String', NULL, 9, NULL, NULL, NULL, NULL, NULL, NULL); -INSERT INTO "public"."jimu_report_db_field" VALUES ('1036890632063385600', 'admin', '2025-01-08 16:40:01', NULL, NULL, '1036890631451017216', 'request_type', NULL, 'request_type', 'String', NULL, 10, NULL, NULL, NULL, NULL, NULL, NULL); -INSERT INTO "public"."jimu_report_db_field" VALUES ('1036890632084357120', 'admin', '2025-01-08 16:40:01', NULL, NULL, '1036890631451017216', 'cost_time', NULL, 'cost_time', 'String', NULL, 11, NULL, NULL, NULL, NULL, NULL, NULL); -INSERT INTO "public"."jimu_report_db_field" VALUES ('1036890632105328640', 'admin', '2025-01-08 16:40:01', NULL, NULL, '1036890631451017216', 'create_by', NULL, 'create_by', 'String', NULL, 12, NULL, NULL, NULL, NULL, NULL, NULL); -INSERT INTO "public"."jimu_report_db_field" VALUES ('1036890632134688768', 'admin', '2025-01-08 16:40:01', NULL, NULL, '1036890631451017216', 'create_time', NULL, 'create_time', 'String', NULL, 13, NULL, NULL, NULL, NULL, NULL, NULL); -INSERT INTO "public"."jimu_report_db_field" VALUES ('1036890632155660288', 'admin', '2025-01-08 16:40:01', NULL, NULL, '1036890631451017216', 'update_by', NULL, 'update_by', 'String', NULL, 14, NULL, NULL, NULL, NULL, NULL, NULL); -INSERT INTO "public"."jimu_report_db_field" VALUES ('1036890632180826112', 'admin', '2025-01-08 16:40:01', NULL, NULL, '1036890631451017216', 'update_time', NULL, 'update_time', 'String', NULL, 15, NULL, NULL, NULL, NULL, NULL, NULL); -INSERT INTO "public"."jimu_report_db_field" VALUES ('1036890632214380544', 'admin', '2025-01-08 16:40:01', NULL, NULL, '1036890631451017216', 'tenant_id', NULL, 'tenant_id', 'String', NULL, 16, NULL, NULL, NULL, NULL, NULL, NULL); -INSERT INTO "public"."jimu_report_db_field" VALUES ('1036890632231157760', 'admin', '2025-01-08 16:40:01', NULL, NULL, '1036890631451017216', 'client_type', NULL, 'client_type', 'String', NULL, 17, NULL, NULL, NULL, NULL, NULL, NULL); -INSERT INTO "public"."jimu_report_db_field" VALUES ('10e61155dcf655d7843ebc01cc90c8b1', NULL, '2021-01-08 16:10:28', NULL, NULL, '7b20679054449c554cde856ef24126ab', 'total', NULL, 'total', 'String', NULL, 3, 0, NULL, NULL, NULL, NULL, NULL); -INSERT INTO "public"."jimu_report_db_field" VALUES ('115c1ac01462ca1fbecb3c0a55218395', NULL, '2021-01-08 16:10:28', NULL, NULL, '7b20679054449c554cde856ef24126ab', 'his_highest', NULL, 'his_highest', 'String', NULL, 6, 0, NULL, NULL, NULL, NULL, NULL); -INSERT INTO "public"."jimu_report_db_field" VALUES ('123772e3abf28b00bd43bf81a824b525', NULL, '2021-02-02 19:23:18', NULL, NULL, '94bcd8202bc6bc467efd0d679dadd7bb', 'slyy', NULL, 'slyy', 'String', NULL, 11, 0, NULL, NULL, NULL, NULL, NULL); -INSERT INTO "public"."jimu_report_db_field" VALUES ('1272834907562864641', NULL, '2020-06-16 18:14:25', NULL, NULL, '1272834687525482497', 'id', NULL, 'id', 'string', NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL); -INSERT INTO "public"."jimu_report_db_field" VALUES ('1272834907567058946', NULL, '2020-06-16 18:14:25', NULL, NULL, '1272834687525482497', 'bnum', NULL, 'bnum', 'string', NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL); -INSERT INTO "public"."jimu_report_db_field" VALUES ('1272834907571253250', NULL, '2020-06-16 18:14:25', NULL, NULL, '1272834687525482497', 'ftime', NULL, 'ftime', 'string', NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL); -INSERT INTO "public"."jimu_report_db_field" VALUES ('1272834907571253251', NULL, '2020-06-16 18:14:25', NULL, NULL, '1272834687525482497', 'sfkong', NULL, 'sfkong', 'string', NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL); -INSERT INTO "public"."jimu_report_db_field" VALUES ('1272834907571253252', NULL, '2020-06-16 18:14:25', NULL, NULL, '1272834687525482497', 'kaishi', NULL, 'kaishi', 'string', NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL); -INSERT INTO "public"."jimu_report_db_field" VALUES ('1272834907571253253', NULL, '2020-06-16 18:14:25', NULL, NULL, '1272834687525482497', 'jieshu', NULL, 'jieshu', 'string', NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL); -INSERT INTO "public"."jimu_report_db_field" VALUES ('1272834907571253254', NULL, '2020-06-16 18:14:25', NULL, NULL, '1272834687525482497', 'hezairen', NULL, 'hezairen', 'string', NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL); -INSERT INTO "public"."jimu_report_db_field" VALUES ('1272834907571253255', NULL, '2020-06-16 18:14:25', NULL, NULL, '1272834687525482497', 'jpnum', NULL, 'jpnum', 'string', NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL); -INSERT INTO "public"."jimu_report_db_field" VALUES ('1272834907575447554', NULL, '2020-06-16 18:14:25', NULL, NULL, '1272834687525482497', 'shihelv', NULL, 'shihelv', 'string', NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL); -INSERT INTO "public"."jimu_report_db_field" VALUES ('1283957016175415297', NULL, '2020-07-17 10:49:42', NULL, NULL, '1283957016150249473', 'yphone', NULL, 'yphone', NULL, NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL); -INSERT INTO "public"."jimu_report_db_field" VALUES ('1283957016183803906', NULL, '2020-07-17 10:49:42', NULL, NULL, '1283957016150249473', 'yzhenliao', NULL, 'yzhenliao', NULL, NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL); -INSERT INTO "public"."jimu_report_db_field" VALUES ('1283957016187998209', NULL, '2020-07-17 10:49:42', NULL, NULL, '1283957016150249473', 'ysex', NULL, 'ysex', NULL, NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL); -INSERT INTO "public"."jimu_report_db_field" VALUES ('1283957016192192513', NULL, '2020-07-17 10:49:42', NULL, NULL, '1283957016150249473', 'danwei', NULL, 'danwei', NULL, NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL); -INSERT INTO "public"."jimu_report_db_field" VALUES ('1283957016196386818', NULL, '2020-07-17 10:49:42', NULL, NULL, '1283957016150249473', 'kdata', NULL, 'kdata', NULL, NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL); -INSERT INTO "public"."jimu_report_db_field" VALUES ('1283957016204775425', NULL, '2020-07-17 10:49:42', NULL, NULL, '1283957016150249473', 'yname', NULL, 'yname', NULL, NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL); -INSERT INTO "public"."jimu_report_db_field" VALUES ('1283957016208969729', NULL, '2020-07-17 10:49:42', NULL, NULL, '1283957016150249473', 'yprice', NULL, 'yprice', NULL, NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL); -INSERT INTO "public"."jimu_report_db_field" VALUES ('1283957016213164033', NULL, '2020-07-17 10:49:42', NULL, NULL, '1283957016150249473', 'ytotal', NULL, 'ytotal', NULL, NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL); -INSERT INTO "public"."jimu_report_db_field" VALUES ('1283957016217358337', NULL, '2020-07-17 10:49:42', NULL, NULL, '1283957016150249473', 'yishe', NULL, 'yishe', NULL, NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL); -INSERT INTO "public"."jimu_report_db_field" VALUES ('1283957016221552641', NULL, '2020-07-17 10:49:42', NULL, NULL, '1283957016150249473', 'yizhu', NULL, 'yizhu', NULL, NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL); -INSERT INTO "public"."jimu_report_db_field" VALUES ('1283957016225746946', NULL, '2020-07-17 10:49:42', NULL, NULL, '1283957016150249473', 'yage', NULL, 'yage', NULL, NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL); -INSERT INTO "public"."jimu_report_db_field" VALUES ('1283957016229941249', NULL, '2020-07-17 10:49:42', NULL, NULL, '1283957016150249473', 'yjieguo', NULL, 'yjieguo', NULL, NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL); -INSERT INTO "public"."jimu_report_db_field" VALUES ('1285150155649130497', NULL, '2020-07-20 17:50:49', NULL, NULL, '1284070508744257537', 'xtype', NULL, 'xtype', 'string', NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL); -INSERT INTO "public"."jimu_report_db_field" VALUES ('1285150155686879234', NULL, '2020-07-20 17:50:49', NULL, NULL, '1284070508744257537', 'danyuan', NULL, 'danyuan', 'string', NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL); -INSERT INTO "public"."jimu_report_db_field" VALUES ('1285150155691073538', NULL, '2020-07-20 17:50:49', NULL, NULL, '1284070508744257537', 'chanquan', NULL, 'chanquan', 'string', NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL); -INSERT INTO "public"."jimu_report_db_field" VALUES ('1285150155695267841', NULL, '2020-07-20 17:50:49', NULL, NULL, '1284070508744257537', 'zhuzhi', NULL, 'zhuzhi', 'string', NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL); -INSERT INTO "public"."jimu_report_db_field" VALUES ('1285150155699462145', NULL, '2020-07-20 17:50:49', NULL, NULL, '1284070508744257537', 'fujian', NULL, 'fujian', 'string', NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL); -INSERT INTO "public"."jimu_report_db_field" VALUES ('1285150155707850754', NULL, '2020-07-20 17:50:49', NULL, NULL, '1284070508744257537', 'didian', NULL, 'didian', 'string', NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL); -INSERT INTO "public"."jimu_report_db_field" VALUES ('1285150155707850755', NULL, '2020-07-20 17:50:49', NULL, NULL, '1284070508744257537', 'type', NULL, 'type', 'string', NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL); -INSERT INTO "public"."jimu_report_db_field" VALUES ('1285150155712045058', NULL, '2020-07-20 17:50:49', NULL, NULL, '1284070508744257537', 'suoyou', NULL, 'suoyou', 'string', NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL); -INSERT INTO "public"."jimu_report_db_field" VALUES ('1285150155716239361', NULL, '2020-07-20 17:50:49', NULL, NULL, '1284070508744257537', 'name', NULL, 'name', 'string', NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL); -INSERT INTO "public"."jimu_report_db_field" VALUES ('1285150155716239362', NULL, '2020-07-20 17:50:49', NULL, NULL, '1284070508744257537', 'bianhao', NULL, 'bianhao', 'string', NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL); -INSERT INTO "public"."jimu_report_db_field" VALUES ('1285150155720433666', NULL, '2020-07-20 17:50:49', NULL, NULL, '1284070508744257537', 'yname', NULL, 'yname', 'string', NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL); -INSERT INTO "public"."jimu_report_db_field" VALUES ('1285150155720433667', NULL, '2020-07-20 17:50:49', NULL, NULL, '1284070508744257537', 'riqi', NULL, 'riqi', 'string', NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL); -INSERT INTO "public"."jimu_report_db_field" VALUES ('1285150155724627969', NULL, '2020-07-20 17:50:49', NULL, NULL, '1284070508744257537', 'beizhu', NULL, 'beizhu', 'string', NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL); -INSERT INTO "public"."jimu_report_db_field" VALUES ('1285150155728822274', NULL, '2020-07-20 17:50:49', NULL, NULL, '1284070508744257537', 'time', NULL, 'time', 'string', NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL); -INSERT INTO "public"."jimu_report_db_field" VALUES ('1285150155728822275', NULL, '2020-07-20 17:50:49', NULL, NULL, '1284070508744257537', 'mianji', NULL, 'mianji', 'string', NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL); -INSERT INTO "public"."jimu_report_db_field" VALUES ('1285159608326889474', 'admin', '2021-04-01 02:44:48', NULL, NULL, '1285157606524002305', 'fsex', NULL, 'fsex', 'string', NULL, NULL, 0, NULL, 'sex', NULL, NULL, NULL); -INSERT INTO "public"."jimu_report_db_field" VALUES ('1285159608335278082', 'admin', '2021-04-01 02:44:48', NULL, NULL, '1285157606524002305', 'fname', NULL, 'fname', 'string', NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL); -INSERT INTO "public"."jimu_report_db_field" VALUES ('1285159608339472385', 'admin', '2021-04-01 02:44:48', NULL, NULL, '1285157606524002305', 'shiqing', NULL, 'shiqing', 'string', NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL); -INSERT INTO "public"."jimu_report_db_field" VALUES ('1285159608339472386', 'admin', '2021-04-01 02:44:48', NULL, NULL, '1285157606524002305', 'pname', NULL, 'pname', 'string', NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL); -INSERT INTO "public"."jimu_report_db_field" VALUES ('1285159608339472387', 'admin', '2021-04-01 02:44:48', NULL, NULL, '1285157606524002305', 'zhuzhi', NULL, 'zhuzhi', 'string', NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL); -INSERT INTO "public"."jimu_report_db_field" VALUES ('1285159608339472388', 'admin', '2021-04-01 02:44:48', NULL, NULL, '1285157606524002305', 'gdata', NULL, 'gdata', 'string', NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL); -INSERT INTO "public"."jimu_report_db_field" VALUES ('1285159608343666690', 'admin', '2021-04-01 02:44:48', NULL, NULL, '1285157606524002305', 'cdata', NULL, 'cdata', 'string', NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL); -INSERT INTO "public"."jimu_report_db_field" VALUES ('1285164420749664258', NULL, '2020-07-20 18:47:30', NULL, NULL, '1285164420728692737', 'shiqing', NULL, 'shiqing', 'string', NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL); -INSERT INTO "public"."jimu_report_db_field" VALUES ('1285164420753858561', NULL, '2020-07-20 18:47:30', NULL, NULL, '1285164420728692737', 'name', NULL, 'name', 'string', NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL); -INSERT INTO "public"."jimu_report_db_field" VALUES ('1285164420758052866', NULL, '2020-07-20 18:47:30', NULL, NULL, '1285164420728692737', 'gdata', NULL, 'gdata', 'string', NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL); -INSERT INTO "public"."jimu_report_db_field" VALUES ('1285164420758052867', NULL, '2020-07-20 18:47:30', NULL, NULL, '1285164420728692737', 'value', NULL, 'value', 'string', NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL); -INSERT INTO "public"."jimu_report_db_field" VALUES ('1285164420758052868', NULL, '2020-07-20 18:47:30', NULL, NULL, '1285164420728692737', 'percent', NULL, 'percent', 'string', NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL); -INSERT INTO "public"."jimu_report_db_field" VALUES ('1285164420762247169', NULL, '2020-07-20 18:47:30', NULL, NULL, '1285164420728692737', 'tdata', NULL, 'tdata', 'string', NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL); -INSERT INTO "public"."jimu_report_db_field" VALUES ('1285178919124803585', NULL, '2020-07-20 19:45:06', NULL, NULL, '1285178919099637762', 'ktime', NULL, 'ktime', 'string', NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL); -INSERT INTO "public"."jimu_report_db_field" VALUES ('1285178919133192193', NULL, '2020-07-20 19:45:06', NULL, NULL, '1285178919099637762', 'danwei', NULL, 'danwei', 'string', NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL); -INSERT INTO "public"."jimu_report_db_field" VALUES ('1285178919133192194', NULL, '2020-07-20 19:45:06', NULL, NULL, '1285178919099637762', 'wtime', NULL, 'wtime', 'string', NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL); -INSERT INTO "public"."jimu_report_db_field" VALUES ('1285178919133192195', NULL, '2020-07-20 19:45:06', NULL, NULL, '1285178919099637762', 'yusuan', NULL, 'yusuan', 'string', NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL); -INSERT INTO "public"."jimu_report_db_field" VALUES ('1285178919133192196', NULL, '2020-07-20 19:45:06', NULL, NULL, '1285178919099637762', 'dshenhe', NULL, 'dshenhe', 'string', NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL); -INSERT INTO "public"."jimu_report_db_field" VALUES ('1285178919133192197', NULL, '2020-07-20 19:45:06', NULL, NULL, '1285178919099637762', 'zhuren', NULL, 'zhuren', 'string', NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL); -INSERT INTO "public"."jimu_report_db_field" VALUES ('1285178919137386498', NULL, '2020-07-20 19:45:06', NULL, NULL, '1285178919099637762', 'neirong', NULL, 'neirong', 'string', NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL); -INSERT INTO "public"."jimu_report_db_field" VALUES ('1285178919137386499', NULL, '2020-07-20 19:45:06', NULL, NULL, '1285178919099637762', 'yijian', NULL, 'yijian', 'string', NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL); -INSERT INTO "public"."jimu_report_db_field" VALUES ('1285178919137386500', NULL, '2020-07-20 19:45:06', NULL, NULL, '1285178919099637762', 'time1', NULL, 'time1', 'string', NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL); -INSERT INTO "public"."jimu_report_db_field" VALUES ('1285178919137386501', NULL, '2020-07-20 19:45:06', NULL, NULL, '1285178919099637762', 'time2', NULL, 'time2', 'string', NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL); -INSERT INTO "public"."jimu_report_db_field" VALUES ('1285178919137386502', NULL, '2020-07-20 19:45:06', NULL, NULL, '1285178919099637762', 'time3', NULL, 'time3', 'string', NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL); -INSERT INTO "public"."jimu_report_db_field" VALUES ('1285178919141580801', NULL, '2020-07-20 19:45:06', NULL, NULL, '1285178919099637762', 'time4', NULL, 'time4', 'string', NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL); -INSERT INTO "public"."jimu_report_db_field" VALUES ('1285178919141580802', NULL, '2020-07-20 19:45:06', NULL, NULL, '1285178919099637762', 'pingjia', NULL, 'pingjia', 'string', NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL); -INSERT INTO "public"."jimu_report_db_field" VALUES ('1285178919141580803', NULL, '2020-07-20 19:45:06', NULL, NULL, '1285178919099637762', 'name', NULL, 'name', 'string', NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL); -INSERT INTO "public"."jimu_report_db_field" VALUES ('1285178919141580804', NULL, '2020-07-20 19:45:06', NULL, NULL, '1285178919099637762', 'bianhao', NULL, 'bianhao', 'string', NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL); -INSERT INTO "public"."jimu_report_db_field" VALUES ('1285178919141580805', NULL, '2020-07-20 19:45:06', NULL, NULL, '1285178919099637762', 'zongjie', NULL, 'zongjie', 'string', NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL); -INSERT INTO "public"."jimu_report_db_field" VALUES ('1285178919145775105', NULL, '2020-07-20 19:45:06', NULL, NULL, '1285178919099637762', 'nengli', NULL, 'nengli', 'string', NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL); -INSERT INTO "public"."jimu_report_db_field" VALUES ('1285178919145775106', NULL, '2020-07-20 19:45:06', NULL, NULL, '1285178919099637762', 'time', NULL, 'time', 'string', NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL); -INSERT INTO "public"."jimu_report_db_field" VALUES ('1288038655394324482', 'admin', '2021-04-01 03:09:40', NULL, NULL, '1288038655293661186', 'ctotal', NULL, '库存量', 'string', NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL); -INSERT INTO "public"."jimu_report_db_field" VALUES ('1288038655402713090', 'admin', '2021-04-01 03:09:40', NULL, NULL, '1288038655293661186', 'cname', NULL, '产品名称', 'string', NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL); -INSERT INTO "public"."jimu_report_db_field" VALUES ('1288038655406907393', 'admin', '2021-04-01 03:09:40', NULL, NULL, '1288038655293661186', 'cprice', NULL, '单价', 'string', NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL); -INSERT INTO "public"."jimu_report_db_field" VALUES ('1288038655411101697', 'admin', '2021-04-01 03:09:40', NULL, NULL, '1288038655293661186', 'dtotal', NULL, '订购量', 'string', NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL); -INSERT INTO "public"."jimu_report_db_field" VALUES ('1288038655411101698', 'admin', '2021-04-01 03:09:40', NULL, NULL, '1288038655293661186', 'tp', NULL, '库存总值', 'string', NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL); -INSERT INTO "public"."jimu_report_db_field" VALUES ('1288038655415296002', 'admin', '2021-04-01 03:09:40', NULL, NULL, '1288038655293661186', 'ztotal', NULL, '二次订购量', 'string', NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL); -INSERT INTO "public"."jimu_report_db_field" VALUES ('1288038655415296003', 'admin', '2021-04-01 03:09:40', NULL, NULL, '1288038655293661186', 'cnum', NULL, '产品数量', 'string', NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL); -INSERT INTO "public"."jimu_report_db_field" VALUES ('1290104038439886849', NULL, '2020-08-03 09:55:46', NULL, NULL, '1290104038414721025', 'id', NULL, 'id', 'string', NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL); -INSERT INTO "public"."jimu_report_db_field" VALUES ('1290104038448275458', NULL, '2020-08-03 09:55:46', NULL, NULL, '1290104038414721025', 'gname', NULL, 'gname', 'string', NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL); -INSERT INTO "public"."jimu_report_db_field" VALUES ('1290104038448275459', NULL, '2020-08-03 09:55:46', NULL, NULL, '1290104038414721025', 'gdata', NULL, 'gdata', 'string', NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL); -INSERT INTO "public"."jimu_report_db_field" VALUES ('1290104038448275460', NULL, '2020-08-03 09:55:46', NULL, NULL, '1290104038414721025', 'tdata', NULL, 'tdata', 'string', NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL); -INSERT INTO "public"."jimu_report_db_field" VALUES ('1290104038452469761', NULL, '2020-08-03 09:55:46', NULL, NULL, '1290104038414721025', 'didian', NULL, 'didian', 'string', NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL); -INSERT INTO "public"."jimu_report_db_field" VALUES ('1290104038452469762', NULL, '2020-08-03 09:55:46', NULL, NULL, '1290104038414721025', 'zhaiyao', NULL, 'zhaiyao', 'string', NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL); -INSERT INTO "public"."jimu_report_db_field" VALUES ('1290104038452469763', NULL, '2020-08-03 09:55:46', NULL, NULL, '1290104038414721025', 'num', NULL, 'num', 'string', NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL); -INSERT INTO "public"."jimu_report_db_field" VALUES ('1317007979534479361', NULL, '2020-10-16 15:42:26', NULL, NULL, '1317007979484147714', 'zmphone', NULL, 'zmphone', 'string', NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL); -INSERT INTO "public"."jimu_report_db_field" VALUES ('1317007979534479362', NULL, '2020-10-16 15:42:26', NULL, NULL, '1317007979484147714', 'jstudent', NULL, 'jstudent', 'string', NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL); -INSERT INTO "public"."jimu_report_db_field" VALUES ('1317007979534479363', NULL, '2020-10-16 15:42:26', NULL, NULL, '1317007979484147714', 'kdate', NULL, 'kdate', 'string', NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL); -INSERT INTO "public"."jimu_report_db_field" VALUES ('1317007979534479364', NULL, '2020-10-16 15:42:26', NULL, NULL, '1317007979484147714', 'jdate', NULL, 'jdate', 'string', NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL); -INSERT INTO "public"."jimu_report_db_field" VALUES ('1317007979534479365', NULL, '2020-10-16 15:42:26', NULL, NULL, '1317007979484147714', 'zmname', NULL, 'zmname', 'string', NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL); -INSERT INTO "public"."jimu_report_db_field" VALUES ('1317009166149218305', NULL, '2020-10-16 15:47:09', NULL, NULL, '1317009166140829698', 'zcname', NULL, 'zcname', 'string', NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL); -INSERT INTO "public"."jimu_report_db_field" VALUES ('1317009166149218306', NULL, '2020-10-16 15:47:09', NULL, NULL, '1317009166140829698', 'danwei', NULL, 'danwei', 'string', NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL); -INSERT INTO "public"."jimu_report_db_field" VALUES ('1317009166149218307', NULL, '2020-10-16 15:47:09', NULL, NULL, '1317009166140829698', 'fdate', NULL, 'fdate', 'string', NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL); -INSERT INTO "public"."jimu_report_db_field" VALUES ('1317009166149218308', NULL, '2020-10-16 15:47:09', NULL, NULL, '1317009166140829698', 'jibie', NULL, 'jibie', 'string', NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL); -INSERT INTO "public"."jimu_report_db_field" VALUES ('1317009166149218309', NULL, '2020-10-16 15:47:09', NULL, NULL, '1317009166140829698', 'beizhu', NULL, 'beizhu', 'string', NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL); -INSERT INTO "public"."jimu_report_db_field" VALUES ('1317013474643144706', NULL, '2020-10-16 16:04:16', NULL, NULL, '1317013474634756097', 'danwei', NULL, 'danwei', 'string', NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL); -INSERT INTO "public"."jimu_report_db_field" VALUES ('1317013474643144707', NULL, '2020-10-16 16:04:16', NULL, NULL, '1317013474634756097', 'phone', NULL, 'phone', 'string', NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL); -INSERT INTO "public"."jimu_report_db_field" VALUES ('1317013474643144708', NULL, '2020-10-16 16:04:16', NULL, NULL, '1317013474634756097', 'name', NULL, 'name', 'string', NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL); -INSERT INTO "public"."jimu_report_db_field" VALUES ('1317013474643144709', NULL, '2020-10-16 16:04:16', NULL, NULL, '1317013474634756097', 'zzmm', NULL, 'zzmm', 'string', NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL); -INSERT INTO "public"."jimu_report_db_field" VALUES ('1317013474643144710', NULL, '2020-10-16 16:04:16', NULL, NULL, '1317013474634756097', 'guanxi', NULL, 'guanxi', 'string', NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL); -INSERT INTO "public"."jimu_report_db_field" VALUES ('1317013474643144711', NULL, '2020-10-16 16:04:16', NULL, NULL, '1317013474634756097', 'age', NULL, 'age', 'string', NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL); -INSERT INTO "public"."jimu_report_db_field" VALUES ('1317015169502670849', NULL, '2020-10-16 16:11:00', NULL, NULL, '1317015169494282241', 'date', NULL, 'date', 'string', NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL); -INSERT INTO "public"."jimu_report_db_field" VALUES ('1317015169502670850', NULL, '2020-10-16 16:11:00', NULL, NULL, '1317015169494282241', 'mingcheng', NULL, 'mingcheng', 'string', NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL); -INSERT INTO "public"."jimu_report_db_field" VALUES ('1317015169502670851', NULL, '2020-10-16 16:11:00', NULL, NULL, '1317015169494282241', 'didian', NULL, 'didian', 'string', NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL); -INSERT INTO "public"."jimu_report_db_field" VALUES ('1331511745855926274', NULL, '2020-11-25 16:15:13', NULL, NULL, '1331511745851731969', 'name', NULL, 'name', 'String', NULL, 1, 0, NULL, NULL, NULL, NULL, NULL); -INSERT INTO "public"."jimu_report_db_field" VALUES ('1331511745855926275', NULL, '2020-11-25 16:15:13', NULL, NULL, '1331511745851731969', 'value', NULL, 'value', 'String', NULL, 2, 0, NULL, NULL, NULL, NULL, NULL); -INSERT INTO "public"."jimu_report_db_field" VALUES ('1331511745855926276', NULL, '2020-11-25 16:15:13', NULL, NULL, '1331511745851731969', 'type', NULL, 'type', 'String', NULL, 3, 0, NULL, NULL, NULL, NULL, NULL); -INSERT INTO "public"."jimu_report_db_field" VALUES ('1331514838215602178', NULL, '2020-11-25 16:27:30', NULL, NULL, '1331514838211407873', 'name', NULL, 'name', 'String', NULL, 1, 0, NULL, NULL, NULL, NULL, NULL); -INSERT INTO "public"."jimu_report_db_field" VALUES ('1331514838215602179', NULL, '2020-11-25 16:27:30', NULL, NULL, '1331514838211407873', 'value', NULL, 'value', 'String', NULL, 2, 0, NULL, NULL, NULL, NULL, NULL); -INSERT INTO "public"."jimu_report_db_field" VALUES ('1331514838215602180', NULL, '2020-11-25 16:27:30', NULL, NULL, '1331514838211407873', 'type', NULL, 'type', 'String', NULL, 3, 0, NULL, NULL, NULL, NULL, NULL); -INSERT INTO "public"."jimu_report_db_field" VALUES ('1331514935032721409', NULL, '2020-11-25 16:27:54', NULL, NULL, '1331514935028527106', 'name', NULL, 'name', 'String', NULL, 1, 0, NULL, NULL, NULL, NULL, NULL); -INSERT INTO "public"."jimu_report_db_field" VALUES ('1331514935032721410', NULL, '2020-11-25 16:27:54', NULL, NULL, '1331514935028527106', 'value', NULL, 'value', 'String', NULL, 2, 0, NULL, NULL, NULL, NULL, NULL); -INSERT INTO "public"."jimu_report_db_field" VALUES ('1331514935032721411', NULL, '2020-11-25 16:27:54', NULL, NULL, '1331514935028527106', 'type', NULL, 'type', 'String', NULL, 3, 0, NULL, NULL, NULL, NULL, NULL); -INSERT INTO "public"."jimu_report_db_field" VALUES ('1331872643539914754', NULL, '2020-11-26 16:09:18', NULL, NULL, '1331872643531526146', 'name', NULL, 'name', 'String', NULL, 1, 0, NULL, NULL, NULL, NULL, NULL); -INSERT INTO "public"."jimu_report_db_field" VALUES ('1331872643539914755', NULL, '2020-11-26 16:09:18', NULL, NULL, '1331872643531526146', 'value', NULL, 'value', 'String', NULL, 2, 0, NULL, NULL, NULL, NULL, NULL); -INSERT INTO "public"."jimu_report_db_field" VALUES ('1331872643539914756', NULL, '2020-11-26 16:09:18', NULL, NULL, '1331872643531526146', 'type', NULL, 'type', 'String', NULL, 3, 0, NULL, NULL, NULL, NULL, NULL); -INSERT INTO "public"."jimu_report_db_field" VALUES ('1331878107560398849', NULL, '2020-11-26 16:31:01', NULL, NULL, '1331878107552010242', 'name', NULL, 'name', 'String', NULL, 1, 0, NULL, NULL, NULL, NULL, NULL); -INSERT INTO "public"."jimu_report_db_field" VALUES ('1331878107560398850', NULL, '2020-11-26 16:31:01', NULL, NULL, '1331878107552010242', 'value', NULL, 'value', 'String', NULL, 2, 0, NULL, NULL, NULL, NULL, NULL); -INSERT INTO "public"."jimu_report_db_field" VALUES ('1331916030229991425', NULL, '2020-11-26 19:01:42', NULL, NULL, '1331916030221602818', 'name', NULL, 'name', 'String', NULL, 1, 0, NULL, NULL, NULL, NULL, NULL); -INSERT INTO "public"."jimu_report_db_field" VALUES ('1331916030229991426', NULL, '2020-11-26 19:01:42', NULL, NULL, '1331916030221602818', 'value', NULL, 'value', 'String', NULL, 2, 0, NULL, NULL, NULL, NULL, NULL); -INSERT INTO "public"."jimu_report_db_field" VALUES ('1331916030229991427', NULL, '2020-11-26 19:01:42', NULL, NULL, '1331916030221602818', 'type', NULL, 'type', 'String', NULL, 3, 0, NULL, NULL, NULL, NULL, NULL); -INSERT INTO "public"."jimu_report_db_field" VALUES ('1331919172480913409', NULL, '2020-11-26 19:14:11', NULL, NULL, '1331919172472524801', 'name', NULL, 'name', 'String', NULL, 1, 0, NULL, NULL, NULL, NULL, NULL); -INSERT INTO "public"."jimu_report_db_field" VALUES ('1331919172480913410', NULL, '2020-11-26 19:14:11', NULL, NULL, '1331919172472524801', 'value', NULL, 'value', 'String', NULL, 2, 0, NULL, NULL, NULL, NULL, NULL); -INSERT INTO "public"."jimu_report_db_field" VALUES ('1331922734942375938', NULL, '2020-11-26 19:28:21', NULL, NULL, '1331922734933987329', 'name', NULL, 'name', 'String', NULL, 1, 0, NULL, NULL, NULL, NULL, NULL); -INSERT INTO "public"."jimu_report_db_field" VALUES ('1331922734942375939', NULL, '2020-11-26 19:28:21', NULL, NULL, '1331922734933987329', 'value', NULL, 'value', 'String', NULL, 2, 0, NULL, NULL, NULL, NULL, NULL); -INSERT INTO "public"."jimu_report_db_field" VALUES ('1331926127605829634', NULL, '2020-11-26 19:41:49', NULL, NULL, '1331926127597441025', 'cjl', NULL, 'cjl', 'String', NULL, 1, 0, NULL, NULL, NULL, NULL, NULL); -INSERT INTO "public"."jimu_report_db_field" VALUES ('1331926127605829635', NULL, '2020-11-26 19:41:49', NULL, NULL, '1331926127597441025', 'cjje', NULL, 'cjje', 'String', NULL, 2, 0, NULL, NULL, NULL, NULL, NULL); -INSERT INTO "public"."jimu_report_db_field" VALUES ('1331926127605829636', NULL, '2020-11-26 19:41:49', NULL, NULL, '1331926127597441025', 'xsmj', NULL, 'xsmj', 'String', NULL, 3, 0, NULL, NULL, NULL, NULL, NULL); -INSERT INTO "public"."jimu_report_db_field" VALUES ('1331926127605829637', NULL, '2020-11-26 19:41:49', NULL, NULL, '1331926127597441025', 'cjjj', NULL, 'cjjj', 'String', NULL, 4, 0, NULL, NULL, NULL, NULL, NULL); -INSERT INTO "public"."jimu_report_db_field" VALUES ('1331926127605829638', NULL, '2020-11-26 19:41:49', NULL, NULL, '1331926127597441025', 'sfyj', NULL, 'sfyj', 'String', NULL, 5, 0, NULL, NULL, NULL, NULL, NULL); -INSERT INTO "public"."jimu_report_db_field" VALUES ('1331926127605829639', NULL, '2020-11-26 19:41:49', NULL, NULL, '1331926127597441025', 'ydkh', NULL, 'ydkh', 'String', NULL, 6, 0, NULL, NULL, NULL, NULL, NULL); -INSERT INTO "public"."jimu_report_db_field" VALUES ('1334440263740825602', NULL, '2020-12-03 18:12:06', NULL, NULL, '1334440263732436994', 'class', NULL, 'class', 'String', NULL, 1, 0, NULL, NULL, NULL, NULL, NULL); -INSERT INTO "public"."jimu_report_db_field" VALUES ('1334440263740825603', NULL, '2020-12-03 18:12:06', NULL, NULL, '1334440263732436994', 'school', NULL, 'school', 'String', NULL, 2, 0, NULL, NULL, NULL, NULL, NULL); -INSERT INTO "public"."jimu_report_db_field" VALUES ('1334440263740825604', NULL, '2020-12-03 18:12:06', NULL, NULL, '1334440263732436994', 'lv', NULL, 'lv', 'String', NULL, 3, 0, NULL, NULL, NULL, NULL, NULL); -INSERT INTO "public"."jimu_report_db_field" VALUES ('1334440263740825605', NULL, '2020-12-03 18:12:06', NULL, NULL, '1334440263732436994', 'renyuan_jy', NULL, 'renyuan_jy', 'String', NULL, 4, 0, NULL, NULL, NULL, NULL, NULL); -INSERT INTO "public"."jimu_report_db_field" VALUES ('1334440263740825606', NULL, '2020-12-03 18:12:06', NULL, NULL, '1334440263732436994', 'richang_jy', NULL, 'richang_jy', 'String', NULL, 5, 0, NULL, NULL, NULL, NULL, NULL); -INSERT INTO "public"."jimu_report_db_field" VALUES ('1334440263740825607', NULL, '2020-12-03 18:12:06', NULL, NULL, '1334440263732436994', 'biaozhun_jy', NULL, 'biaozhun_jy', 'String', NULL, 6, 0, NULL, NULL, NULL, NULL, NULL); -INSERT INTO "public"."jimu_report_db_field" VALUES ('1334440263740825608', NULL, '2020-12-03 18:12:06', NULL, NULL, '1334440263732436994', 'xinxi_jy', NULL, 'xinxi_jy', 'String', NULL, 7, 0, NULL, NULL, NULL, NULL, NULL); -INSERT INTO "public"."jimu_report_db_field" VALUES ('1334440263740825609', NULL, '2020-12-03 18:12:06', NULL, NULL, '1334440263732436994', 'jichubokuan_jy', NULL, 'jichubokuan_jy', 'String', NULL, 8, 0, NULL, NULL, NULL, NULL, NULL); -INSERT INTO "public"."jimu_report_db_field" VALUES ('1334440263740825610', NULL, '2020-12-03 18:12:06', NULL, NULL, '1334440263732436994', 'renyuan_ct', NULL, 'renyuan_ct', 'String', NULL, 9, 0, NULL, NULL, NULL, NULL, NULL); -INSERT INTO "public"."jimu_report_db_field" VALUES ('1334440263740825611', NULL, '2020-12-03 18:12:06', NULL, NULL, '1334440263732436994', 'richang_ct', NULL, 'richang_ct', 'String', NULL, 10, 0, NULL, NULL, NULL, NULL, NULL); -INSERT INTO "public"."jimu_report_db_field" VALUES ('1334440263740825612', NULL, '2020-12-03 18:12:06', NULL, NULL, '1334440263732436994', 'xiangmu_ct', NULL, 'xiangmu_ct', 'String', NULL, 11, 0, NULL, NULL, NULL, NULL, NULL); -INSERT INTO "public"."jimu_report_db_field" VALUES ('1334440263740825613', NULL, '2020-12-03 18:12:06', NULL, NULL, '1334440263732436994', 'jichubokuan_ct', NULL, 'jichubokuan_ct', 'String', NULL, 12, 0, NULL, NULL, NULL, NULL, NULL); -INSERT INTO "public"."jimu_report_db_field" VALUES ('1334440263740825614', NULL, '2020-12-03 18:12:06', NULL, NULL, '1334440263732436994', 'xiangmu_sh', NULL, 'xiangmu_sh', 'String', NULL, 13, 0, NULL, NULL, NULL, NULL, NULL); -INSERT INTO "public"."jimu_report_db_field" VALUES ('1334440263740825615', NULL, '2020-12-03 18:12:06', NULL, NULL, '1334440263732436994', 'jichubokuan_sh', NULL, 'jichubokuan_sh', 'String', NULL, 14, 0, NULL, NULL, NULL, NULL, NULL); -INSERT INTO "public"."jimu_report_db_field" VALUES ('1334440263740825616', NULL, '2020-12-03 18:12:06', NULL, NULL, '1334440263732436994', 'diannao', NULL, 'diannao', 'String', NULL, 15, 0, NULL, NULL, NULL, NULL, NULL); -INSERT INTO "public"."jimu_report_db_field" VALUES ('1334440263740825617', NULL, '2020-12-03 18:12:06', NULL, NULL, '1334440263732436994', 'xiaoyuanwang', NULL, 'xiaoyuanwang', 'String', NULL, 16, 0, NULL, NULL, NULL, NULL, NULL); -INSERT INTO "public"."jimu_report_db_field" VALUES ('1334465135443451905', NULL, '2020-12-03 19:50:56', NULL, NULL, '1334465135435063298', 'diqu', NULL, 'diqu', 'String', NULL, 1, 0, NULL, NULL, NULL, NULL, NULL); -INSERT INTO "public"."jimu_report_db_field" VALUES ('1334465135443451906', NULL, '2020-12-03 19:50:56', NULL, NULL, '1334465135435063298', 'class', NULL, 'class', 'String', NULL, 2, 0, NULL, NULL, NULL, NULL, NULL); -INSERT INTO "public"."jimu_report_db_field" VALUES ('1334465135443451907', NULL, '2020-12-03 19:50:56', NULL, NULL, '1334465135435063298', 'sales_11', NULL, 'sales_11', 'String', NULL, 3, 0, NULL, NULL, NULL, NULL, NULL); -INSERT INTO "public"."jimu_report_db_field" VALUES ('1334465135443451908', NULL, '2020-12-03 19:50:56', NULL, NULL, '1334465135435063298', 'sales_12', NULL, 'sales_12', 'String', NULL, 4, 0, NULL, NULL, NULL, NULL, NULL); -INSERT INTO "public"."jimu_report_db_field" VALUES ('1334465135443451909', NULL, '2020-12-03 19:50:56', NULL, NULL, '1334465135435063298', 'sales_13', NULL, 'sales_13', 'String', NULL, 5, 0, NULL, NULL, NULL, NULL, NULL); -INSERT INTO "public"."jimu_report_db_field" VALUES ('1334465135443451910', NULL, '2020-12-03 19:50:56', NULL, NULL, '1334465135435063298', 'sales_14', NULL, 'sales_14', 'String', NULL, 6, 0, NULL, NULL, NULL, NULL, NULL); -INSERT INTO "public"."jimu_report_db_field" VALUES ('1334465135443451911', NULL, '2020-12-03 19:50:56', NULL, NULL, '1334465135435063298', 'sales_15', NULL, 'sales_15', 'String', NULL, 7, 0, NULL, NULL, NULL, NULL, NULL); -INSERT INTO "public"."jimu_report_db_field" VALUES ('1334465135443451912', NULL, '2020-12-03 19:50:56', NULL, NULL, '1334465135435063298', 'sales_16', NULL, 'sales_16', 'String', NULL, 8, 0, NULL, NULL, NULL, NULL, NULL); -INSERT INTO "public"."jimu_report_db_field" VALUES ('1334465135443451913', NULL, '2020-12-03 19:50:56', NULL, NULL, '1334465135435063298', 'sales_17', NULL, 'sales_17', 'String', NULL, 9, 0, NULL, NULL, NULL, NULL, NULL); -INSERT INTO "public"."jimu_report_db_field" VALUES ('1334465135447646210', NULL, '2020-12-03 19:50:56', NULL, NULL, '1334465135435063298', 'sales_18', NULL, 'sales_18', 'String', NULL, 10, 0, NULL, NULL, NULL, NULL, NULL); -INSERT INTO "public"."jimu_report_db_field" VALUES ('1334465135447646211', NULL, '2020-12-03 19:50:56', NULL, NULL, '1334465135435063298', 'sales_19', NULL, 'sales_19', 'String', NULL, 11, 0, NULL, NULL, NULL, NULL, NULL); -INSERT INTO "public"."jimu_report_db_field" VALUES ('1334465135447646212', NULL, '2020-12-03 19:50:56', NULL, NULL, '1334465135435063298', 'sales_20', NULL, 'sales_20', 'String', NULL, 12, 0, NULL, NULL, NULL, NULL, NULL); -INSERT INTO "public"."jimu_report_db_field" VALUES ('1334465135447646213', NULL, '2020-12-03 19:50:56', NULL, NULL, '1334465135435063298', 'sales_21', NULL, 'sales_21', 'String', NULL, 13, 0, NULL, NULL, NULL, NULL, NULL); -INSERT INTO "public"."jimu_report_db_field" VALUES ('1334465135447646214', NULL, '2020-12-03 19:50:56', NULL, NULL, '1334465135435063298', 'sales_22', NULL, 'sales_22', 'String', NULL, 14, 0, NULL, NULL, NULL, NULL, NULL); -INSERT INTO "public"."jimu_report_db_field" VALUES ('1334465135447646215', NULL, '2020-12-03 19:50:56', NULL, NULL, '1334465135435063298', 'sales_31', NULL, 'sales_31', 'String', NULL, 15, 0, NULL, NULL, NULL, NULL, NULL); -INSERT INTO "public"."jimu_report_db_field" VALUES ('1334465135447646216', NULL, '2020-12-03 19:50:56', NULL, NULL, '1334465135435063298', 'sales_32', NULL, 'sales_32', 'String', NULL, 16, 0, NULL, NULL, NULL, NULL, NULL); -INSERT INTO "public"."jimu_report_db_field" VALUES ('1334465135447646217', NULL, '2020-12-03 19:50:56', NULL, NULL, '1334465135435063298', 'sales_33', NULL, 'sales_33', 'String', NULL, 17, 0, NULL, NULL, NULL, NULL, NULL); -INSERT INTO "public"."jimu_report_db_field" VALUES ('1334465135447646218', NULL, '2020-12-03 19:50:56', NULL, NULL, '1334465135435063298', 'sales_34', NULL, 'sales_34', 'String', NULL, 18, 0, NULL, NULL, NULL, NULL, NULL); -INSERT INTO "public"."jimu_report_db_field" VALUES ('1334465135447646219', NULL, '2020-12-03 19:50:56', NULL, NULL, '1334465135435063298', 'sales_35', NULL, 'sales_35', 'String', NULL, 19, 0, NULL, NULL, NULL, NULL, NULL); -INSERT INTO "public"."jimu_report_db_field" VALUES ('1334465135447646220', NULL, '2020-12-03 19:50:56', NULL, NULL, '1334465135435063298', 'sales_36', NULL, 'sales_36', 'String', NULL, 20, 0, NULL, NULL, NULL, NULL, NULL); -INSERT INTO "public"."jimu_report_db_field" VALUES ('1334465135447646221', NULL, '2020-12-03 19:50:56', NULL, NULL, '1334465135435063298', 'sales_37', NULL, 'sales_37', 'String', NULL, 21, 0, NULL, NULL, NULL, NULL, NULL); -INSERT INTO "public"."jimu_report_db_field" VALUES ('1334465135447646222', NULL, '2020-12-03 19:50:56', NULL, NULL, '1334465135435063298', 'sales_38', NULL, 'sales_38', 'String', NULL, 22, 0, NULL, NULL, NULL, NULL, NULL); -INSERT INTO "public"."jimu_report_db_field" VALUES ('1334465135447646223', NULL, '2020-12-03 19:50:56', NULL, NULL, '1334465135435063298', 'sales_39', NULL, 'sales_39', 'String', NULL, 23, 0, NULL, NULL, NULL, NULL, NULL); -INSERT INTO "public"."jimu_report_db_field" VALUES ('1334465135447646224', NULL, '2020-12-03 19:50:56', NULL, NULL, '1334465135435063298', 'sales_40', NULL, 'sales_40', 'String', NULL, 24, 0, NULL, NULL, NULL, NULL, NULL); -INSERT INTO "public"."jimu_report_db_field" VALUES ('1334465135447646225', NULL, '2020-12-03 19:50:56', NULL, NULL, '1334465135435063298', 'sales_41', NULL, 'sales_41', 'String', NULL, 25, 0, NULL, NULL, NULL, NULL, NULL); -INSERT INTO "public"."jimu_report_db_field" VALUES ('1334465135447646226', NULL, '2020-12-03 19:50:56', NULL, NULL, '1334465135435063298', 'sales_42', NULL, 'sales_42', 'String', NULL, 26, 0, NULL, NULL, NULL, NULL, NULL); -INSERT INTO "public"."jimu_report_db_field" VALUES ('1334708015277879297', NULL, '2020-12-04 11:56:03', NULL, NULL, '1334708015269490689', 'city', NULL, 'city', 'String', NULL, 1, 0, NULL, NULL, NULL, NULL, NULL); -INSERT INTO "public"."jimu_report_db_field" VALUES ('1334708015282073601', NULL, '2020-12-04 11:56:03', NULL, NULL, '1334708015269490689', 'school', NULL, 'school', 'String', NULL, 2, 0, NULL, NULL, NULL, NULL, NULL); -INSERT INTO "public"."jimu_report_db_field" VALUES ('1334708015282073602', NULL, '2020-12-04 11:56:03', NULL, NULL, '1334708015269490689', 'ncnum', NULL, 'ncnum', 'String', NULL, 3, 0, NULL, NULL, NULL, NULL, NULL); -INSERT INTO "public"."jimu_report_db_field" VALUES ('1334708015282073603', NULL, '2020-12-04 11:56:03', NULL, NULL, '1334708015269490689', 'num', NULL, 'num', 'String', NULL, 4, 0, NULL, NULL, NULL, NULL, NULL); -INSERT INTO "public"."jimu_report_db_field" VALUES ('1334708015282073604', NULL, '2020-12-04 11:56:03', NULL, NULL, '1334708015269490689', 'name', NULL, 'name', 'String', NULL, 5, 0, NULL, NULL, NULL, NULL, NULL); -INSERT INTO "public"."jimu_report_db_field" VALUES ('1334708015282073605', NULL, '2020-12-04 11:56:03', NULL, NULL, '1334708015269490689', 'class', NULL, 'class', 'String', NULL, 6, 0, NULL, NULL, NULL, NULL, NULL); -INSERT INTO "public"."jimu_report_db_field" VALUES ('1334708015282073606', NULL, '2020-12-04 11:56:03', NULL, NULL, '1334708015269490689', 'pay', NULL, 'pay', 'String', NULL, 7, 0, NULL, NULL, NULL, NULL, NULL); -INSERT INTO "public"."jimu_report_db_field" VALUES ('1334708015282073607', NULL, '2020-12-04 11:56:03', NULL, NULL, '1334708015269490689', 'paytime', NULL, 'paytime', 'String', NULL, 8, 0, NULL, NULL, NULL, NULL, NULL); -INSERT INTO "public"."jimu_report_db_field" VALUES ('1334708015282073608', NULL, '2020-12-04 11:56:03', NULL, NULL, '1334708015269490689', 'payclass', NULL, 'payclass', 'String', NULL, 9, 0, NULL, NULL, NULL, NULL, NULL); -INSERT INTO "public"."jimu_report_db_field" VALUES ('1334708015282073609', NULL, '2020-12-04 11:56:03', NULL, NULL, '1334708015269490689', 'pay1', NULL, 'pay1', 'String', NULL, 10, 0, NULL, NULL, NULL, NULL, NULL); -INSERT INTO "public"."jimu_report_db_field" VALUES ('1334708015282073610', NULL, '2020-12-04 11:56:03', NULL, NULL, '1334708015269490689', 'paymoth', NULL, 'paymoth', 'String', NULL, 11, 0, NULL, NULL, NULL, NULL, NULL); -INSERT INTO "public"."jimu_report_db_field" VALUES ('1334708015282073611', NULL, '2020-12-04 11:56:03', NULL, NULL, '1334708015269490689', 'pay2', NULL, 'pay2', 'String', NULL, 12, 0, NULL, NULL, NULL, NULL, NULL); -INSERT INTO "public"."jimu_report_db_field" VALUES ('1334708015282073612', NULL, '2020-12-04 11:56:03', NULL, NULL, '1334708015269490689', 'tuition_09', NULL, 'tuition_09', 'String', NULL, 13, 0, NULL, NULL, NULL, NULL, NULL); -INSERT INTO "public"."jimu_report_db_field" VALUES ('1334708015282073613', NULL, '2020-12-04 11:56:03', NULL, NULL, '1334708015269490689', 'meals_09', NULL, 'meals_09', 'String', NULL, 14, 0, NULL, NULL, NULL, NULL, NULL); -INSERT INTO "public"."jimu_report_db_field" VALUES ('1334708015282073614', NULL, '2020-12-04 11:56:03', NULL, NULL, '1334708015269490689', 'busfee_09', NULL, 'busfee_09', 'String', NULL, 15, 0, NULL, NULL, NULL, NULL, NULL); -INSERT INTO "public"."jimu_report_db_field" VALUES ('1334708015282073615', NULL, '2020-12-04 11:56:03', NULL, NULL, '1334708015269490689', 'tuition_10', NULL, 'tuition_10', 'String', NULL, 16, 0, NULL, NULL, NULL, NULL, NULL); -INSERT INTO "public"."jimu_report_db_field" VALUES ('1334708015282073616', NULL, '2020-12-04 11:56:03', NULL, NULL, '1334708015269490689', 'meals_10', NULL, 'meals_10', 'String', NULL, 17, 0, NULL, NULL, NULL, NULL, NULL); -INSERT INTO "public"."jimu_report_db_field" VALUES ('1334708015282073617', NULL, '2020-12-04 11:56:03', NULL, NULL, '1334708015269490689', 'busfee_10', NULL, 'busfee_10', 'String', NULL, 18, 0, NULL, NULL, NULL, NULL, NULL); -INSERT INTO "public"."jimu_report_db_field" VALUES ('1334764504126402561', NULL, '2020-12-04 15:40:31', NULL, NULL, '1334763434197200897', 'city', NULL, 'city', 'String', NULL, 1, 0, NULL, NULL, NULL, NULL, NULL); -INSERT INTO "public"."jimu_report_db_field" VALUES ('1334764504130596866', NULL, '2020-12-04 15:40:31', NULL, NULL, '1334763434197200897', 'finish', NULL, 'finish', 'String', NULL, 2, 0, NULL, NULL, NULL, NULL, NULL); -INSERT INTO "public"."jimu_report_db_field" VALUES ('1334764504130596867', NULL, '2020-12-04 15:40:31', NULL, NULL, '1334763434197200897', 'semifinish', NULL, 'semifinish', 'String', NULL, 3, 0, NULL, NULL, NULL, NULL, NULL); -INSERT INTO "public"."jimu_report_db_field" VALUES ('1334764504130596868', NULL, '2020-12-04 15:40:31', NULL, NULL, '1334763434197200897', 'time', NULL, 'time', 'String', NULL, 4, 0, NULL, NULL, NULL, NULL, NULL); -INSERT INTO "public"."jimu_report_db_field" VALUES ('1334764504130596869', NULL, '2020-12-04 15:40:31', NULL, NULL, '1334763434197200897', 'state', NULL, 'state', 'String', NULL, 5, 0, NULL, NULL, NULL, NULL, NULL); -INSERT INTO "public"."jimu_report_db_field" VALUES ('1334764504130596870', NULL, '2020-12-04 15:40:31', NULL, NULL, '1334763434197200897', 'attribute', NULL, 'attribute', 'String', NULL, 6, 0, NULL, NULL, NULL, NULL, NULL); -INSERT INTO "public"."jimu_report_db_field" VALUES ('1334764504130596871', NULL, '2020-12-04 15:40:31', NULL, NULL, '1334763434197200897', 'num', NULL, 'num', 'String', NULL, 7, 0, NULL, NULL, NULL, NULL, NULL); -INSERT INTO "public"."jimu_report_db_field" VALUES ('1334764504130596872', NULL, '2020-12-04 15:40:31', NULL, NULL, '1334763434197200897', 'gnum', NULL, 'gnum', 'String', NULL, 8, 0, NULL, NULL, NULL, NULL, NULL); -INSERT INTO "public"."jimu_report_db_field" VALUES ('1334764504130596873', NULL, '2020-12-04 15:40:31', NULL, NULL, '1334763434197200897', 'jnum', NULL, 'jnum', 'String', NULL, 9, 0, NULL, NULL, NULL, NULL, NULL); -INSERT INTO "public"."jimu_report_db_field" VALUES ('1334764504130596874', NULL, '2020-12-04 15:40:31', NULL, NULL, '1334763434197200897', 'wnum', NULL, 'wnum', 'String', NULL, 10, 0, NULL, NULL, NULL, NULL, NULL); -INSERT INTO "public"."jimu_report_db_field" VALUES ('1334764504130596875', NULL, '2020-12-04 15:40:31', NULL, NULL, '1334763434197200897', 'uph', NULL, 'uph', 'String', NULL, 11, 0, NULL, NULL, NULL, NULL, NULL); -INSERT INTO "public"."jimu_report_db_field" VALUES ('1334764504130596876', NULL, '2020-12-04 15:40:31', NULL, NULL, '1334763434197200897', 'hc', NULL, 'hc', 'String', NULL, 12, 0, NULL, NULL, NULL, NULL, NULL); -INSERT INTO "public"."jimu_report_db_field" VALUES ('1334764504130596877', NULL, '2020-12-04 15:40:31', NULL, NULL, '1334763434197200897', 'jtime', NULL, 'jtime', 'String', NULL, 13, 0, NULL, NULL, NULL, NULL, NULL); -INSERT INTO "public"."jimu_report_db_field" VALUES ('1334764504130596878', NULL, '2020-12-04 15:40:31', NULL, NULL, '1334763434197200897', 'yield', NULL, 'yield', 'String', NULL, 14, 0, NULL, NULL, NULL, NULL, NULL); -INSERT INTO "public"."jimu_report_db_field" VALUES ('1334764504130596879', NULL, '2020-12-04 15:40:31', NULL, NULL, '1334763434197200897', 'beizhu', NULL, 'beizhu', 'String', NULL, 15, 0, NULL, NULL, NULL, NULL, NULL); -INSERT INTO "public"."jimu_report_db_field" VALUES ('1334782903430754305', NULL, '2020-12-04 16:53:38', NULL, NULL, '1283730831482937345', 'name', NULL, 'name', 'String', NULL, 1, 0, NULL, NULL, NULL, NULL, NULL); -INSERT INTO "public"."jimu_report_db_field" VALUES ('1334782903430754306', NULL, '2020-12-04 16:53:38', NULL, NULL, '1283730831482937345', 'value', NULL, 'value', 'String', NULL, 2, 0, NULL, NULL, NULL, NULL, NULL); -INSERT INTO "public"."jimu_report_db_field" VALUES ('1334782903430754307', NULL, '2020-12-04 16:53:38', NULL, NULL, '1283730831482937345', 'key1', NULL, 'key1', 'String', NULL, 3, 0, NULL, NULL, NULL, NULL, NULL); -INSERT INTO "public"."jimu_report_db_field" VALUES ('1334782903430754308', NULL, '2020-12-04 16:53:38', NULL, NULL, '1283730831482937345', 'key2', NULL, 'key2', 'String', NULL, 4, 0, NULL, NULL, NULL, NULL, NULL); -INSERT INTO "public"."jimu_report_db_field" VALUES ('1334782903430754309', NULL, '2020-12-04 16:53:38', NULL, NULL, '1283730831482937345', 'key3', NULL, 'key3', 'String', NULL, 5, 0, NULL, NULL, NULL, NULL, NULL); -INSERT INTO "public"."jimu_report_db_field" VALUES ('1334782903430754310', NULL, '2020-12-04 16:53:38', NULL, NULL, '1283730831482937345', 'key4', NULL, 'key4', 'String', NULL, 6, 0, NULL, NULL, NULL, NULL, NULL); -INSERT INTO "public"."jimu_report_db_field" VALUES ('1334782903430754311', NULL, '2020-12-04 16:53:38', NULL, NULL, '1283730831482937345', 'key5', NULL, 'key5', 'String', NULL, 7, 0, NULL, NULL, NULL, NULL, NULL); -INSERT INTO "public"."jimu_report_db_field" VALUES ('1334782903430754312', NULL, '2020-12-04 16:53:38', NULL, NULL, '1283730831482937345', 'key6', NULL, 'key6', 'String', NULL, 8, 0, NULL, NULL, NULL, NULL, NULL); -INSERT INTO "public"."jimu_report_db_field" VALUES ('1334782903430754313', NULL, '2020-12-04 16:53:38', NULL, NULL, '1283730831482937345', 'key7', NULL, 'key7', 'String', NULL, 9, 0, NULL, NULL, NULL, NULL, NULL); -INSERT INTO "public"."jimu_report_db_field" VALUES ('1334782903430754314', NULL, '2020-12-04 16:53:38', NULL, NULL, '1283730831482937345', 'percent', NULL, 'percent', 'String', NULL, 10, 0, NULL, NULL, NULL, NULL, NULL); -INSERT INTO "public"."jimu_report_db_field" VALUES ('141dc952421a55e66fcddb94adddc48b', NULL, '2021-02-02 19:10:15', NULL, NULL, '9b7d28336b01f9a6b1a613957c3d7cda', 'sex', NULL, '性别', 'String', NULL, 10, 1, 1, 'sex', NULL, NULL, NULL); -INSERT INTO "public"."jimu_report_db_field" VALUES ('17a278c53299d1342c56a8eb1614a44e', 'admin', '2021-04-01 03:09:23', NULL, NULL, '1289140698221678593', 'ctime', NULL, 'ctime', 'String', NULL, 4, 0, NULL, NULL, NULL, NULL, NULL); -INSERT INTO "public"."jimu_report_db_field" VALUES ('19e6fe3dc95b352d97f460648dc93e15', NULL, '2021-01-06 11:43:35', NULL, NULL, '1334390762455965697', 'proportion_z', NULL, 'proportion_z', 'String', NULL, 23, 0, NULL, NULL, NULL, NULL, NULL); -INSERT INTO "public"."jimu_report_db_field" VALUES ('1b09540b3d8deddc06ebdbec26f6ae87', NULL, '2021-01-13 11:59:53', NULL, NULL, '1316997232402231298', 'political', NULL, 'political', 'String', NULL, 7, 0, NULL, NULL, NULL, NULL, NULL); -INSERT INTO "public"."jimu_report_db_field" VALUES ('1b53581fa4096f4a05c7e8d73c7a7af9', NULL, '2021-02-02 19:13:46', NULL, NULL, '1338756341933543425', 'jphone', NULL, 'jphone', 'String', NULL, 5, 0, NULL, NULL, NULL, NULL, NULL); -INSERT INTO "public"."jimu_report_db_field" VALUES ('1b6fbe11728a1c4633eeea8ffb12bc25', NULL, '2021-01-13 11:59:53', NULL, NULL, '1316997232402231298', 'update_by', NULL, 'update_by', 'String', NULL, 30, 0, NULL, NULL, NULL, NULL, NULL); -INSERT INTO "public"."jimu_report_db_field" VALUES ('1d21c72184f2e06ca1be3dc95fbcc259', NULL, '2021-01-11 14:38:14', NULL, NULL, '1317006713165049858', 'zhiwu', NULL, 'zhiwu', 'String', NULL, 5, 0, NULL, NULL, NULL, NULL, NULL); -INSERT INTO "public"."jimu_report_db_field" VALUES ('1ee3018b4d0c305e2c06f77e1e5f3c4c', NULL, '2021-01-06 11:43:35', NULL, NULL, '1334390762455965697', 'sales_3', NULL, 'sales_3', 'String', NULL, 9, 0, NULL, NULL, NULL, NULL, NULL); -INSERT INTO "public"."jimu_report_db_field" VALUES ('1fac3f8219222b8963dc6b85870ffd86', NULL, '2021-01-05 15:33:07', NULL, NULL, '1316987047604514817', 'telphone', NULL, 'telphone', NULL, NULL, 16, 0, NULL, NULL, NULL, NULL, NULL); -INSERT INTO "public"."jimu_report_db_field" VALUES ('218fb9e81e6255a6589c52ddd8279c40', NULL, '2021-02-02 19:13:46', NULL, NULL, '1338756341933543425', 'laddress', NULL, 'laddress', 'String', NULL, 8, 0, NULL, NULL, NULL, NULL, NULL); -INSERT INTO "public"."jimu_report_db_field" VALUES ('21f7de0326129dbbbc03d64aceb4d3f7', 'admin', '2021-04-01 03:09:23', NULL, NULL, '1289140698221678593', 'yprice', NULL, 'yprice', 'String', NULL, 7, 0, NULL, NULL, NULL, NULL, NULL); -INSERT INTO "public"."jimu_report_db_field" VALUES ('240f3415fa8e7b3876c0b422d468c90d', NULL, '2020-08-03 09:55:46', NULL, NULL, '6011955e58d89040fca52e7f962d0bf4', 'gname', NULL, 'gname', 'string', NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL); -INSERT INTO "public"."jimu_report_db_field" VALUES ('298cfe65d8b484624f8a28199dc800e7', NULL, '2021-02-02 19:23:18', NULL, NULL, '94bcd8202bc6bc467efd0d679dadd7bb', 'sr', NULL, 'sr', 'String', NULL, 16, 0, NULL, NULL, NULL, NULL, NULL); -INSERT INTO "public"."jimu_report_db_field" VALUES ('29fcb4292d4782888e9fd0496bd8ddc8', 'admin', '2021-04-01 03:09:23', NULL, NULL, '1289140698221678593', 'id', NULL, 'id', 'String', NULL, 1, 0, NULL, NULL, NULL, NULL, NULL); -INSERT INTO "public"."jimu_report_db_field" VALUES ('2a3b35b4830f1b1eff84a5a9bceed0b6', NULL, '2021-01-06 11:43:35', NULL, NULL, '1334390762455965697', 'gift_z', NULL, 'gift_z', 'String', NULL, 22, 0, NULL, NULL, NULL, NULL, NULL); -INSERT INTO "public"."jimu_report_db_field" VALUES ('2be25d6c7e3ac28abec99854618d0e3d', NULL, '2021-01-13 11:59:53', NULL, NULL, '1316997232402231298', 'birthday', NULL, 'birthday', 'String', NULL, 5, 0, NULL, NULL, NULL, NULL, NULL); -INSERT INTO "public"."jimu_report_db_field" VALUES ('2f94a4be25426f3f4013c50103559969', NULL, '2021-01-06 11:43:35', NULL, NULL, '1334390762455965697', 'sales_4', NULL, 'sales_4', 'String', NULL, 12, 0, NULL, NULL, NULL, NULL, NULL); -INSERT INTO "public"."jimu_report_db_field" VALUES ('30f8183ff4ec5a6b30724a1da7fbbed0', NULL, '2021-01-05 15:33:07', NULL, NULL, '1316987047604514817', 'pworktime', NULL, 'pworktime', NULL, NULL, 18, 0, NULL, NULL, NULL, NULL, NULL); -INSERT INTO "public"."jimu_report_db_field" VALUES ('30fc020c8d14776e96350edb479f40ac', NULL, '2021-02-02 19:30:23', NULL, NULL, '629609c4d540cb4675e9064af8955296', 'zhuzhi', NULL, 'zhuzhi', 'String', NULL, 5, 0, NULL, NULL, NULL, NULL, NULL); -INSERT INTO "public"."jimu_report_db_field" VALUES ('32545e398eea7bf89791cc78dd16ab12', NULL, '2021-02-02 19:30:23', NULL, NULL, '629609c4d540cb4675e9064af8955296', 'yhnum', NULL, 'yhnum', 'String', NULL, 8, 0, NULL, NULL, NULL, NULL, NULL); -INSERT INTO "public"."jimu_report_db_field" VALUES ('3331f86002c128555443d8e7b79c70d2', NULL, '2021-02-02 19:23:18', NULL, NULL, '94bcd8202bc6bc467efd0d679dadd7bb', 'name', NULL, 'name', 'String', NULL, 1, 0, NULL, NULL, NULL, NULL, NULL); -INSERT INTO "public"."jimu_report_db_field" VALUES ('34c933903ddf6ba5bad588d913c487c5', NULL, '2021-01-06 11:43:35', NULL, NULL, '1334390762455965697', 'gift_4', NULL, 'gift_4', 'String', NULL, 13, 0, NULL, NULL, NULL, NULL, NULL); -INSERT INTO "public"."jimu_report_db_field" VALUES ('350be7312c299482acfe44fb086f91c1', NULL, '2021-01-06 11:43:35', NULL, NULL, '1334390762455965697', 'sales_5', NULL, 'sales_5', 'String', NULL, 15, 0, NULL, NULL, NULL, NULL, NULL); -INSERT INTO "public"."jimu_report_db_field" VALUES ('35d9204189dd1d1f142a7587f89ab46c', NULL, '2021-01-13 11:59:53', NULL, NULL, '1316997232402231298', 'email', NULL, 'email', 'String', NULL, 18, 0, NULL, NULL, NULL, NULL, NULL); -INSERT INTO "public"."jimu_report_db_field" VALUES ('37868bf0bad09f6d2084340e0b05333d', NULL, '2021-02-02 19:30:23', NULL, NULL, '629609c4d540cb4675e9064af8955296', 'sf4', NULL, 'sf4', 'String', NULL, 18, 0, NULL, 'ttype', NULL, NULL, NULL); -INSERT INTO "public"."jimu_report_db_field" VALUES ('38b2955e0ef75d384d0d9ff8417e4945', NULL, '2021-02-02 19:30:23', NULL, NULL, '629609c4d540cb4675e9064af8955296', 'sf3', NULL, 'sf3', 'String', NULL, 17, 0, NULL, 'ttype', NULL, NULL, NULL); -INSERT INTO "public"."jimu_report_db_field" VALUES ('39878a3df0fe2cafc481469b8eb71ea5', NULL, '2021-02-02 19:13:46', NULL, NULL, '1338756341933543425', 'sex', NULL, 'sex', 'String', NULL, 10, 0, NULL, 'sex', NULL, NULL, NULL); -INSERT INTO "public"."jimu_report_db_field" VALUES ('3c2a8313af79dbecba4c5687b65a66ab', 'admin', '2021-04-01 03:09:23', NULL, NULL, '1289140698221678593', 'cnum', NULL, 'cnum', 'String', NULL, 5, 0, NULL, NULL, NULL, NULL, NULL); -INSERT INTO "public"."jimu_report_db_field" VALUES ('3c71c10a0d27796808cb201e30024fe8', NULL, '2021-01-13 11:59:53', NULL, NULL, '1316997232402231298', 'school', NULL, 'school', 'String', NULL, 14, 0, NULL, NULL, NULL, NULL, NULL); -INSERT INTO "public"."jimu_report_db_field" VALUES ('3c7597c1efa73ca9400cdc36a9a48e23', NULL, '2021-01-06 11:43:35', NULL, NULL, '1334390762455965697', 'gift_1', NULL, 'gift_1', 'String', NULL, 4, 0, NULL, NULL, NULL, NULL, NULL); -INSERT INTO "public"."jimu_report_db_field" VALUES ('3cd9d09176d10d3225e4fe86b4538739', NULL, '2020-12-17 16:59:12', NULL, NULL, '7911bd189c2d53e182693bd599a315a2', 'type', NULL, 'type', 'String', NULL, 3, 0, NULL, NULL, NULL, NULL, NULL); -INSERT INTO "public"."jimu_report_db_field" VALUES ('3ec76a981ff5353d4a65052963166477', NULL, '2020-12-17 17:13:21', NULL, NULL, '9b75c161322e0b7e29b3ffc84239a72c', 'value', NULL, 'value', 'String', NULL, 2, 0, NULL, NULL, NULL, NULL, NULL); -INSERT INTO "public"."jimu_report_db_field" VALUES ('3f5a04060285392287f4e7f6d59988c6', NULL, '2020-08-03 09:55:46', NULL, NULL, '6011955e58d89040fca52e7f962d0bf4', 'tdata', NULL, 'tdata', 'string', NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL); -INSERT INTO "public"."jimu_report_db_field" VALUES ('3f7ce1ee2ad20770e64016384f2c1cd5', NULL, '2021-01-05 15:33:07', NULL, NULL, '1316987047604514817', 'homephone', NULL, 'homephone', NULL, NULL, 17, 0, NULL, NULL, NULL, NULL, NULL); -INSERT INTO "public"."jimu_report_db_field" VALUES ('42225abb0677e51111a8e9e7b001332c', NULL, '2021-02-02 19:30:23', NULL, NULL, '629609c4d540cb4675e9064af8955296', 'yjine', NULL, 'yjine', 'String', NULL, 10, 0, NULL, NULL, NULL, NULL, NULL); -INSERT INTO "public"."jimu_report_db_field" VALUES ('450316da5f9b7d8505944e16f1284a38', NULL, '2021-01-08 16:10:28', NULL, NULL, '7b20679054449c554cde856ef24126ab', 'monty', NULL, 'monty', 'String', NULL, 1, 0, NULL, NULL, NULL, NULL, NULL); -INSERT INTO "public"."jimu_report_db_field" VALUES ('46a4074647a27aaee0e5263d5f6bcf5a', NULL, '2021-02-02 19:23:18', NULL, NULL, '94bcd8202bc6bc467efd0d679dadd7bb', 'tp', NULL, 'tp', 'String', NULL, 3, 0, NULL, NULL, NULL, NULL, NULL); -INSERT INTO "public"."jimu_report_db_field" VALUES ('46f68d27013cff9b09c5d059c79fbf28', NULL, '2021-02-02 19:10:15', NULL, NULL, '9b7d28336b01f9a6b1a613957c3d7cda', 'gtime', NULL, '雇佣时间', 'date', NULL, 3, 0, NULL, NULL, NULL, NULL, NULL); -INSERT INTO "public"."jimu_report_db_field" VALUES ('4942cc4d04ac7330799ecc3fec48ac8b', NULL, '2021-01-13 11:59:53', NULL, NULL, '1316997232402231298', 'id_card', NULL, 'id_card', 'String', NULL, 12, 0, NULL, NULL, NULL, NULL, NULL); -INSERT INTO "public"."jimu_report_db_field" VALUES ('49def4afc641cb52775ff03fdba3007a', NULL, '2021-01-08 16:10:28', NULL, NULL, '7b20679054449c554cde856ef24126ab', 'his_lowest', NULL, 'his_lowest', 'String', NULL, 4, 0, NULL, NULL, NULL, NULL, NULL); -INSERT INTO "public"."jimu_report_db_field" VALUES ('49fa04e98f2ed62966d7f6141611dd7e', NULL, '2021-01-05 15:33:07', NULL, NULL, '1316987047604514817', 'children', NULL, 'children', NULL, NULL, 24, 0, NULL, NULL, NULL, NULL, NULL); -INSERT INTO "public"."jimu_report_db_field" VALUES ('49febadfe1eb3a59bfbe802d506aa590', NULL, '2021-01-05 15:33:07', NULL, NULL, '1316987047604514817', 'data', NULL, 'data', NULL, NULL, 3, 0, NULL, NULL, NULL, NULL, NULL); -INSERT INTO "public"."jimu_report_db_field" VALUES ('4d782de2bf10be3a79f04e8841053f00', NULL, '2021-01-08 10:47:52', NULL, NULL, 'f7649b77cfc9e0a9dacdac370cd4036b', 'pingjia', NULL, 'pingjia', 'String', NULL, 2, 0, NULL, NULL, NULL, NULL, NULL); -INSERT INTO "public"."jimu_report_db_field" VALUES ('4d7dd94ecf26b5fa69f9a1f811583340', NULL, '2021-01-13 11:59:53', NULL, NULL, '1316997232402231298', 'address', NULL, 'address', 'String', NULL, 16, 0, NULL, NULL, NULL, NULL, NULL); -INSERT INTO "public"."jimu_report_db_field" VALUES ('502a0a66b4dbf8689ed36e56ab272c2f', NULL, '2021-02-02 19:10:15', NULL, NULL, '9b7d28336b01f9a6b1a613957c3d7cda', 'birth', NULL, '出生日期', 'String', NULL, 6, 0, NULL, NULL, NULL, NULL, NULL); -INSERT INTO "public"."jimu_report_db_field" VALUES ('52444b20f2fcdfe43461a5a49079e4dc', NULL, '2021-01-13 11:59:53', NULL, NULL, '1316997232402231298', 'health', NULL, 'health', 'String', NULL, 11, 0, NULL, NULL, NULL, NULL, NULL); -INSERT INTO "public"."jimu_report_db_field" VALUES ('537477711047733248', 'admin', '2021-04-01 05:54:42', NULL, NULL, '537477711022567424', 'id', NULL, 'id', 'String', NULL, 1, 0, NULL, NULL, NULL, NULL, NULL); -INSERT INTO "public"."jimu_report_db_field" VALUES ('537477711056121856', 'admin', '2021-04-01 05:54:42', NULL, NULL, '537477711022567424', 'name', NULL, 'name', 'String', NULL, 2, 0, NULL, NULL, NULL, NULL, NULL); -INSERT INTO "public"."jimu_report_db_field" VALUES ('537477711064510464', 'admin', '2021-04-01 05:54:42', NULL, NULL, '537477711022567424', 'gtime', NULL, 'gtime', 'String', NULL, 3, 0, NULL, NULL, NULL, NULL, NULL); -INSERT INTO "public"."jimu_report_db_field" VALUES ('537477711072899072', 'admin', '2021-04-01 05:54:42', NULL, NULL, '537477711022567424', 'update_by', NULL, 'update_by', 'String', NULL, 4, 0, NULL, NULL, NULL, NULL, NULL); -INSERT INTO "public"."jimu_report_db_field" VALUES ('537477711077093376', 'admin', '2021-04-01 05:54:42', NULL, NULL, '537477711022567424', 'jphone', NULL, 'jphone', 'String', NULL, 5, 0, NULL, NULL, NULL, NULL, NULL); -INSERT INTO "public"."jimu_report_db_field" VALUES ('537477711085481984', 'admin', '2021-04-01 05:54:42', NULL, NULL, '537477711022567424', 'birth', NULL, 'birth', 'String', NULL, 6, 0, NULL, NULL, NULL, NULL, NULL); -INSERT INTO "public"."jimu_report_db_field" VALUES ('537477711093870592', 'admin', '2021-04-01 05:54:42', NULL, NULL, '537477711022567424', 'hukou', NULL, 'hukou', 'String', NULL, 7, 0, NULL, NULL, NULL, NULL, NULL); -INSERT INTO "public"."jimu_report_db_field" VALUES ('537477711102259200', 'admin', '2021-04-01 05:54:42', NULL, NULL, '537477711022567424', 'laddress', NULL, 'laddress', 'String', NULL, 8, 0, NULL, NULL, NULL, NULL, NULL); -INSERT INTO "public"."jimu_report_db_field" VALUES ('537477711106453504', 'admin', '2021-04-01 05:54:42', NULL, NULL, '537477711022567424', 'jperson', NULL, 'jperson', 'String', NULL, 9, 0, NULL, NULL, NULL, NULL, NULL); -INSERT INTO "public"."jimu_report_db_field" VALUES ('537477711110647808', 'admin', '2021-04-01 05:54:42', NULL, NULL, '537477711022567424', 'sex', NULL, 'sex', 'String', NULL, 10, 0, NULL, NULL, NULL, NULL, NULL); -INSERT INTO "public"."jimu_report_db_field" VALUES ('537478337303457792', 'admin', '2021-04-01 05:54:37', NULL, NULL, '537478337278291968', 'id', NULL, 'id', 'String', NULL, 1, 0, NULL, NULL, NULL, NULL, NULL); -INSERT INTO "public"."jimu_report_db_field" VALUES ('537478337320235008', 'admin', '2021-04-01 05:54:37', NULL, NULL, '537478337278291968', 'create_by', NULL, 'create_by', 'String', NULL, 2, 0, NULL, NULL, NULL, NULL, NULL); -INSERT INTO "public"."jimu_report_db_field" VALUES ('537478337328623616', 'admin', '2021-04-01 05:54:37', NULL, NULL, '537478337278291968', 'create_time', NULL, 'create_time', 'String', NULL, 3, 0, NULL, NULL, NULL, NULL, NULL); -INSERT INTO "public"."jimu_report_db_field" VALUES ('537478337332817920', 'admin', '2021-04-01 05:54:37', NULL, NULL, '537478337278291968', 'update_by', NULL, 'update_by', 'String', NULL, 4, 0, NULL, NULL, NULL, NULL, NULL); -INSERT INTO "public"."jimu_report_db_field" VALUES ('537478337341206528', 'admin', '2021-04-01 05:54:37', NULL, NULL, '537478337278291968', 'update_time', NULL, 'update_time', 'String', NULL, 5, 0, NULL, NULL, NULL, NULL, NULL); -INSERT INTO "public"."jimu_report_db_field" VALUES ('537478337349595136', 'admin', '2021-04-01 05:54:37', NULL, NULL, '537478337278291968', 'data_table', NULL, 'data_table', 'String', NULL, 6, 0, NULL, NULL, NULL, NULL, NULL); -INSERT INTO "public"."jimu_report_db_field" VALUES ('537478337353789440', 'admin', '2021-04-01 05:54:37', NULL, NULL, '537478337278291968', 'data_id', NULL, 'data_id', 'String', NULL, 7, 0, NULL, NULL, NULL, NULL, NULL); -INSERT INTO "public"."jimu_report_db_field" VALUES ('537478337362178048', 'admin', '2021-04-01 05:54:37', NULL, NULL, '537478337278291968', 'data_content', NULL, 'data_content', 'String', NULL, 8, 0, NULL, NULL, NULL, NULL, NULL); -INSERT INTO "public"."jimu_report_db_field" VALUES ('537478337370566656', 'admin', '2021-04-01 05:54:37', NULL, NULL, '537478337278291968', 'data_version', NULL, 'data_version', 'String', NULL, 9, 0, NULL, NULL, NULL, NULL, NULL); -INSERT INTO "public"."jimu_report_db_field" VALUES ('537478337378955264', 'admin', '2021-04-01 05:54:37', NULL, NULL, '537478337278291968', 'rownum_', NULL, 'rownum_', 'String', NULL, 10, 0, NULL, NULL, NULL, NULL, NULL); -INSERT INTO "public"."jimu_report_db_field" VALUES ('537478706330906624', 'admin', '2021-04-01 05:56:44', NULL, NULL, '537478706314129408', 'id', NULL, 'id', 'String', NULL, 1, 0, NULL, NULL, NULL, NULL, NULL); -INSERT INTO "public"."jimu_report_db_field" VALUES ('537478706343489536', 'admin', '2021-04-01 05:56:44', NULL, NULL, '537478706314129408', 'cname', NULL, 'cname', 'String', NULL, 2, 0, NULL, NULL, NULL, NULL, NULL); -INSERT INTO "public"."jimu_report_db_field" VALUES ('537478706351878144', 'admin', '2021-04-01 05:56:44', NULL, NULL, '537478706314129408', 'cnum', NULL, 'cnum', 'String', NULL, 3, 0, NULL, NULL, NULL, NULL, NULL); -INSERT INTO "public"."jimu_report_db_field" VALUES ('537478706356072448', 'admin', '2021-04-01 05:56:44', NULL, NULL, '537478706314129408', 'cprice', NULL, 'cprice', 'String', NULL, 4, 0, NULL, NULL, NULL, NULL, NULL); -INSERT INTO "public"."jimu_report_db_field" VALUES ('537478706360266752', 'admin', '2021-04-01 05:56:44', NULL, NULL, '537478706314129408', 'ctotal', NULL, 'ctotal', 'String', NULL, 5, 0, NULL, NULL, NULL, NULL, NULL); -INSERT INTO "public"."jimu_report_db_field" VALUES ('537478706368655360', 'admin', '2021-04-01 05:56:44', NULL, NULL, '537478706314129408', 'tp', NULL, 'tp', 'String', NULL, 6, 0, NULL, NULL, NULL, NULL, NULL); -INSERT INTO "public"."jimu_report_db_field" VALUES ('537478706377043968', 'admin', '2021-04-01 05:56:44', NULL, NULL, '537478706314129408', 'dtotal', NULL, 'dtotal', 'String', NULL, 7, 0, NULL, NULL, NULL, NULL, NULL); -INSERT INTO "public"."jimu_report_db_field" VALUES ('537478706381238272', 'admin', '2021-04-01 05:56:44', NULL, NULL, '537478706314129408', 'ztotal', NULL, 'ztotal', 'String', NULL, 8, 0, NULL, NULL, NULL, NULL, NULL); -INSERT INTO "public"."jimu_report_db_field" VALUES ('537478706389626880', 'admin', '2021-04-01 05:56:44', NULL, NULL, '537478706314129408', 'd_id', NULL, 'd_id', 'String', NULL, 9, 0, NULL, NULL, NULL, NULL, NULL); -INSERT INTO "public"."jimu_report_db_field" VALUES ('538563757aa1a49935824ce14568f27c', NULL, '2021-01-05 15:33:07', NULL, NULL, '1316987047604514817', 'archivesdi', NULL, 'archivesdi', NULL, NULL, 34, 0, NULL, NULL, NULL, NULL, NULL); -INSERT INTO "public"."jimu_report_db_field" VALUES ('5406c33ff49384c2bcad5b85a9701355', NULL, '2021-01-06 11:43:35', NULL, NULL, '1334390762455965697', 'province', NULL, 'province', 'String', NULL, 2, 0, NULL, NULL, NULL, NULL, NULL); -INSERT INTO "public"."jimu_report_db_field" VALUES ('5648f5a00640e3adf57fb9bbf27269f4', NULL, '2021-02-02 19:23:18', NULL, NULL, '94bcd8202bc6bc467efd0d679dadd7bb', 'tm', NULL, 'tm', 'String', NULL, 4, 0, NULL, NULL, NULL, NULL, NULL); -INSERT INTO "public"."jimu_report_db_field" VALUES ('56749103eb4a60e7046dea34453b439e', NULL, '2021-02-02 19:23:18', NULL, NULL, '94bcd8202bc6bc467efd0d679dadd7bb', 'shao', NULL, 'shao', 'String', NULL, 13, 0, NULL, NULL, NULL, NULL, NULL); -INSERT INTO "public"."jimu_report_db_field" VALUES ('57ee0e6ffe7135a943dde2408d424c97', NULL, '2021-01-06 11:43:35', NULL, NULL, '1334390762455965697', 'proportion_1', NULL, 'proportion_1', 'String', NULL, 5, 0, NULL, NULL, NULL, NULL, NULL); -INSERT INTO "public"."jimu_report_db_field" VALUES ('589a5a4fe61fc71aa1bf45d3bd73974b', NULL, '2020-12-17 19:50:14', NULL, NULL, 'fb70a91730f087f8023afd88d24f9697', 'name', NULL, 'name', 'String', NULL, 1, 0, NULL, NULL, NULL, NULL, NULL); -INSERT INTO "public"."jimu_report_db_field" VALUES ('5a88459afcf01cc20ac5a50322b35fd6', NULL, '2021-01-05 15:33:07', NULL, NULL, '1316987047604514817', 'hukounum', NULL, 'hukounum', NULL, NULL, 26, 0, NULL, NULL, NULL, NULL, NULL); -INSERT INTO "public"."jimu_report_db_field" VALUES ('5b7f7bebf0c3951b891026e7c2ac90cb', NULL, '2020-08-03 09:55:46', NULL, NULL, '6011955e58d89040fca52e7f962d0bf4', 'didian', NULL, 'didian', 'string', NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL); -INSERT INTO "public"."jimu_report_db_field" VALUES ('5bf6aee0bd8f676a218e0210e9e6fa0e', NULL, '2020-12-17 16:59:12', NULL, NULL, '7911bd189c2d53e182693bd599a315a2', 'name', NULL, 'name', 'String', NULL, 1, 0, NULL, NULL, NULL, NULL, NULL); -INSERT INTO "public"."jimu_report_db_field" VALUES ('5cf4a1ca15691d6340e522e1831dc3ac', NULL, '2021-01-06 11:43:35', NULL, NULL, '1334390762455965697', 'sales_6', NULL, 'sales_6', 'String', NULL, 18, 0, NULL, NULL, NULL, NULL, NULL); -INSERT INTO "public"."jimu_report_db_field" VALUES ('5e4e8b7531a88f4db1a0d133de159494', NULL, '2020-08-03 09:55:46', NULL, NULL, '6011955e58d89040fca52e7f962d0bf4', 'num', NULL, 'num', 'string', NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL); -INSERT INTO "public"."jimu_report_db_field" VALUES ('6020e457162b86b75a2d335999ab06ec', NULL, '2021-01-13 11:59:53', NULL, NULL, '1316997232402231298', 'nation', NULL, 'nation', 'String', NULL, 6, 0, NULL, NULL, NULL, NULL, NULL); -INSERT INTO "public"."jimu_report_db_field" VALUES ('631632bc2243018788d11d4f8348bfd2', NULL, '2021-01-05 15:33:07', NULL, NULL, '1316987047604514817', 'socialsecurity', NULL, 'socialsecurity', NULL, NULL, 30, 0, NULL, NULL, NULL, NULL, NULL); -INSERT INTO "public"."jimu_report_db_field" VALUES ('665f13c7fcebac6c35c894d885c4b344', NULL, '2021-01-06 11:43:35', NULL, NULL, '1334390762455965697', 'proportion_6', NULL, 'proportion_6', 'String', NULL, 20, 0, NULL, NULL, NULL, NULL, NULL); -INSERT INTO "public"."jimu_report_db_field" VALUES ('677bf4d6400fc465067b0d5bd6ad2a58', NULL, '2021-01-06 11:43:35', NULL, NULL, '1334390762455965697', 'gift_2', NULL, 'gift_2', 'String', NULL, 7, 0, NULL, NULL, NULL, NULL, NULL); -INSERT INTO "public"."jimu_report_db_field" VALUES ('6b2db5f824af08166e5074feea82ab52', NULL, '2021-02-02 19:23:18', NULL, NULL, '94bcd8202bc6bc467efd0d679dadd7bb', 'sex', NULL, 'sex', 'String', NULL, 2, 0, NULL, 'sex', NULL, NULL, NULL); -INSERT INTO "public"."jimu_report_db_field" VALUES ('6c2b1c9e4cfd3f6b79d0fb26fea72cec', NULL, '2020-08-03 09:55:46', NULL, NULL, '6011955e58d89040fca52e7f962d0bf4', 'zhaiyao', NULL, 'zhaiyao', 'string', NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL); -INSERT INTO "public"."jimu_report_db_field" VALUES ('6dae70a5323b3d517c8f13278f0e1d5f', NULL, '2021-01-06 11:43:35', NULL, NULL, '1334390762455965697', 'proportion_5', NULL, 'proportion_5', 'String', NULL, 17, 0, NULL, NULL, NULL, NULL, NULL); -INSERT INTO "public"."jimu_report_db_field" VALUES ('6ec41a06e2dee9ec8f07a894ddcaaae5', NULL, '2021-02-02 19:10:15', NULL, NULL, '9b7d28336b01f9a6b1a613957c3d7cda', 'jphone', NULL, 'jphone', 'String', NULL, 5, 0, NULL, NULL, NULL, NULL, NULL); -INSERT INTO "public"."jimu_report_db_field" VALUES ('70abaf24c413f38ff6a3c315ad8824b2', NULL, '2021-01-13 11:59:53', NULL, NULL, '1316997232402231298', 'height', NULL, 'height', 'String', NULL, 9, 0, NULL, NULL, NULL, NULL, NULL); -INSERT INTO "public"."jimu_report_db_field" VALUES ('710104c3e0541602a151d5e00fc2ee29', NULL, '2020-12-17 16:42:21', NULL, NULL, '654609e4247a0469e0b2befbc69b00f9', 'type', NULL, 'type', 'String', NULL, 3, 0, NULL, NULL, NULL, NULL, NULL); -INSERT INTO "public"."jimu_report_db_field" VALUES ('718a062a1e42276c1913c7d7836b1bee', NULL, '2021-01-05 15:33:07', NULL, NULL, '1316987047604514817', 'hobby', NULL, 'hobby', NULL, NULL, 32, 0, NULL, NULL, NULL, NULL, NULL); -INSERT INTO "public"."jimu_report_db_field" VALUES ('71cb567cd27fda05d55d80324c7b59e1', NULL, '2021-01-13 11:59:53', NULL, NULL, '1316997232402231298', 'del_flag', NULL, 'del_flag', 'String', NULL, 32, 0, NULL, NULL, NULL, NULL, NULL); -INSERT INTO "public"."jimu_report_db_field" VALUES ('729c2d2c70da0f3bc092f4aab4432244', NULL, '2020-12-17 16:42:21', NULL, NULL, '654609e4247a0469e0b2befbc69b00f9', 'name', NULL, 'name', 'String', NULL, 1, 0, NULL, NULL, NULL, NULL, NULL); -INSERT INTO "public"."jimu_report_db_field" VALUES ('732c8b168ade2e34974c9db6396df61f', NULL, '2021-02-02 19:30:23', NULL, NULL, '629609c4d540cb4675e9064af8955296', 'type', NULL, 'type', 'String', NULL, 12, 0, NULL, NULL, NULL, NULL, NULL); -INSERT INTO "public"."jimu_report_db_field" VALUES ('742954cf518d8026db68cc87c017ad2a', NULL, '2021-02-02 19:30:23', NULL, NULL, '629609c4d540cb4675e9064af8955296', 'bz', NULL, 'bz', 'String', NULL, 19, 0, NULL, NULL, NULL, NULL, NULL); -INSERT INTO "public"."jimu_report_db_field" VALUES ('768fb670937ab4aadde39842df36bfd3', 'admin', '2021-04-01 03:09:23', NULL, NULL, '1289140698221678593', 'cprice', NULL, 'cprice', 'String', NULL, 6, 0, NULL, NULL, NULL, NULL, NULL); -INSERT INTO "public"."jimu_report_db_field" VALUES ('796408f2959fc40edd9b460a1a5bdfb8', NULL, '2021-02-02 19:13:46', NULL, NULL, '1338756341933543425', 'gtime', NULL, '雇佣日期', 'date', NULL, 3, 1, 2, NULL, NULL, NULL, NULL); -INSERT INTO "public"."jimu_report_db_field" VALUES ('7b794ecee6f61f64839eb1094a7c20bb', NULL, '2021-01-06 11:43:35', NULL, NULL, '1334390762455965697', 'region', NULL, 'region', 'String', NULL, 1, 0, NULL, NULL, NULL, NULL, NULL); -INSERT INTO "public"."jimu_report_db_field" VALUES ('7c2c06cc52978c4e5665deac1784535d', NULL, '2021-02-02 19:30:23', NULL, NULL, '629609c4d540cb4675e9064af8955296', 'yren', NULL, 'yren', 'String', NULL, 9, 0, NULL, NULL, NULL, NULL, NULL); -INSERT INTO "public"."jimu_report_db_field" VALUES ('7e564f212697079394030ac0563df496', NULL, '2020-06-16 18:14:25', NULL, NULL, 'e4cec9ff15bc0ea42f536a442a6d1335', 'id', NULL, 'id', 'string', NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL); -INSERT INTO "public"."jimu_report_db_field" VALUES ('7f5570e3056d82210d7d4e79b861560c', NULL, '2021-02-02 19:10:15', NULL, NULL, '9b7d28336b01f9a6b1a613957c3d7cda', 'laddress', NULL, 'laddress', 'String', NULL, 8, 0, NULL, NULL, NULL, NULL, NULL); -INSERT INTO "public"."jimu_report_db_field" VALUES ('80017f23232ea91ae32e4718eb10e8c3', NULL, '2021-01-06 11:43:35', NULL, NULL, '1334390762455965697', 'proportion_4', NULL, 'proportion_4', 'String', NULL, 14, 0, NULL, NULL, NULL, NULL, NULL); -INSERT INTO "public"."jimu_report_db_field" VALUES ('80b5e3fd550d9be1a8c8ea69a2a593f8', NULL, '2021-01-05 15:33:07', NULL, NULL, '1316987047604514817', 'birth', NULL, 'birth', NULL, NULL, 6, 0, NULL, NULL, NULL, NULL, NULL); -INSERT INTO "public"."jimu_report_db_field" VALUES ('81dea8f0ccba2b3530038ebcf92b36b1', NULL, '2021-01-13 11:59:53', NULL, NULL, '1316997232402231298', 'name', NULL, 'name', 'String', NULL, 3, 0, NULL, NULL, NULL, NULL, NULL); -INSERT INTO "public"."jimu_report_db_field" VALUES ('81f2de244fa1e6b5f28419f60c4db169', NULL, '2020-06-16 18:14:25', NULL, NULL, 'e4cec9ff15bc0ea42f536a442a6d1335', 'bnum', NULL, 'bnum', 'string', NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL); -INSERT INTO "public"."jimu_report_db_field" VALUES ('824a22cf80849d110e04fd5c573f40de', NULL, '2021-02-02 19:23:18', NULL, NULL, '94bcd8202bc6bc467efd0d679dadd7bb', 'jphone', NULL, 'jphone', 'String', NULL, 17, 0, NULL, NULL, NULL, NULL, NULL); -INSERT INTO "public"."jimu_report_db_field" VALUES ('84391d55c9bd4185c4abbc0d9a8a3f9b', NULL, '2021-01-13 11:59:53', NULL, NULL, '1316997232402231298', 'native_place', NULL, 'native_place', 'String', NULL, 8, 0, NULL, NULL, NULL, NULL, NULL); -INSERT INTO "public"."jimu_report_db_field" VALUES ('85263a305fba4c7e7a991ed3b416e006', NULL, '2020-12-17 16:42:21', NULL, NULL, '654609e4247a0469e0b2befbc69b00f9', 'value', NULL, 'value', 'String', NULL, 2, 0, NULL, NULL, NULL, NULL, NULL); -INSERT INTO "public"."jimu_report_db_field" VALUES ('865ca077977b78934e5e82e733ef4e47', NULL, '2021-01-13 11:59:53', NULL, NULL, '1316997232402231298', 'major', NULL, 'major', 'String', NULL, 15, 0, NULL, NULL, NULL, NULL, NULL); -INSERT INTO "public"."jimu_report_db_field" VALUES ('8749d00c6c3cf873841a227a5206478a', NULL, '2021-01-06 11:43:35', NULL, NULL, '1334390762455965697', 'sales_1', NULL, 'sales_1', 'String', NULL, 3, 0, NULL, NULL, NULL, NULL, NULL); -INSERT INTO "public"."jimu_report_db_field" VALUES ('87f43f4f5220c34a95d55ff3fa9de0c1', NULL, '2021-01-05 15:33:07', NULL, NULL, '1316987047604514817', 'health', NULL, 'health', NULL, NULL, 10, 0, NULL, NULL, NULL, NULL, NULL); -INSERT INTO "public"."jimu_report_db_field" VALUES ('88b19703dac5a5ae8c01c68101cd8b5b', NULL, '2021-02-02 19:30:23', NULL, NULL, '629609c4d540cb4675e9064af8955296', 'cbz', NULL, 'cbz', 'String', NULL, 14, 0, NULL, NULL, NULL, NULL, NULL); -INSERT INTO "public"."jimu_report_db_field" VALUES ('89bd5c1f5b37b82ab2d56d8c9e50a674', NULL, '2021-01-13 11:59:53', NULL, NULL, '1316997232402231298', 'sex', NULL, 'sex', 'String', NULL, 4, 0, NULL, NULL, NULL, NULL, NULL); -INSERT INTO "public"."jimu_report_db_field" VALUES ('8a122291db744a6109a93af5d289787f', NULL, '2021-01-13 11:59:53', NULL, NULL, '1316997232402231298', 'computer_level', NULL, 'computer_level', 'String', NULL, 22, 0, NULL, NULL, NULL, NULL, NULL); -INSERT INTO "public"."jimu_report_db_field" VALUES ('8ab8d51dfb792cdc767e68d7e9370f3d', NULL, '2021-01-13 11:59:53', NULL, NULL, '1316997232402231298', 'num', NULL, 'num', 'String', NULL, 2, 0, NULL, NULL, NULL, NULL, NULL); -INSERT INTO "public"."jimu_report_db_field" VALUES ('8bfc84f6d610581d736fcccc5f04a863', NULL, '2021-02-02 19:30:23', NULL, NULL, '629609c4d540cb4675e9064af8955296', 'scard', NULL, 'scard', 'String', NULL, 7, 0, NULL, NULL, NULL, NULL, NULL); -INSERT INTO "public"."jimu_report_db_field" VALUES ('8d186f249df9e1c1c549fbdc6a0a4d77', NULL, '2021-01-05 15:33:07', NULL, NULL, '1316987047604514817', 'currentdi', NULL, 'currentdi', NULL, NULL, 28, 0, NULL, NULL, NULL, NULL, NULL); -INSERT INTO "public"."jimu_report_db_field" VALUES ('8db810062e3a19eb83fca651691b848e', NULL, '2021-01-06 11:43:35', NULL, NULL, '1334390762455965697', 'sales_2', NULL, 'sales_2', 'String', NULL, 6, 0, NULL, NULL, NULL, NULL, NULL); -INSERT INTO "public"."jimu_report_db_field" VALUES ('8e39d42a7fad183fe75ce1a56f148db1', 'admin', '2021-04-01 03:09:23', NULL, NULL, '1289140698221678593', 'bianma', NULL, 'bianma', 'String', NULL, 2, 0, NULL, NULL, NULL, NULL, NULL); -INSERT INTO "public"."jimu_report_db_field" VALUES ('8fb12c3929ea745f94cc4a90df9d5181', NULL, '2021-01-05 15:33:07', NULL, NULL, '1316987047604514817', 'idcard', NULL, 'idcard', NULL, NULL, 21, 0, NULL, NULL, NULL, NULL, NULL); -INSERT INTO "public"."jimu_report_db_field" VALUES ('924614453659533312', NULL, '2021-02-02 19:23:18', NULL, NULL, '924614453609201664', 'name', NULL, 'name', 'String', NULL, 1, 0, NULL, NULL, NULL, NULL, NULL); -INSERT INTO "public"."jimu_report_db_field" VALUES ('924614453697282048', NULL, '2021-02-02 19:23:18', NULL, NULL, '924614453609201664', 'sex', NULL, 'sex', 'String', NULL, 2, 0, NULL, 'sex', NULL, NULL, NULL); -INSERT INTO "public"."jimu_report_db_field" VALUES ('924614453726642176', NULL, '2021-02-02 19:23:18', NULL, NULL, '924614453609201664', 'tp', NULL, 'tp', 'String', NULL, 3, 0, NULL, NULL, NULL, NULL, NULL); -INSERT INTO "public"."jimu_report_db_field" VALUES ('924614453747613696', NULL, '2021-02-02 19:23:18', NULL, NULL, '924614453609201664', 'tm', NULL, 'tm', 'String', NULL, 4, 0, NULL, NULL, NULL, NULL, NULL); -INSERT INTO "public"."jimu_report_db_field" VALUES ('924614453768585216', NULL, '2021-02-02 19:23:18', NULL, NULL, '924614453609201664', 'nation', NULL, 'nation', 'String', NULL, 5, 0, NULL, NULL, NULL, NULL, NULL); -INSERT INTO "public"."jimu_report_db_field" VALUES ('924614453785362432', NULL, '2021-02-02 19:23:18', NULL, NULL, '924614453609201664', 'birth', NULL, 'birth', 'String', NULL, 6, 0, NULL, NULL, NULL, NULL, NULL); -INSERT INTO "public"."jimu_report_db_field" VALUES ('924614453810528256', NULL, '2021-02-02 19:23:18', NULL, NULL, '924614453609201664', 'zhuzhi', NULL, 'zhuzhi', 'String', NULL, 7, 0, NULL, NULL, NULL, NULL, NULL); -INSERT INTO "public"."jimu_report_db_field" VALUES ('924614453827305472', NULL, '2021-02-02 19:23:18', NULL, NULL, '924614453609201664', 'card', NULL, 'card', 'String', NULL, 8, 0, NULL, NULL, NULL, NULL, NULL); -INSERT INTO "public"."jimu_report_db_field" VALUES ('924614453839888384', NULL, '2021-02-02 19:23:18', NULL, NULL, '924614453609201664', 'ydate', NULL, 'ydate', 'String', NULL, 9, 0, NULL, NULL, NULL, NULL, NULL); -INSERT INTO "public"."jimu_report_db_field" VALUES ('924614453852471296', NULL, '2021-02-02 19:23:18', NULL, NULL, '924614453609201664', 'qfjg', NULL, 'qfjg', 'String', NULL, 10, 0, NULL, NULL, NULL, NULL, NULL); -INSERT INTO "public"."jimu_report_db_field" VALUES ('924614453865054208', NULL, '2021-02-02 19:23:18', NULL, NULL, '924614453609201664', 'slyy', NULL, 'slyy', 'String', NULL, 11, 0, NULL, NULL, NULL, NULL, NULL); -INSERT INTO "public"."jimu_report_db_field" VALUES ('924614453877637120', NULL, '2021-02-02 19:23:18', NULL, NULL, '924614453609201664', 'sdate', NULL, 'sdate', 'String', NULL, 12, 0, NULL, NULL, NULL, NULL, NULL); -INSERT INTO "public"."jimu_report_db_field" VALUES ('924614453902802944', NULL, '2021-02-02 19:23:18', NULL, NULL, '924614453609201664', 'shao', NULL, 'shao', 'String', NULL, 13, 0, NULL, NULL, NULL, NULL, NULL); -INSERT INTO "public"."jimu_report_db_field" VALUES ('924614453927968768', NULL, '2021-02-02 19:23:18', NULL, NULL, '924614453609201664', 'cbr', NULL, 'cbr', 'String', NULL, 14, 0, NULL, NULL, NULL, NULL, NULL); -INSERT INTO "public"."jimu_report_db_field" VALUES ('924614453953134592', NULL, '2021-02-02 19:23:18', NULL, NULL, '924614453609201664', 'sld', NULL, 'sld', 'String', NULL, 15, 0, NULL, NULL, NULL, NULL, NULL); -INSERT INTO "public"."jimu_report_db_field" VALUES ('924614453969911808', NULL, '2021-02-02 19:23:18', NULL, NULL, '924614453609201664', 'sr', NULL, 'sr', 'String', NULL, 16, 0, NULL, NULL, NULL, NULL, NULL); -INSERT INTO "public"."jimu_report_db_field" VALUES ('924614454003466240', NULL, '2021-02-02 19:23:18', NULL, NULL, '924614453609201664', 'jphone', NULL, 'jphone', 'String', NULL, 17, 0, NULL, NULL, NULL, NULL, NULL); -INSERT INTO "public"."jimu_report_db_field" VALUES ('924614454020243456', NULL, '2021-02-02 19:23:18', NULL, NULL, '924614453609201664', 'lzr', NULL, 'lzr', 'String', NULL, 18, 0, NULL, NULL, NULL, NULL, NULL); -INSERT INTO "public"."jimu_report_db_field" VALUES ('924614454037020672', NULL, '2021-02-02 19:23:18', NULL, NULL, '924614453609201664', 'ldate', NULL, 'ldate', 'String', NULL, 19, 0, NULL, NULL, NULL, NULL, NULL); -INSERT INTO "public"."jimu_report_db_field" VALUES ('924614454053797888', NULL, '2021-02-02 19:23:18', NULL, NULL, '924614453609201664', 'sk', NULL, 'sk', 'String', NULL, 20, 0, NULL, NULL, NULL, NULL, NULL); -INSERT INTO "public"."jimu_report_db_field" VALUES ('924614454074769408', NULL, '2021-02-02 19:23:18', NULL, NULL, '924614453609201664', 'dizhi', NULL, 'dizhi', 'String', NULL, 21, 0, NULL, NULL, NULL, NULL, NULL); -INSERT INTO "public"."jimu_report_db_field" VALUES ('92da818568d6c8e1e499abf51e439870', NULL, '2021-02-02 19:23:18', NULL, NULL, '94bcd8202bc6bc467efd0d679dadd7bb', 'lzr', NULL, 'lzr', 'String', NULL, 18, 0, NULL, NULL, NULL, NULL, NULL); -INSERT INTO "public"."jimu_report_db_field" VALUES ('930045149299916800', 'admin', '2024-03-19 20:34:13', NULL, NULL, '930045149249585152', 'id', NULL, '编号(输入1或者2)', 'String', NULL, 0, 1, NULL, NULL, NULL, NULL, NULL); -INSERT INTO "public"."jimu_report_db_field" VALUES ('930045149438328832', 'admin', '2024-03-19 20:34:13', NULL, NULL, '930045149249585152', 'organization', NULL, '收款组织', 'String', NULL, 1, NULL, NULL, NULL, NULL, NULL, NULL); -INSERT INTO "public"."jimu_report_db_field" VALUES ('930241691537424384', 'admin', '2024-03-20 09:35:13', NULL, NULL, '930241691461926912', 'id', NULL, '编号', 'String', NULL, 0, NULL, NULL, NULL, NULL, NULL, NULL); -INSERT INTO "public"."jimu_report_db_field" VALUES ('930241691583561728', 'admin', '2024-03-20 09:35:13', NULL, NULL, '930241691461926912', 'customId', NULL, '顾客/业主收费明细编号', 'String', NULL, 1, NULL, NULL, NULL, NULL, NULL, NULL); -INSERT INTO "public"."jimu_report_db_field" VALUES ('930241691600338944', 'admin', '2024-03-20 09:35:13', NULL, NULL, '930241691461926912', 'propertyName', NULL, '房产名称', 'String', NULL, 2, NULL, NULL, NULL, NULL, NULL, NULL); -INSERT INTO "public"."jimu_report_db_field" VALUES ('930241691617116160', 'admin', '2024-03-20 09:35:13', NULL, NULL, '930241691461926912', 'expenseItem', NULL, '费用项目', 'String', NULL, 3, NULL, NULL, NULL, NULL, NULL, NULL); -INSERT INTO "public"."jimu_report_db_field" VALUES ('930241691650670592', 'admin', '2024-03-20 09:35:13', NULL, NULL, '930241691461926912', 'price', NULL, '应交月份', 'String', NULL, 4, NULL, NULL, NULL, NULL, NULL, NULL); -INSERT INTO "public"."jimu_report_db_field" VALUES ('930243856901390336', 'admin', '2024-03-20 09:43:49', NULL, NULL, '930241691461926912', 'payableMonths', NULL, '金额', 'String', NULL, 5, NULL, NULL, NULL, NULL, NULL, NULL); -INSERT INTO "public"."jimu_report_db_field" VALUES ('930244634357579776', 'admin', '2024-03-20 09:46:54', NULL, NULL, '930045149249585152', 'customName', NULL, '顾客名称', 'String', NULL, 2, NULL, NULL, NULL, NULL, NULL, NULL); -INSERT INTO "public"."jimu_report_db_field" VALUES ('930244634374356992', 'admin', '2024-03-20 09:46:54', NULL, NULL, '930045149249585152', 'receiptNo', NULL, '收款单号', 'String', NULL, 3, NULL, NULL, NULL, NULL, NULL, NULL); -INSERT INTO "public"."jimu_report_db_field" VALUES ('930244634386939904', 'admin', '2024-03-20 09:46:54', NULL, NULL, '930045149249585152', 'actualPayer', NULL, '实际交款人', 'String', NULL, 4, NULL, NULL, NULL, NULL, NULL, NULL); -INSERT INTO "public"."jimu_report_db_field" VALUES ('930244634403717120', 'admin', '2024-03-20 09:46:54', NULL, NULL, '930045149249585152', 'settlementType', NULL, '结算方式', 'String', NULL, 5, NULL, NULL, NULL, NULL, NULL, NULL); -INSERT INTO "public"."jimu_report_db_field" VALUES ('930244634420494336', 'admin', '2024-03-20 09:46:54', NULL, NULL, '930045149249585152', 'collectionTime', NULL, '收款时间', 'String', NULL, 6, NULL, NULL, NULL, NULL, NULL, NULL); -INSERT INTO "public"."jimu_report_db_field" VALUES ('930244634433077248', 'admin', '2024-03-20 09:46:54', NULL, NULL, '930045149249585152', 'originalNumber', NULL, '原单号', 'String', NULL, 7, NULL, NULL, NULL, NULL, NULL, NULL); -INSERT INTO "public"."jimu_report_db_field" VALUES ('930244634449854464', 'admin', '2024-03-20 09:46:54', NULL, NULL, '930045149249585152', 'paymentDesc', NULL, '缴费说明', 'String', NULL, 8, NULL, NULL, NULL, NULL, NULL, NULL); -INSERT INTO "public"."jimu_report_db_field" VALUES ('930244634462437376', 'admin', '2024-03-20 09:46:54', NULL, NULL, '930045149249585152', 'verifyPassword', NULL, '检验密码', 'String', NULL, 9, NULL, NULL, NULL, NULL, NULL, NULL); -INSERT INTO "public"."jimu_report_db_field" VALUES ('930244634479214592', 'admin', '2024-03-20 09:46:54', NULL, NULL, '930045149249585152', 'dealWith', NULL, '收款经办', 'String', NULL, 10, NULL, NULL, NULL, NULL, NULL, NULL); -INSERT INTO "public"."jimu_report_db_field" VALUES ('934653343644614656', 'admin', '2024-04-01 13:45:32', NULL, NULL, '934653343564922880', 'id', NULL, 'id', 'String', NULL, 0, NULL, NULL, NULL, NULL, NULL, NULL); -INSERT INTO "public"."jimu_report_db_field" VALUES ('934653343678169088', 'admin', '2024-04-01 13:45:32', NULL, NULL, '934653343564922880', 'name', NULL, 'name', 'String', NULL, 1, NULL, NULL, NULL, NULL, NULL, NULL); -INSERT INTO "public"."jimu_report_db_field" VALUES ('934653343694946304', 'admin', '2024-04-01 13:45:32', NULL, NULL, '934653343564922880', 'key_word', NULL, 'key_word', 'String', NULL, 2, NULL, NULL, NULL, NULL, NULL, NULL); -INSERT INTO "public"."jimu_report_db_field" VALUES ('934653343711723520', 'admin', '2024-04-01 13:45:32', NULL, NULL, '934653343564922880', 'punch_time', NULL, 'punch_time', 'String', NULL, 3, NULL, NULL, NULL, NULL, NULL, NULL); -INSERT INTO "public"."jimu_report_db_field" VALUES ('934653343728500736', 'admin', '2024-04-01 13:45:32', NULL, NULL, '934653343564922880', 'salary_money', NULL, 'salary_money', 'String', NULL, 4, NULL, NULL, NULL, NULL, NULL, NULL); -INSERT INTO "public"."jimu_report_db_field" VALUES ('934653343741083648', 'admin', '2024-04-01 13:45:32', NULL, NULL, '934653343564922880', 'bonus_money', NULL, 'bonus_money', 'String', NULL, 5, NULL, NULL, NULL, NULL, NULL, NULL); -INSERT INTO "public"."jimu_report_db_field" VALUES ('934653343753666560', 'admin', '2024-04-01 13:45:32', NULL, NULL, '934653343564922880', 'sex', NULL, 'sex', 'String', NULL, 6, NULL, NULL, NULL, NULL, NULL, NULL); -INSERT INTO "public"."jimu_report_db_field" VALUES ('934653343770443776', 'admin', '2024-04-01 13:45:32', NULL, NULL, '934653343564922880', 'age', NULL, 'age', 'String', NULL, 7, NULL, NULL, NULL, NULL, NULL, NULL); -INSERT INTO "public"."jimu_report_db_field" VALUES ('934653343783026688', 'admin', '2024-04-01 13:45:32', NULL, NULL, '934653343564922880', 'birthday', NULL, 'birthday', 'String', NULL, 8, NULL, NULL, NULL, NULL, NULL, NULL); -INSERT INTO "public"."jimu_report_db_field" VALUES ('934653343795609600', 'admin', '2024-04-01 13:45:32', NULL, NULL, '934653343564922880', 'email', NULL, 'email', 'String', NULL, 9, NULL, NULL, NULL, NULL, NULL, NULL); -INSERT INTO "public"."jimu_report_db_field" VALUES ('934653343808192512', 'admin', '2024-04-01 13:45:32', NULL, NULL, '934653343564922880', 'content', NULL, 'content', 'String', NULL, 10, NULL, NULL, NULL, NULL, NULL, NULL); -INSERT INTO "public"."jimu_report_db_field" VALUES ('934653343820775424', 'admin', '2024-04-01 13:45:32', NULL, NULL, '934653343564922880', 'create_by', NULL, 'create_by', 'String', NULL, 11, NULL, NULL, NULL, NULL, NULL, NULL); -INSERT INTO "public"."jimu_report_db_field" VALUES ('934653343837552640', 'admin', '2024-04-01 13:45:32', NULL, NULL, '934653343564922880', 'create_time', NULL, 'create_time', 'String', NULL, 12, NULL, NULL, NULL, NULL, NULL, NULL); -INSERT INTO "public"."jimu_report_db_field" VALUES ('934653343850135552', 'admin', '2024-04-01 13:45:32', NULL, NULL, '934653343564922880', 'update_by', NULL, 'update_by', 'String', NULL, 13, NULL, NULL, NULL, NULL, NULL, NULL); -INSERT INTO "public"."jimu_report_db_field" VALUES ('934653343862718464', 'admin', '2024-04-01 13:45:32', NULL, NULL, '934653343564922880', 'update_time', NULL, 'update_time', 'String', NULL, 14, NULL, NULL, NULL, NULL, NULL, NULL); -INSERT INTO "public"."jimu_report_db_field" VALUES ('934653343875301376', 'admin', '2024-04-01 13:45:32', NULL, NULL, '934653343564922880', 'sys_org_code', NULL, 'sys_org_code', 'String', NULL, 15, NULL, NULL, NULL, NULL, NULL, NULL); -INSERT INTO "public"."jimu_report_db_field" VALUES ('934653343896272896', 'admin', '2024-04-01 13:45:32', NULL, NULL, '934653343564922880', 'tenant_id', NULL, 'tenant_id', 'String', NULL, 16, NULL, NULL, NULL, NULL, NULL, NULL); -INSERT INTO "public"."jimu_report_db_field" VALUES ('934653343913050112', 'admin', '2024-04-01 13:45:32', NULL, NULL, '934653343564922880', 'update_count', NULL, 'update_count', 'String', NULL, 17, NULL, NULL, NULL, NULL, NULL, NULL); -INSERT INTO "public"."jimu_report_db_field" VALUES ('938680893832265728', 'admin', '2024-04-12 16:29:35', NULL, NULL, '938680893609967616', 'country', NULL, 'country', 'String', NULL, 0, NULL, NULL, NULL, NULL, NULL, NULL); -INSERT INTO "public"."jimu_report_db_field" VALUES ('938680893895180288', 'admin', '2024-04-12 16:29:35', NULL, NULL, '938680893609967616', 'city', NULL, 'city', 'String', NULL, 1, NULL, NULL, NULL, NULL, NULL, NULL); -INSERT INTO "public"."jimu_report_db_field" VALUES ('938680893916151808', 'admin', '2024-04-12 16:29:35', NULL, NULL, '938680893609967616', 'region', NULL, 'region', 'String', NULL, 2, NULL, NULL, NULL, NULL, NULL, NULL); -INSERT INTO "public"."jimu_report_db_field" VALUES ('938680893941317632', 'admin', '2024-04-12 16:29:35', NULL, NULL, '938680893609967616', 'org', NULL, 'org', 'String', NULL, 3, NULL, NULL, NULL, NULL, NULL, NULL); -INSERT INTO "public"."jimu_report_db_field" VALUES ('938680893970677760', 'admin', '2024-04-12 16:29:35', NULL, NULL, '938680893609967616', 'department', NULL, 'department', 'String', NULL, 4, NULL, NULL, NULL, NULL, NULL, NULL); -INSERT INTO "public"."jimu_report_db_field" VALUES ('938680893987454976', 'admin', '2024-04-12 16:29:35', NULL, NULL, '938680893609967616', 'education', NULL, 'education', 'String', NULL, 5, NULL, NULL, NULL, NULL, NULL, NULL); -INSERT INTO "public"."jimu_report_db_field" VALUES ('938680893995843584', 'admin', '2024-04-12 16:29:35', NULL, NULL, '938680893609967616', 'sex', NULL, 'sex', 'String', NULL, 6, NULL, NULL, NULL, NULL, NULL, NULL); -INSERT INTO "public"."jimu_report_db_field" VALUES ('938680894033592320', 'admin', '2024-04-12 16:29:35', NULL, NULL, '938680893609967616', 'age', NULL, 'age', 'String', NULL, 7, NULL, NULL, NULL, NULL, NULL, NULL); -INSERT INTO "public"."jimu_report_db_field" VALUES ('938680894079729664', 'admin', '2024-04-12 16:29:35', NULL, NULL, '938680893609967616', 'name', NULL, 'name', 'String', NULL, 8, NULL, NULL, NULL, NULL, NULL, NULL); -INSERT INTO "public"."jimu_report_db_field" VALUES ('938680894100701184', 'admin', '2024-04-12 16:29:35', NULL, NULL, '938680893609967616', 'salary', NULL, 'salary', 'String', NULL, 9, NULL, NULL, NULL, NULL, NULL, NULL); -INSERT INTO "public"."jimu_report_db_field" VALUES ('938680894121672704', 'admin', '2024-04-12 16:29:35', NULL, NULL, '938680893609967616', 'tm', NULL, 'tm', 'String', NULL, 10, NULL, NULL, NULL, NULL, NULL, NULL); -INSERT INTO "public"."jimu_report_db_field" VALUES ('94fc5c2791e2e218383864b80095c89c', NULL, '2021-02-02 19:10:15', NULL, NULL, '9b7d28336b01f9a6b1a613957c3d7cda', 'id', NULL, 'id', 'String', NULL, 1, 0, NULL, NULL, NULL, NULL, NULL); -INSERT INTO "public"."jimu_report_db_field" VALUES ('95650b0335c6981bf0d657e11b1b2082', NULL, '2021-02-02 19:30:23', NULL, NULL, '629609c4d540cb4675e9064af8955296', 'hysr', NULL, 'hysr', 'String', NULL, 11, 0, NULL, NULL, NULL, NULL, NULL); -INSERT INTO "public"."jimu_report_db_field" VALUES ('9a5f78c12595cb66d3b630962f7cd7bf', NULL, '2021-02-02 19:30:23', NULL, NULL, '629609c4d540cb4675e9064af8955296', 'sf1', NULL, 'sf1', 'String', NULL, 15, 0, NULL, 'ttype', NULL, NULL, NULL); -INSERT INTO "public"."jimu_report_db_field" VALUES ('9d3986d3a32e9b4672dc2b29174749f3', NULL, '2021-02-02 19:30:23', NULL, NULL, '629609c4d540cb4675e9064af8955296', 'rk', NULL, 'rk', 'String', NULL, 13, 0, NULL, NULL, NULL, NULL, NULL); -INSERT INTO "public"."jimu_report_db_field" VALUES ('9d6a3a8b9cf5c659e7d752028b70da8b', NULL, '2021-02-02 19:30:23', NULL, NULL, '629609c4d540cb4675e9064af8955296', 'sf2', NULL, 'sf2', 'String', NULL, 16, 0, NULL, 'ttype', NULL, NULL, NULL); -INSERT INTO "public"."jimu_report_db_field" VALUES ('9d9b437037bb304f5def5b97d4c2b4c4', NULL, '2021-02-02 19:23:18', NULL, NULL, '94bcd8202bc6bc467efd0d679dadd7bb', 'zhuzhi', NULL, 'zhuzhi', 'String', NULL, 7, 0, NULL, NULL, NULL, NULL, NULL); -INSERT INTO "public"."jimu_report_db_field" VALUES ('9ddf87596d6701eda383c3d8d7853b2b', NULL, '2021-01-13 11:59:53', NULL, NULL, '1316997232402231298', 'education', NULL, 'education', 'String', NULL, 13, 0, NULL, NULL, NULL, NULL, NULL); -INSERT INTO "public"."jimu_report_db_field" VALUES ('9e28f1951ea83b6e6dae4e3892baea90', NULL, '2021-01-13 11:59:53', NULL, NULL, '1316997232402231298', 'positional_titles', NULL, 'positional_titles', 'String', NULL, 25, 0, NULL, NULL, NULL, NULL, NULL); -INSERT INTO "public"."jimu_report_db_field" VALUES ('9f15fef9efd35f5a5c1418ce5a6eceb0', NULL, '2021-02-02 19:13:46', NULL, NULL, '1338756341933543425', 'birth', NULL, '出生日期', 'datetime', NULL, 6, 1, NULL, NULL, NULL, NULL, NULL); -INSERT INTO "public"."jimu_report_db_field" VALUES ('a15e649faa93fbae15a66f5266bd9336', NULL, '2021-02-02 19:30:23', NULL, NULL, '629609c4d540cb4675e9064af8955296', 'phone', NULL, 'phone', 'String', NULL, 6, 0, NULL, NULL, NULL, NULL, NULL); -INSERT INTO "public"."jimu_report_db_field" VALUES ('a2e680c356e712b43343d589539da011', NULL, '2021-01-08 10:47:52', NULL, NULL, 'f7649b77cfc9e0a9dacdac370cd4036b', 'name', NULL, 'name', 'String', NULL, 1, 0, NULL, NULL, NULL, NULL, NULL); -INSERT INTO "public"."jimu_report_db_field" VALUES ('a42eed89da67da0653650edcc1576f8c', NULL, '2021-01-05 15:33:07', NULL, NULL, '1316987047604514817', 'currentnum', NULL, 'currentnum', NULL, NULL, 29, 0, NULL, NULL, NULL, NULL, NULL); -INSERT INTO "public"."jimu_report_db_field" VALUES ('a93ce07361b9d6ec02a58cf7f6b94664', NULL, '2021-01-05 15:33:07', NULL, NULL, '1316987047604514817', 'political', NULL, 'political', NULL, NULL, 7, 0, NULL, NULL, NULL, NULL, NULL); -INSERT INTO "public"."jimu_report_db_field" VALUES ('a949c4beac3fec79e96309a6d2d8f5bb', NULL, '2021-01-05 15:33:07', NULL, NULL, '1316987047604514817', 'entrytime', NULL, 'entrytime', NULL, NULL, 19, 0, NULL, NULL, NULL, NULL, NULL); -INSERT INTO "public"."jimu_report_db_field" VALUES ('a97ee04d3e745b3be9ee48cb16fdb419', NULL, '2021-02-02 19:23:18', NULL, NULL, '94bcd8202bc6bc467efd0d679dadd7bb', 'birth', NULL, 'birth', 'String', NULL, 6, 0, NULL, NULL, NULL, NULL, NULL); -INSERT INTO "public"."jimu_report_db_field" VALUES ('a9c7c96a412537b4da3df68ff8e93cc8', NULL, '2021-01-05 15:33:07', NULL, NULL, '1316987047604514817', 'post', NULL, 'post', NULL, NULL, 2, 0, NULL, NULL, NULL, NULL, NULL); -INSERT INTO "public"."jimu_report_db_field" VALUES ('ab0aabf8cc08327a4510420bd553e6c0', NULL, '2021-01-05 15:33:07', NULL, NULL, '1316987047604514817', 'providentfund', NULL, 'providentfund', NULL, NULL, 31, 0, NULL, NULL, NULL, NULL, NULL); -INSERT INTO "public"."jimu_report_db_field" VALUES ('ad146af051ba273a480223d49f59358b', NULL, '2021-01-05 15:33:07', NULL, NULL, '1316987047604514817', 'hukoustreet', NULL, 'hukoustreet', NULL, NULL, 25, 0, NULL, NULL, NULL, NULL, NULL); -INSERT INTO "public"."jimu_report_db_field" VALUES ('ad1d1fe2ee182c2d3a263a127fea041e', NULL, '2021-01-06 11:43:35', NULL, NULL, '1334390762455965697', 'proportion_2', NULL, 'proportion_2', 'String', NULL, 8, 0, NULL, NULL, NULL, NULL, NULL); -INSERT INTO "public"."jimu_report_db_field" VALUES ('ad2cc52cc14e9aabc04ac79d9a10b530', NULL, '2021-02-02 19:23:18', NULL, NULL, '94bcd8202bc6bc467efd0d679dadd7bb', 'ldate', NULL, 'ldate', 'String', NULL, 19, 0, NULL, NULL, NULL, NULL, NULL); -INSERT INTO "public"."jimu_report_db_field" VALUES ('ae5ec6e56478a098b36587e93b1d8908', NULL, '2021-01-13 11:59:53', NULL, NULL, '1316997232402231298', 'arrival_time', NULL, 'arrival_time', 'String', NULL, 24, 0, NULL, NULL, NULL, NULL, NULL); -INSERT INTO "public"."jimu_report_db_field" VALUES ('aee0188ab2bf9849607f6ef34b36713e', NULL, '2020-12-17 17:13:21', NULL, NULL, '9b75c161322e0b7e29b3ffc84239a72c', 'name', NULL, 'name', 'String', NULL, 1, 0, NULL, NULL, NULL, NULL, NULL); -INSERT INTO "public"."jimu_report_db_field" VALUES ('aee106a24b11b0f8ca10bc88b62189d7', NULL, '2020-08-03 09:55:46', NULL, NULL, '6011955e58d89040fca52e7f962d0bf4', 'gdata', NULL, 'gdata', 'string', NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL); -INSERT INTO "public"."jimu_report_db_field" VALUES ('aee31ce5eb6271601bc4e6f8affaceb0', NULL, '2020-06-16 18:14:25', NULL, NULL, 'e4cec9ff15bc0ea42f536a442a6d1335', 'hezairen', NULL, 'hezairen', 'string', NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL); -INSERT INTO "public"."jimu_report_db_field" VALUES ('b14588abed341d314a08d316dfde553f', NULL, '2021-01-13 11:59:53', NULL, NULL, '1316997232402231298', 'work_experience', NULL, 'work_experience', 'String', NULL, 27, 0, NULL, NULL, NULL, NULL, NULL); -INSERT INTO "public"."jimu_report_db_field" VALUES ('b1de05c2d02cdde59c1e2a93e45964f9', NULL, '2021-01-13 11:59:53', NULL, NULL, '1316997232402231298', 'create_time', NULL, 'create_time', 'String', NULL, 29, 0, NULL, NULL, NULL, NULL, NULL); -INSERT INTO "public"."jimu_report_db_field" VALUES ('b2176d9680c08a7aa040aec9f71ff236', NULL, '2021-02-02 19:13:46', NULL, NULL, '1338756341933543425', 'id', NULL, 'id', 'String', NULL, 1, 0, NULL, NULL, NULL, NULL, NULL); -INSERT INTO "public"."jimu_report_db_field" VALUES ('b279ab8f7d20ebbeec67f5bf2109ba22', NULL, '2021-01-08 16:10:28', NULL, NULL, '7b20679054449c554cde856ef24126ab', 'his_average', NULL, 'his_average', 'String', NULL, 5, 0, NULL, NULL, NULL, NULL, NULL); -INSERT INTO "public"."jimu_report_db_field" VALUES ('b3c98ed9cb9e4a234273aa4921efd545', NULL, '2020-06-16 18:14:25', NULL, NULL, 'e4cec9ff15bc0ea42f536a442a6d1335', 'jpnum', NULL, 'jpnum', 'string', NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL); -INSERT INTO "public"."jimu_report_db_field" VALUES ('b450669f376fa9f075ac403c7d7f2ee9', NULL, '2021-01-06 11:43:35', NULL, NULL, '1334390762455965697', 'proportion_3', NULL, 'proportion_3', 'String', NULL, 11, 0, NULL, NULL, NULL, NULL, NULL); -INSERT INTO "public"."jimu_report_db_field" VALUES ('b46d80bfe53372b6ff92a6f8e8bf38df', NULL, '2021-01-05 15:33:07', NULL, NULL, '1316987047604514817', 'hukoudi', NULL, 'hukoudi', NULL, NULL, 27, 0, NULL, NULL, NULL, NULL, NULL); -INSERT INTO "public"."jimu_report_db_field" VALUES ('b5afa6c7c63f649460d4d45b7d697098', NULL, '2021-01-13 11:59:53', NULL, NULL, '1316997232402231298', 'zip_code', NULL, 'zip_code', 'String', NULL, 17, 0, NULL, NULL, NULL, NULL, NULL); -INSERT INTO "public"."jimu_report_db_field" VALUES ('b5df568754994e67a15a8f5b8d4bc297', NULL, '2021-01-13 11:59:53', NULL, NULL, '1316997232402231298', 'phone', NULL, 'phone', 'String', NULL, 19, 0, NULL, NULL, NULL, NULL, NULL); -INSERT INTO "public"."jimu_report_db_field" VALUES ('b863f83ac64327d86f36c8796a00f777', NULL, '2020-06-16 18:14:25', NULL, NULL, 'e4cec9ff15bc0ea42f536a442a6d1335', 'jieshu', NULL, 'jieshu', 'string', NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL); -INSERT INTO "public"."jimu_report_db_field" VALUES ('b8aafd56ddcf6902909722c7d2529797', NULL, '2021-01-05 15:33:07', NULL, NULL, '1316987047604514817', 'department', NULL, 'department', NULL, NULL, 1, 0, NULL, NULL, NULL, NULL, NULL); -INSERT INTO "public"."jimu_report_db_field" VALUES ('ba83ad8a89105b198aa49798f2940c29', NULL, '2021-01-13 11:59:53', NULL, NULL, '1316997232402231298', 'foreign_language', NULL, 'foreign_language', 'String', NULL, 20, 0, NULL, NULL, NULL, NULL, NULL); -INSERT INTO "public"."jimu_report_db_field" VALUES ('bef01b3169ec05f63c9f92245b61bedf', NULL, '2021-02-02 19:13:46', NULL, NULL, '1338756341933543425', 'jperson', NULL, 'jperson', NULL, NULL, 9, 0, NULL, NULL, NULL, NULL, NULL); -INSERT INTO "public"."jimu_report_db_field" VALUES ('c357b23ae68c0ee6c9dab322507dce0b', NULL, '2021-01-11 14:38:14', NULL, NULL, '1317006713165049858', 'jdate', NULL, 'jdate', 'String', NULL, 2, 0, NULL, NULL, NULL, NULL, NULL); -INSERT INTO "public"."jimu_report_db_field" VALUES ('c3b0443ebecc7152343c5ea3ef32a38f', NULL, '2021-01-13 11:59:53', NULL, NULL, '1316997232402231298', 'graduation_time', NULL, 'graduation_time', 'String', NULL, 23, 0, NULL, NULL, NULL, NULL, NULL); -INSERT INTO "public"."jimu_report_db_field" VALUES ('c3d8cd6e68c605fd6d6ac217fed5c8d4', NULL, '2021-01-13 11:59:53', NULL, NULL, '1316997232402231298', 'weight', NULL, 'weight', 'String', NULL, 10, 0, NULL, NULL, NULL, NULL, NULL); -INSERT INTO "public"."jimu_report_db_field" VALUES ('c3fe8f62ea0c6ce9990bfa22dc0265b6', NULL, '2021-01-05 15:33:07', NULL, NULL, '1316987047604514817', 'major', NULL, 'major', NULL, NULL, 13, 0, NULL, NULL, NULL, NULL, NULL); -INSERT INTO "public"."jimu_report_db_field" VALUES ('c40fe2cf7a74a6e96575f73ef5e7d205', NULL, '2021-01-05 15:33:07', NULL, NULL, '1316987047604514817', 'nation', NULL, 'nation', NULL, NULL, 9, 0, NULL, NULL, NULL, NULL, NULL); -INSERT INTO "public"."jimu_report_db_field" VALUES ('c4d6132699dcdff382c93ab10d64551a', NULL, '2021-01-13 11:59:53', NULL, NULL, '1316997232402231298', 'education_experience', NULL, 'education_experience', 'String', NULL, 26, 0, NULL, NULL, NULL, NULL, NULL); -INSERT INTO "public"."jimu_report_db_field" VALUES ('c578969584d9b639d249bcd981bc5a08', NULL, '2021-02-02 19:23:18', NULL, NULL, '94bcd8202bc6bc467efd0d679dadd7bb', 'ydate', NULL, 'ydate', 'String', NULL, 9, 0, NULL, NULL, NULL, NULL, NULL); -INSERT INTO "public"."jimu_report_db_field" VALUES ('c57bd36c25b13a8149268496e54052ae', NULL, '2020-12-17 19:50:14', NULL, NULL, 'fb70a91730f087f8023afd88d24f9697', 'value', NULL, 'value', 'String', NULL, 2, 0, NULL, NULL, NULL, NULL, NULL); -INSERT INTO "public"."jimu_report_db_field" VALUES ('c6144f2ca7422a71e951abea1bce6aaf', NULL, '2021-01-05 15:33:07', NULL, NULL, '1316987047604514817', 'education', NULL, 'education', NULL, NULL, 12, 0, NULL, NULL, NULL, NULL, NULL); -INSERT INTO "public"."jimu_report_db_field" VALUES ('c6820a1e3308badb60582998805a0645', NULL, '2020-06-16 18:14:25', NULL, NULL, 'e4cec9ff15bc0ea42f536a442a6d1335', 'shihelv', NULL, 'shihelv', 'string', NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL); -INSERT INTO "public"."jimu_report_db_field" VALUES ('c8d1276d19bdd946e9fc18b83aacda15', 'admin', '2021-04-01 03:09:23', NULL, NULL, '1289140698221678593', 'cname', NULL, 'cname', 'String', NULL, 3, 0, NULL, NULL, NULL, NULL, NULL); -INSERT INTO "public"."jimu_report_db_field" VALUES ('cb99a516d392d1efb87141ec42168aa9', NULL, '2021-02-02 19:23:18', NULL, NULL, '94bcd8202bc6bc467efd0d679dadd7bb', 'card', NULL, 'card', 'String', NULL, 8, 0, NULL, NULL, NULL, NULL, NULL); -INSERT INTO "public"."jimu_report_db_field" VALUES ('cc91f43bf975f056944b5ec19266ec9c', NULL, '2020-12-17 16:59:12', NULL, NULL, '7911bd189c2d53e182693bd599a315a2', 'value', NULL, 'value', 'String', NULL, 2, 0, NULL, NULL, NULL, NULL, NULL); -INSERT INTO "public"."jimu_report_db_field" VALUES ('cec893b2241134ba9b03ed6d4edf2919', NULL, '2021-01-05 15:33:07', NULL, NULL, '1316987047604514817', 'marital', NULL, 'marital', NULL, NULL, 23, 0, NULL, NULL, NULL, NULL, NULL); -INSERT INTO "public"."jimu_report_db_field" VALUES ('cf9d32fea2f67e4b11cd2823dbbefbad', NULL, '2020-08-03 09:55:46', NULL, NULL, '6011955e58d89040fca52e7f962d0bf4', 'id', NULL, 'id', 'string', NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL); -INSERT INTO "public"."jimu_report_db_field" VALUES ('d076942aecee8f5197b66eb382ba1995', NULL, '2021-01-05 15:33:07', NULL, NULL, '1316987047604514817', 'sbtype', NULL, 'sbtype', NULL, NULL, 33, 0, NULL, NULL, NULL, NULL, NULL); -INSERT INTO "public"."jimu_report_db_field" VALUES ('d3ef9876d3c56889157747be606f70fc', NULL, '2021-01-06 11:43:35', NULL, NULL, '1334390762455965697', 'gift_6', NULL, 'gift_6', 'String', NULL, 19, 0, NULL, NULL, NULL, NULL, NULL); -INSERT INTO "public"."jimu_report_db_field" VALUES ('d5b7b92023a2fb09fed9d36a4ac7b3e3', NULL, '2021-01-06 11:43:35', NULL, NULL, '1334390762455965697', 'sales_z', NULL, 'sales_z', 'String', NULL, 21, 0, NULL, NULL, NULL, NULL, NULL); -INSERT INTO "public"."jimu_report_db_field" VALUES ('da9d0a2565cea7578415076a4d8e6c4c', NULL, '2021-02-02 19:23:18', NULL, NULL, '94bcd8202bc6bc467efd0d679dadd7bb', 'sdate', NULL, 'sdate', 'String', NULL, 12, 0, NULL, NULL, NULL, NULL, NULL); -INSERT INTO "public"."jimu_report_db_field" VALUES ('db503c31de99f35cbcb1f66a69f9964c', NULL, '2021-01-05 15:33:07', NULL, NULL, '1316987047604514817', 'mailbox', NULL, 'mailbox', NULL, NULL, 15, 0, NULL, NULL, NULL, NULL, NULL); -INSERT INTO "public"."jimu_report_db_field" VALUES ('dbc452a77ba1449096852d21c2959f34', NULL, '2021-02-02 19:13:46', NULL, NULL, '1338756341933543425', 'hukou', NULL, 'hukou', 'String', NULL, 7, 0, NULL, NULL, NULL, NULL, NULL); -INSERT INTO "public"."jimu_report_db_field" VALUES ('dd5697ec6eddcca16cca47080e9b801d', NULL, '2021-02-02 19:23:18', NULL, NULL, '94bcd8202bc6bc467efd0d679dadd7bb', 'sld', NULL, 'sld', 'String', NULL, 15, 0, NULL, NULL, NULL, NULL, NULL); -INSERT INTO "public"."jimu_report_db_field" VALUES ('dd56fbd98db5c1cda9dd77637ba1c7e6', NULL, '2021-01-13 11:59:53', NULL, NULL, '1316997232402231298', 'create_by', NULL, 'create_by', 'String', NULL, 28, 0, NULL, NULL, NULL, NULL, NULL); -INSERT INTO "public"."jimu_report_db_field" VALUES ('ddcf7ade58e0a8a520b44fc94e0602bb', NULL, '2021-02-02 19:23:18', NULL, NULL, '94bcd8202bc6bc467efd0d679dadd7bb', 'sk', NULL, 'sk', 'String', NULL, 20, 0, NULL, NULL, NULL, NULL, NULL); -INSERT INTO "public"."jimu_report_db_field" VALUES ('dfbc8bba6261dcd4ceb3da5f517a0d58', NULL, '2021-01-05 15:33:07', NULL, NULL, '1316987047604514817', 'school', NULL, 'school', NULL, NULL, 20, 0, NULL, NULL, NULL, NULL, NULL); -INSERT INTO "public"."jimu_report_db_field" VALUES ('e1c77285c7ca39ebee455895ed081245', NULL, '2021-02-02 19:23:18', NULL, NULL, '94bcd8202bc6bc467efd0d679dadd7bb', 'nation', NULL, 'nation', 'String', NULL, 5, 0, NULL, NULL, NULL, NULL, NULL); -INSERT INTO "public"."jimu_report_db_field" VALUES ('e28cc14c4e1bc2c889f04a6cf30f9196', NULL, '2021-02-02 19:23:18', NULL, NULL, '94bcd8202bc6bc467efd0d679dadd7bb', 'cbr', NULL, 'cbr', 'String', NULL, 14, 0, NULL, NULL, NULL, NULL, NULL); -INSERT INTO "public"."jimu_report_db_field" VALUES ('e52e7896193ad09d700599d2ef6fa8ae', NULL, '2021-02-02 19:30:23', NULL, NULL, '629609c4d540cb4675e9064af8955296', 'knum', NULL, 'knum', 'String', NULL, 4, 0, NULL, NULL, NULL, NULL, NULL); -INSERT INTO "public"."jimu_report_db_field" VALUES ('e7f6104183a7b2408f72b91f4638e9e2', NULL, '2021-01-06 11:43:35', NULL, NULL, '1334390762455965697', 'gift_3', NULL, 'gift_3', 'String', NULL, 10, 0, NULL, NULL, NULL, NULL, NULL); -INSERT INTO "public"."jimu_report_db_field" VALUES ('e8c0f052d6bca9045fdb6197b197a92d', NULL, '2021-02-02 19:13:46', NULL, NULL, '1338756341933543425', 'update_by', NULL, 'update_by', 'String', NULL, 4, 0, NULL, 'zhiwu', NULL, NULL, NULL); -INSERT INTO "public"."jimu_report_db_field" VALUES ('ea6018bdbd9fb192b1d3f9e832b5d382', NULL, '2021-02-02 19:10:15', NULL, NULL, '9b7d28336b01f9a6b1a613957c3d7cda', 'name', NULL, '姓名', 'string', NULL, 2, 0, NULL, NULL, NULL, NULL, NULL); -INSERT INTO "public"."jimu_report_db_field" VALUES ('ec6c6f56c64de5f4de16166000f31d19', NULL, '2020-06-16 18:14:25', NULL, NULL, 'e4cec9ff15bc0ea42f536a442a6d1335', 'ftime', NULL, 'ftime', 'string', NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL); -INSERT INTO "public"."jimu_report_db_field" VALUES ('ef685270770a69bddb4f24e37eed9dc0', NULL, '2021-01-05 15:33:07', NULL, NULL, '1316987047604514817', 'office', NULL, 'office', NULL, NULL, 8, 0, NULL, NULL, NULL, NULL, NULL); -INSERT INTO "public"."jimu_report_db_field" VALUES ('efe17d82b5daaa3f95364e9afaeffd1c', NULL, '2021-01-05 15:33:07', NULL, NULL, '1316987047604514817', 'register', NULL, 'register', NULL, NULL, 11, 0, NULL, NULL, NULL, NULL, NULL); -INSERT INTO "public"."jimu_report_db_field" VALUES ('efe4e0110a61d9791e18308aed422aa7', NULL, '2021-01-05 15:33:07', NULL, NULL, '1316987047604514817', 'name', NULL, 'name', NULL, NULL, 4, 0, NULL, NULL, NULL, NULL, NULL); -INSERT INTO "public"."jimu_report_db_field" VALUES ('f0a83c77c0448a9f7c8c0bc3c7f42f13', NULL, '2021-02-02 19:23:18', NULL, NULL, '94bcd8202bc6bc467efd0d679dadd7bb', 'qfjg', NULL, 'qfjg', 'String', NULL, 10, 0, NULL, NULL, NULL, NULL, NULL); -INSERT INTO "public"."jimu_report_db_field" VALUES ('f110f1f947e0f895b552f7edd133a60a', 'admin', '2021-04-01 03:09:23', NULL, NULL, '1289140698221678593', 'ctotal', NULL, 'ctotal', 'String', NULL, 8, 0, NULL, NULL, NULL, NULL, NULL); -INSERT INTO "public"."jimu_report_db_field" VALUES ('f11af753ccbf495818e9c23c1b083ae2', NULL, '2021-01-13 11:59:53', NULL, NULL, '1316997232402231298', 'foreign_language_level', NULL, 'foreign_language_level', 'String', NULL, 21, 0, NULL, NULL, NULL, NULL, NULL); -INSERT INTO "public"."jimu_report_db_field" VALUES ('f1905f7a175f8e56afd8f6c2969582e6', NULL, '2021-01-06 11:43:35', NULL, NULL, '1334390762455965697', 'gift_5', NULL, 'gift_5', 'String', NULL, 16, 0, NULL, NULL, NULL, NULL, NULL); -INSERT INTO "public"."jimu_report_db_field" VALUES ('f3b4e31c7ff6a365c4130cbc695e2621', NULL, '2021-02-02 19:30:23', NULL, NULL, '629609c4d540cb4675e9064af8955296', 'num', NULL, 'num', 'String', NULL, 3, 0, NULL, NULL, NULL, NULL, NULL); -INSERT INTO "public"."jimu_report_db_field" VALUES ('f430837a3f4c08f425bcd1de46d3a2d3', NULL, '2021-01-05 15:33:07', NULL, NULL, '1316987047604514817', 'sex', NULL, 'sex', NULL, NULL, 5, 0, NULL, NULL, NULL, NULL, NULL); -INSERT INTO "public"."jimu_report_db_field" VALUES ('f53143608c570f9886861442be87b5ff', NULL, '2021-02-02 19:10:15', NULL, NULL, '9b7d28336b01f9a6b1a613957c3d7cda', 'update_by', NULL, '职务', 'String', NULL, 4, 1, 3, 'zhiwu', NULL, NULL, NULL); -INSERT INTO "public"."jimu_report_db_field" VALUES ('f82904af04e557b12dcfe3562900597c', NULL, '2021-01-05 15:33:07', NULL, NULL, '1316987047604514817', 'gdata', NULL, 'gdata', NULL, NULL, 14, 0, NULL, NULL, NULL, NULL, NULL); -INSERT INTO "public"."jimu_report_db_field" VALUES ('f9154d882408b868253ed8fb87879220', NULL, '2021-02-02 19:30:23', NULL, NULL, '629609c4d540cb4675e9064af8955296', 'name', NULL, 'name', 'String', NULL, 1, 0, NULL, NULL, NULL, NULL, NULL); -INSERT INTO "public"."jimu_report_db_field" VALUES ('f95dd09a118b93cc7884b12118448ed4', NULL, '2021-02-02 19:10:15', NULL, NULL, '9b7d28336b01f9a6b1a613957c3d7cda', 'hukou', NULL, 'hukou', 'String', NULL, 7, 0, NULL, NULL, NULL, NULL, NULL); -INSERT INTO "public"."jimu_report_db_field" VALUES ('f978117e8eda0daee2c00223f9df4b48', NULL, '2021-01-13 11:59:53', NULL, NULL, '1316997232402231298', 'update_time', NULL, 'update_time', 'String', NULL, 31, 0, NULL, NULL, NULL, NULL, NULL); -INSERT INTO "public"."jimu_report_db_field" VALUES ('f984ef26fe0a505b279a0e4a3b27201f', NULL, '2021-01-08 10:47:52', NULL, NULL, 'f7649b77cfc9e0a9dacdac370cd4036b', 'shijian', NULL, 'shijian', 'String', NULL, 4, 0, NULL, NULL, NULL, NULL, NULL); -INSERT INTO "public"."jimu_report_db_field" VALUES ('fac871f69237c6c25abe8c4332eabcbf', NULL, '2021-01-08 10:47:52', NULL, NULL, 'f7649b77cfc9e0a9dacdac370cd4036b', 'lingdao', NULL, 'lingdao', 'String', NULL, 3, 0, NULL, NULL, NULL, NULL, NULL); -INSERT INTO "public"."jimu_report_db_field" VALUES ('fc07c053ed0ecbfcc45041640acf6cb1', NULL, '2021-01-05 15:33:07', NULL, NULL, '1316987047604514817', 'party', NULL, 'party', NULL, NULL, 22, 0, NULL, NULL, NULL, NULL, NULL); -INSERT INTO "public"."jimu_report_db_field" VALUES ('fe3b1449ce346836f47234ca65949aea', NULL, '2020-06-16 18:14:25', NULL, NULL, 'e4cec9ff15bc0ea42f536a442a6d1335', 'sfkong', NULL, 'sfkong', 'string', NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL); -INSERT INTO "public"."jimu_report_db_field" VALUES ('ffb5fbe81d2cf48ca45a815c676fd9eb', NULL, '2020-06-16 18:14:25', NULL, NULL, 'e4cec9ff15bc0ea42f536a442a6d1335', 'kaishi', NULL, 'kaishi', 'string', NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL); - --- ---------------------------- --- Table structure for jimu_report_db_param --- ---------------------------- -DROP TABLE IF EXISTS "public"."jimu_report_db_param"; -CREATE TABLE "public"."jimu_report_db_param" ( - "id" varchar(36) COLLATE "pg_catalog"."default" NOT NULL, - "jimu_report_head_id" varchar(36) COLLATE "pg_catalog"."default" NOT NULL, - "param_name" varchar(32) COLLATE "pg_catalog"."default" NOT NULL, - "param_txt" varchar(32) COLLATE "pg_catalog"."default", - "param_value" varchar(1000) COLLATE "pg_catalog"."default", - "order_num" int4, - "create_by" varchar(50) COLLATE "pg_catalog"."default", - "create_time" timestamp(6), - "update_by" varchar(50) COLLATE "pg_catalog"."default", - "update_time" timestamp(6), - "search_flag" int4, - "widget_type" varchar(50) COLLATE "pg_catalog"."default", - "search_mode" int4, - "dict_code" varchar(255) COLLATE "pg_catalog"."default", - "search_format" varchar(50) COLLATE "pg_catalog"."default", - "ext_json" text COLLATE "pg_catalog"."default" -)TABLESPACE "stas" -; -COMMENT ON COLUMN "public"."jimu_report_db_param"."jimu_report_head_id" IS '动态报表ID'; -COMMENT ON COLUMN "public"."jimu_report_db_param"."param_name" IS '参数字段'; -COMMENT ON COLUMN "public"."jimu_report_db_param"."param_txt" IS '参数文本'; -COMMENT ON COLUMN "public"."jimu_report_db_param"."param_value" IS '参数默认值'; -COMMENT ON COLUMN "public"."jimu_report_db_param"."order_num" IS '排序'; -COMMENT ON COLUMN "public"."jimu_report_db_param"."create_by" IS '创建人登录名称'; -COMMENT ON COLUMN "public"."jimu_report_db_param"."create_time" IS '创建日期'; -COMMENT ON COLUMN "public"."jimu_report_db_param"."update_by" IS '更新人登录名称'; -COMMENT ON COLUMN "public"."jimu_report_db_param"."update_time" IS '更新日期'; -COMMENT ON COLUMN "public"."jimu_report_db_param"."search_flag" IS '查询标识0否1是 默认0'; -COMMENT ON COLUMN "public"."jimu_report_db_param"."widget_type" IS '查询控件类型'; -COMMENT ON COLUMN "public"."jimu_report_db_param"."search_mode" IS '查询模式1简单2范围'; -COMMENT ON COLUMN "public"."jimu_report_db_param"."dict_code" IS '字典'; -COMMENT ON COLUMN "public"."jimu_report_db_param"."search_format" IS '查询时间格式化表达式'; -COMMENT ON COLUMN "public"."jimu_report_db_param"."ext_json" IS '参数配置'; - --- ---------------------------- --- Records of jimu_report_db_param --- ---------------------------- -INSERT INTO "public"."jimu_report_db_param" VALUES ('1324279360203526146', '1324279359998005250', 'pageSize', 'pageSize', '10', 2, NULL, '2020-08-03 15:19:54', NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL); -INSERT INTO "public"."jimu_report_db_param" VALUES ('1324279360220303361', '1324279359998005250', 'pageNo', 'pageNo', '1', 1, NULL, '2020-08-03 15:19:54', NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL); -INSERT INTO "public"."jimu_report_db_param" VALUES ('173c869cc45b683a9cfe25826110cead', '1272834687525482497', 'id', 'id', '1', 1, NULL, '2020-08-03 09:57:08', NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL); -INSERT INTO "public"."jimu_report_db_param" VALUES ('1805eb351a966dc3c039b5239b6faa49', '1291310198925840385', 'sex', 'sex', '男', 2, NULL, '2020-06-08 15:21:09', NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL); -INSERT INTO "public"."jimu_report_db_param" VALUES ('256eb2f8582ce4d74559b1fc1e2917ca', '1291310198925840385', 'id', 'id', '111', 1, NULL, '2020-06-08 15:21:09', NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL); -INSERT INTO "public"."jimu_report_db_param" VALUES ('3957799c20fcc696d680cca9649897bb', 'e4cec9ff15bc0ea42f536a442a6d1335', 'id', 'id', '1', 1, NULL, '2020-08-03 09:57:08', NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL); -INSERT INTO "public"."jimu_report_db_param" VALUES ('3a9efc51a6b6723d5a0ddf109aacb2b5', '1288038655293661186', 'pageNo', 'pageNo', '1', 1, 'admin', '2021-04-01 03:09:40', NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL); -INSERT INTO "public"."jimu_report_db_param" VALUES ('3ced36c7a2cce40c667cc485bf59cd11', '1291217511962902530', 'pageSize', 'pageSize', '10', 2, NULL, '2020-08-03 15:19:54', NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL); -INSERT INTO "public"."jimu_report_db_param" VALUES ('49bd3f212cd6c406c8584e6bb0d9cf93', '1291549569390243841', 'pageSize', 'pageSize', '10', 2, NULL, '2020-07-30 17:26:29', NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL); -INSERT INTO "public"."jimu_report_db_param" VALUES ('52db6da75ea733ae741c62cc54c85d92', '6011955e58d89040fca52e7f962d0bf4', 'id', 'id', '1', 1, NULL, '2020-08-03 09:55:46', NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL); -INSERT INTO "public"."jimu_report_db_param" VALUES ('57165a6fe5f2b700d4ef19518de4defd', '1290104038414721025', 'id', 'id', '1', 1, NULL, '2020-08-03 09:55:46', NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL); -INSERT INTO "public"."jimu_report_db_param" VALUES ('7569e95c1fa73d5438aceb19c1b85ef0', '1288038655293661186', 'pageSize', 'pageSize', '20', 2, 'admin', '2021-04-01 03:09:40', NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL); -INSERT INTO "public"."jimu_report_db_param" VALUES ('7d7765754aadaddab91bf1257447ae73', '1291549569390243841', 'pageNo', 'pageNo', '1', 1, NULL, '2020-07-30 17:26:29', NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL); -INSERT INTO "public"."jimu_report_db_param" VALUES ('90b22a058cc331146b548bc93f09b5cd', '1289140698221678593', 'pageSize', 'pageSize', '20', 2, 'admin', '2021-04-01 03:09:23', NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL); -INSERT INTO "public"."jimu_report_db_param" VALUES ('930241691675836416', '930241691461926912', 'customId', NULL, '1', 1, 'admin', '2024-03-20 09:35:13', NULL, NULL, 0, NULL, NULL, NULL, NULL, ''); -INSERT INTO "public"."jimu_report_db_param" VALUES ('930241749263630336', '930045149249585152', 'id', NULL, '', 1, 'admin', '2024-03-20 09:35:26', NULL, NULL, 0, NULL, NULL, NULL, NULL, ''); -INSERT INTO "public"."jimu_report_db_param" VALUES ('a29c10ed01c6608e899e1368f2d5d7e3', '1316997232402231298', 'id', 'id', '1', 1, NULL, '2021-01-13 14:31:13', NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL); -INSERT INTO "public"."jimu_report_db_param" VALUES ('a803707f3383dd9f4685fadc7efa07f4', '1224643501392728065', 'sex', 'sex', '男', 2, NULL, '2020-06-08 15:21:09', NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL); -INSERT INTO "public"."jimu_report_db_param" VALUES ('b7c34e8a3c2804715825af4bdbcf857a', '1224643501392728065', 'id', 'id', '111', 1, NULL, '2020-06-08 15:21:09', NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL); -INSERT INTO "public"."jimu_report_db_param" VALUES ('d8010a4ffbe567e6117e7f59641aeb7c', '1289140698221678593', 'pageNo', 'pageNo', '1', 1, 'admin', '2021-04-01 03:09:23', NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL); -INSERT INTO "public"."jimu_report_db_param" VALUES ('d9d94d6b09dd074f39af96d7a4696f9a', '1291217511962902530', 'pageNo', 'pageNo', '1', 1, NULL, '2020-08-03 15:19:54', NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL); - --- ---------------------------- --- Table structure for jimu_report_export_job --- ---------------------------- -DROP TABLE IF EXISTS "public"."jimu_report_export_job"; -CREATE TABLE "public"."jimu_report_export_job" ( - "id" varchar(32) COLLATE "pg_catalog"."default" NOT NULL, - "name" varchar(100) COLLATE "pg_catalog"."default", - "begin_time" timestamp(6), - "end_time" timestamp(6), - "exec_interval" varchar(100) COLLATE "pg_catalog"."default", - "report_conf" text COLLATE "pg_catalog"."default", - "last_run_time" timestamp(6), - "receiver_email" text COLLATE "pg_catalog"."default", - "file_sync_path" varchar(255) COLLATE "pg_catalog"."default", - "status" int4, - "create_by" varchar(50) COLLATE "pg_catalog"."default", - "create_time" timestamp(6), - "update_by" varchar(50) COLLATE "pg_catalog"."default", - "update_time" timestamp(6), - "tenant_id" varchar(10) COLLATE "pg_catalog"."default" -)TABLESPACE "stas" -; -COMMENT ON COLUMN "public"."jimu_report_export_job"."id" IS '主键'; -COMMENT ON COLUMN "public"."jimu_report_export_job"."name" IS '任务名称'; -COMMENT ON COLUMN "public"."jimu_report_export_job"."begin_time" IS '开始时间'; -COMMENT ON COLUMN "public"."jimu_report_export_job"."end_time" IS '结束时间'; -COMMENT ON COLUMN "public"."jimu_report_export_job"."exec_interval" IS '执行频率'; -COMMENT ON COLUMN "public"."jimu_report_export_job"."report_conf" IS '导出报表配置'; -COMMENT ON COLUMN "public"."jimu_report_export_job"."last_run_time" IS '最后执行时间'; -COMMENT ON COLUMN "public"."jimu_report_export_job"."receiver_email" IS '接收通知的邮件'; -COMMENT ON COLUMN "public"."jimu_report_export_job"."file_sync_path" IS '文件同步路径'; -COMMENT ON COLUMN "public"."jimu_report_export_job"."status" IS '状态(0:停止;1:启动)'; -COMMENT ON COLUMN "public"."jimu_report_export_job"."create_by" IS '创建人'; -COMMENT ON COLUMN "public"."jimu_report_export_job"."create_time" IS '创建时间'; -COMMENT ON COLUMN "public"."jimu_report_export_job"."update_by" IS '修改人'; -COMMENT ON COLUMN "public"."jimu_report_export_job"."update_time" IS '修改时间'; -COMMENT ON COLUMN "public"."jimu_report_export_job"."tenant_id" IS '多租户标识'; -COMMENT ON TABLE "public"."jimu_report_export_job" IS '积木报表导出计划表'; - --- ---------------------------- --- Records of jimu_report_export_job --- ---------------------------- - --- ---------------------------- --- Table structure for jimu_report_export_log --- ---------------------------- -DROP TABLE IF EXISTS "public"."jimu_report_export_log"; -CREATE TABLE "public"."jimu_report_export_log" ( - "id" varchar(32) COLLATE "pg_catalog"."default" NOT NULL, - "batch_no" varchar(50) COLLATE "pg_catalog"."default", - "export_channel" varchar(20) COLLATE "pg_catalog"."default", - "export_type" varchar(10) COLLATE "pg_catalog"."default", - "report_id" text COLLATE "pg_catalog"."default", - "download_path" varchar(255) COLLATE "pg_catalog"."default", - "status" varchar(15) COLLATE "pg_catalog"."default", - "create_by" varchar(32) COLLATE "pg_catalog"."default", - "create_time" timestamp(6), - "update_time" timestamp(6), - "tenant_id" varchar(10) COLLATE "pg_catalog"."default" -)TABLESPACE "stas" -; -COMMENT ON COLUMN "public"."jimu_report_export_log"."batch_no" IS '批次编号'; -COMMENT ON COLUMN "public"."jimu_report_export_log"."export_channel" IS '导出渠道'; -COMMENT ON COLUMN "public"."jimu_report_export_log"."export_type" IS '导出类型'; -COMMENT ON COLUMN "public"."jimu_report_export_log"."report_id" IS '报表id'; -COMMENT ON COLUMN "public"."jimu_report_export_log"."download_path" IS '下载路径'; -COMMENT ON COLUMN "public"."jimu_report_export_log"."status" IS '状态'; -COMMENT ON COLUMN "public"."jimu_report_export_log"."create_by" IS '创建人'; -COMMENT ON COLUMN "public"."jimu_report_export_log"."create_time" IS '创建时间'; -COMMENT ON COLUMN "public"."jimu_report_export_log"."update_time" IS '更新时间'; -COMMENT ON COLUMN "public"."jimu_report_export_log"."tenant_id" IS '多租户标识'; -COMMENT ON TABLE "public"."jimu_report_export_log" IS '积木报表自动导出记录表'; - --- ---------------------------- --- Records of jimu_report_export_log --- ---------------------------- - --- ---------------------------- --- Table structure for jimu_report_icon_lib --- ---------------------------- -DROP TABLE IF EXISTS "public"."jimu_report_icon_lib"; -CREATE TABLE "public"."jimu_report_icon_lib" ( - "id" varchar(32) COLLATE "pg_catalog"."default" NOT NULL, - "name" varchar(100) COLLATE "pg_catalog"."default", - "type" varchar(32) COLLATE "pg_catalog"."default", - "image_url" varchar(255) COLLATE "pg_catalog"."default", - "create_by" varchar(32) COLLATE "pg_catalog"."default", - "create_time" timestamp(6), - "update_by" varchar(32) COLLATE "pg_catalog"."default", - "update_time" timestamp(6), - "tenant_id" int4 -)TABLESPACE "stas" -; -COMMENT ON COLUMN "public"."jimu_report_icon_lib"."id" IS '主键'; -COMMENT ON COLUMN "public"."jimu_report_icon_lib"."name" IS '图片名称'; -COMMENT ON COLUMN "public"."jimu_report_icon_lib"."type" IS '图片类型'; -COMMENT ON COLUMN "public"."jimu_report_icon_lib"."image_url" IS '图片地址'; -COMMENT ON COLUMN "public"."jimu_report_icon_lib"."create_by" IS '创建人'; -COMMENT ON COLUMN "public"."jimu_report_icon_lib"."create_time" IS '创建时间'; -COMMENT ON COLUMN "public"."jimu_report_icon_lib"."update_by" IS '更新人'; -COMMENT ON COLUMN "public"."jimu_report_icon_lib"."update_time" IS '更新时间'; -COMMENT ON COLUMN "public"."jimu_report_icon_lib"."tenant_id" IS '租户id'; -COMMENT ON TABLE "public"."jimu_report_icon_lib" IS '积木图库表'; - --- ---------------------------- --- Records of jimu_report_icon_lib --- ---------------------------- -INSERT INTO "public"."jimu_report_icon_lib" VALUES ('1049528030907236352', '规模', 'common', 'https://jimureport.oss-cn-beijing.aliyuncs.com/designreport/iconlib/cygm.png', 'admin', '2025-02-12 13:36:32', NULL, NULL, 1); -INSERT INTO "public"."jimu_report_icon_lib" VALUES ('1049528060653240320', '地图', 'common', 'https://jimureport.oss-cn-beijing.aliyuncs.com/designreport/iconlib/map.png', 'admin', '2025-02-12 13:36:39', NULL, NULL, 1); -INSERT INTO "public"."jimu_report_icon_lib" VALUES ('1049528097315651584', '模块', 'common', 'https://jimureport.oss-cn-beijing.aliyuncs.com/designreport/iconlib/gnmk.png', 'admin', '2025-02-12 13:36:48', NULL, NULL, 1); -INSERT INTO "public"."jimu_report_icon_lib" VALUES ('1049528141758496768', '数据', 'common', 'https://jimureport.oss-cn-beijing.aliyuncs.com/designreport/iconlib/glsj.png', 'admin', '2025-02-12 13:36:59', NULL, NULL, 1); -INSERT INTO "public"."jimu_report_icon_lib" VALUES ('1049528176160178176', '兼容', 'common', 'https://jimureport.oss-cn-beijing.aliyuncs.com/designreport/iconlib/jr.png', 'admin', '2025-02-12 13:37:07', NULL, NULL, 1); -INSERT INTO "public"."jimu_report_icon_lib" VALUES ('1049528216056397824', '聚焦', 'common', 'https://jimureport.oss-cn-beijing.aliyuncs.com/designreport/iconlib/jj.png', 'admin', '2025-02-12 13:37:16', NULL, NULL, 1); -INSERT INTO "public"."jimu_report_icon_lib" VALUES ('1049528260608294912', '分析', 'common', 'https://jimureport.oss-cn-beijing.aliyuncs.com/designreport/iconlib/sjfx.png', 'admin', '2025-02-12 13:37:27', NULL, NULL, 1); -INSERT INTO "public"."jimu_report_icon_lib" VALUES ('1049528435443662848', '分裂', 'common', 'https://jimureport.oss-cn-beijing.aliyuncs.com/designreport/iconlib/sjlb.png', 'admin', '2025-02-12 13:38:09', NULL, NULL, 1); -INSERT INTO "public"."jimu_report_icon_lib" VALUES ('1049528483522969600', '趋势', 'common', 'https://jimureport.oss-cn-beijing.aliyuncs.com/designreport/iconlib/sjzs.png', 'admin', '2025-02-12 13:38:20', NULL, NULL, 1); -INSERT INTO "public"."jimu_report_icon_lib" VALUES ('1049528593581506560', '数据', 'common', 'https://jimureport.oss-cn-beijing.aliyuncs.com/designreport/iconlib/xxk.png', 'admin', '2025-02-12 13:38:46', NULL, NULL, 1); -INSERT INTO "public"."jimu_report_icon_lib" VALUES ('1049528640859701248', '指纹', 'common', 'https://jimureport.oss-cn-beijing.aliyuncs.com/designreport/iconlib/zwsb.png', 'admin', '2025-02-12 13:38:58', NULL, NULL, 1); -INSERT INTO "public"."jimu_report_icon_lib" VALUES ('1049528685608730624', '柱图', 'common', 'https://jimureport.oss-cn-beijing.aliyuncs.com/designreport/iconlib/bar.png', 'admin', '2025-02-12 13:39:08', 'admin', '2025-04-02 22:32:19', 1000); -INSERT INTO "public"."jimu_report_icon_lib" VALUES ('1666271025769230337', 'icon1', '3D', 'https://jimureport.oss-cn-beijing.aliyuncs.com/designreport/iconlib/3D/1666271025769230337.png', 'admin', '2025-03-07 13:36:32', NULL, NULL, 1); -INSERT INTO "public"."jimu_report_icon_lib" VALUES ('1666271025773424641', 'icon2', '3D', 'https://jimureport.oss-cn-beijing.aliyuncs.com/designreport/iconlib/3D/1666271025773424641.png', 'admin', '2025-03-07 13:36:32', NULL, NULL, 1); -INSERT INTO "public"."jimu_report_icon_lib" VALUES ('1666271025781813249', 'icon3', '3D', 'https://jimureport.oss-cn-beijing.aliyuncs.com/designreport/iconlib/3D/1666271025781813249.png', 'admin', '2025-03-07 13:36:32', NULL, NULL, 1); -INSERT INTO "public"."jimu_report_icon_lib" VALUES ('1666271025786007553', 'icon4', '3D', 'https://jimureport.oss-cn-beijing.aliyuncs.com/designreport/iconlib/3D/1666271025786007553.png', 'admin', '2025-03-07 13:36:32', NULL, NULL, 1); -INSERT INTO "public"."jimu_report_icon_lib" VALUES ('1666271025790201858', 'icon5', '3D', 'https://jimureport.oss-cn-beijing.aliyuncs.com/designreport/iconlib/3D/1666271025790201858.png', 'admin', '2025-03-07 13:36:32', NULL, NULL, 1); -INSERT INTO "public"."jimu_report_icon_lib" VALUES ('1666271025798590465', 'icon6', '3D', 'https://jimureport.oss-cn-beijing.aliyuncs.com/designreport/iconlib/3D/1666271025798590465.png', 'admin', '2025-03-07 13:36:32', NULL, NULL, 1); -INSERT INTO "public"."jimu_report_icon_lib" VALUES ('1666271025802784769', 'icon7', '3D', 'https://jimureport.oss-cn-beijing.aliyuncs.com/designreport/iconlib/3D/1666271025802784769.png', 'admin', '2025-03-07 13:36:32', NULL, NULL, 1); -INSERT INTO "public"."jimu_report_icon_lib" VALUES ('1666271025806979073', 'icon8', '3D', 'https://jimureport.oss-cn-beijing.aliyuncs.com/designreport/iconlib/3D/1666271025806979073.png', 'admin', '2025-03-07 13:36:32', NULL, NULL, 1); -INSERT INTO "public"."jimu_report_icon_lib" VALUES ('1666271025811173377', 'icon9', '3D', 'https://jimureport.oss-cn-beijing.aliyuncs.com/designreport/iconlib/3D/1666271025811173377.png', 'admin', '2025-03-07 13:36:32', NULL, NULL, 1); -INSERT INTO "public"."jimu_report_icon_lib" VALUES ('1666271025819561986', 'icon10', '3D', 'https://jimureport.oss-cn-beijing.aliyuncs.com/designreport/iconlib/3D/1666271025819561986.png', 'admin', '2025-03-07 13:36:32', NULL, NULL, 1); -INSERT INTO "public"."jimu_report_icon_lib" VALUES ('1666271025827950594', 'icon11', '3D', 'https://jimureport.oss-cn-beijing.aliyuncs.com/designreport/iconlib/3D/1666271025827950594.png', 'admin', '2025-03-07 13:36:32', NULL, NULL, 1); -INSERT INTO "public"."jimu_report_icon_lib" VALUES ('1666271025832144898', 'icon12', '3D', 'https://jimureport.oss-cn-beijing.aliyuncs.com/designreport/iconlib/3D/1666271025832144898.png', 'admin', '2025-03-07 13:36:32', NULL, NULL, 1); -INSERT INTO "public"."jimu_report_icon_lib" VALUES ('1666271025857310721', 'icon13', '3D', 'https://jimureport.oss-cn-beijing.aliyuncs.com/designreport/iconlib/3D/1666271025857310721.png', 'admin', '2025-03-07 13:36:32', NULL, NULL, 1); -INSERT INTO "public"."jimu_report_icon_lib" VALUES ('1666271025869893633', 'icon14', '3D', 'https://jimureport.oss-cn-beijing.aliyuncs.com/designreport/iconlib/3D/1666271025869893633.png', 'admin', '2025-03-07 13:36:32', NULL, NULL, 1); -INSERT INTO "public"."jimu_report_icon_lib" VALUES ('1666271025869893634', 'icon15', '3D', 'https://jimureport.oss-cn-beijing.aliyuncs.com/designreport/iconlib/3D/1666271025869893634.png', 'admin', '2025-03-07 13:36:32', NULL, NULL, 1); -INSERT INTO "public"."jimu_report_icon_lib" VALUES ('1666271025878282241', 'icon16', '3D', 'https://jimureport.oss-cn-beijing.aliyuncs.com/designreport/iconlib/3D/1666271025878282241.png', 'admin', '2025-03-07 13:36:32', NULL, NULL, 1); -INSERT INTO "public"."jimu_report_icon_lib" VALUES ('1666271025937002497', 'icon17', '3D', 'https://jimureport.oss-cn-beijing.aliyuncs.com/designreport/iconlib/3D/1666271025937002497.png', 'admin', '2025-03-07 13:36:32', NULL, NULL, 1); -INSERT INTO "public"."jimu_report_icon_lib" VALUES ('1666271025953779713', 'icon18', '3D', 'https://jimureport.oss-cn-beijing.aliyuncs.com/designreport/iconlib/3D/1666271025953779713.png', 'admin', '2025-03-07 13:36:32', NULL, NULL, 1); -INSERT INTO "public"."jimu_report_icon_lib" VALUES ('1666271025962168322', 'icon19', '3D', 'https://jimureport.oss-cn-beijing.aliyuncs.com/designreport/iconlib/3D/1666271025962168322.png', 'admin', '2025-03-07 13:36:32', NULL, NULL, 1); -INSERT INTO "public"."jimu_report_icon_lib" VALUES ('1666271025966362626', 'icon20', '3D', 'https://jimureport.oss-cn-beijing.aliyuncs.com/designreport/iconlib/3D/1666271025966362626.png', 'admin', '2025-03-07 13:36:32', NULL, NULL, 1); -INSERT INTO "public"."jimu_report_icon_lib" VALUES ('1666271025983139842', 'icon21', '3D', 'https://jimureport.oss-cn-beijing.aliyuncs.com/designreport/iconlib/3D/1666271025983139842.png', 'admin', '2025-03-07 13:36:32', NULL, NULL, 1); -INSERT INTO "public"."jimu_report_icon_lib" VALUES ('1666271025995722753', 'icon22', '3D', 'https://jimureport.oss-cn-beijing.aliyuncs.com/designreport/iconlib/3D/1666271025995722753.png', 'admin', '2025-03-07 13:36:32', NULL, NULL, 1); -INSERT INTO "public"."jimu_report_icon_lib" VALUES ('1666271025999917058', 'icon23', '3D', 'https://jimureport.oss-cn-beijing.aliyuncs.com/designreport/iconlib/3D/1666271025999917058.png', 'admin', '2025-03-07 13:36:32', NULL, NULL, 1); -INSERT INTO "public"."jimu_report_icon_lib" VALUES ('1666271026004111361', 'icon24', '3D', 'https://jimureport.oss-cn-beijing.aliyuncs.com/designreport/iconlib/3D/1666271026004111361.png', 'admin', '2025-03-07 13:36:32', NULL, NULL, 1); -INSERT INTO "public"."jimu_report_icon_lib" VALUES ('1666271026008305666', 'icon25', '3D', 'https://jimureport.oss-cn-beijing.aliyuncs.com/designreport/iconlib/3D/1666271026008305666.png', 'admin', '2025-03-07 13:36:32', NULL, NULL, 1); -INSERT INTO "public"."jimu_report_icon_lib" VALUES ('1666271026016694273', 'icon26', '3D', 'https://jimureport.oss-cn-beijing.aliyuncs.com/designreport/iconlib/3D/1666271026016694273.png', 'admin', '2025-03-07 13:36:32', NULL, NULL, 1); -INSERT INTO "public"."jimu_report_icon_lib" VALUES ('1666271026020888578', 'icon27', '3D', 'https://jimureport.oss-cn-beijing.aliyuncs.com/designreport/iconlib/3D/1666271026020888578.png', 'admin', '2025-03-07 13:36:32', NULL, NULL, 1); -INSERT INTO "public"."jimu_report_icon_lib" VALUES ('1666271026025082882', 'icon28', '3D', 'https://jimureport.oss-cn-beijing.aliyuncs.com/designreport/iconlib/3D/1666271026025082882.png', 'admin', '2025-03-07 13:36:32', NULL, NULL, 1); -INSERT INTO "public"."jimu_report_icon_lib" VALUES ('1666271026029277185', 'icon29', '3D', 'https://jimureport.oss-cn-beijing.aliyuncs.com/designreport/iconlib/3D/1666271026029277185.png', 'admin', '2025-03-07 13:36:32', NULL, NULL, 1); -INSERT INTO "public"."jimu_report_icon_lib" VALUES ('1666271026037665793', 'icon30', '3D', 'https://jimureport.oss-cn-beijing.aliyuncs.com/designreport/iconlib/3D/1666271026037665793.png', 'admin', '2025-03-07 13:36:32', NULL, NULL, 1); -INSERT INTO "public"."jimu_report_icon_lib" VALUES ('1666271026046054402', 'icon31', '3D', 'https://jimureport.oss-cn-beijing.aliyuncs.com/designreport/iconlib/3D/1666271026046054402.png', 'admin', '2025-03-07 13:36:32', NULL, NULL, 1); -INSERT INTO "public"."jimu_report_icon_lib" VALUES ('1666271026050248706', 'icon32', '3D', 'https://jimureport.oss-cn-beijing.aliyuncs.com/designreport/iconlib/3D/1666271026050248706.png', 'admin', '2025-03-07 13:36:32', NULL, NULL, 1); -INSERT INTO "public"."jimu_report_icon_lib" VALUES ('1666271026054443010', 'icon33', '3D', 'https://jimureport.oss-cn-beijing.aliyuncs.com/designreport/iconlib/3D/1666271026054443010.png', 'admin', '2025-03-07 13:36:32', NULL, NULL, 1); -INSERT INTO "public"."jimu_report_icon_lib" VALUES ('1666271026058637314', 'icon34', '3D', 'https://jimureport.oss-cn-beijing.aliyuncs.com/designreport/iconlib/3D/1666271026058637314.png', 'admin', '2025-03-07 13:36:32', NULL, NULL, 1); -INSERT INTO "public"."jimu_report_icon_lib" VALUES ('1666271026062831617', 'icon35', '3D', 'https://jimureport.oss-cn-beijing.aliyuncs.com/designreport/iconlib/3D/1666271026062831617.png', 'admin', '2025-03-07 13:36:32', NULL, NULL, 1); -INSERT INTO "public"."jimu_report_icon_lib" VALUES ('1666271026071220225', 'icon36', '3D', 'https://jimureport.oss-cn-beijing.aliyuncs.com/designreport/iconlib/3D/1666271026071220225.png', 'admin', '2025-03-07 13:36:32', NULL, NULL, 1); -INSERT INTO "public"."jimu_report_icon_lib" VALUES ('1666271026087997442', 'icon37', '3D', 'https://jimureport.oss-cn-beijing.aliyuncs.com/designreport/iconlib/3D/1666271026087997442.png', 'admin', '2025-03-07 13:36:32', NULL, NULL, 1); -INSERT INTO "public"."jimu_report_icon_lib" VALUES ('1666271026096386049', 'icon38', '3D', 'https://jimureport.oss-cn-beijing.aliyuncs.com/designreport/iconlib/3D/1666271026096386049.png', 'admin', '2025-03-07 13:36:32', NULL, NULL, 1); -INSERT INTO "public"."jimu_report_icon_lib" VALUES ('1666271026108968962', 'icon39', '3D', 'https://jimureport.oss-cn-beijing.aliyuncs.com/designreport/iconlib/3D/1666271026108968962.png', 'admin', '2025-03-07 13:36:32', NULL, NULL, 1); -INSERT INTO "public"."jimu_report_icon_lib" VALUES ('1666271026113163266', 'icon40', '3D', 'https://jimureport.oss-cn-beijing.aliyuncs.com/designreport/iconlib/3D/1666271026113163266.png', 'admin', '2025-03-07 13:36:32', NULL, NULL, 1); -INSERT INTO "public"."jimu_report_icon_lib" VALUES ('1666271026117357570', 'icon41', '3D', 'https://jimureport.oss-cn-beijing.aliyuncs.com/designreport/iconlib/3D/1666271026117357570.png', 'admin', '2025-03-07 13:36:32', NULL, NULL, 1); -INSERT INTO "public"."jimu_report_icon_lib" VALUES ('1666271026125746177', 'icon42', '3D', 'https://jimureport.oss-cn-beijing.aliyuncs.com/designreport/iconlib/3D/1666271026125746177.png', 'admin', '2025-03-07 13:36:32', NULL, NULL, 1); -INSERT INTO "public"."jimu_report_icon_lib" VALUES ('1666271026146717698', 'icon43', '3D', 'https://jimureport.oss-cn-beijing.aliyuncs.com/designreport/iconlib/3D/1666271026146717698.png', 'admin', '2025-03-07 13:36:32', NULL, NULL, 1); -INSERT INTO "public"."jimu_report_icon_lib" VALUES ('1666271026150912002', 'icon44', '3D', 'https://jimureport.oss-cn-beijing.aliyuncs.com/designreport/iconlib/3D/1666271026150912002.png', 'admin', '2025-03-07 13:36:32', NULL, NULL, 1); -INSERT INTO "public"."jimu_report_icon_lib" VALUES ('1666271026155106306', 'icon45', '3D', 'https://jimureport.oss-cn-beijing.aliyuncs.com/designreport/iconlib/3D/1666271026155106306.png', 'admin', '2025-03-07 13:36:32', NULL, NULL, 1); -INSERT INTO "public"."jimu_report_icon_lib" VALUES ('1666271026163494914', 'icon46', '3D', 'https://jimureport.oss-cn-beijing.aliyuncs.com/designreport/iconlib/3D/1666271026163494914.png', 'admin', '2025-03-07 13:36:32', NULL, NULL, 1); -INSERT INTO "public"."jimu_report_icon_lib" VALUES ('1666271026167689217', 'icon47', '3D', 'https://jimureport.oss-cn-beijing.aliyuncs.com/designreport/iconlib/3D/1666271026167689217.png', 'admin', '2025-03-07 13:36:32', NULL, NULL, 1); -INSERT INTO "public"."jimu_report_icon_lib" VALUES ('1666271026176077825', 'icon48', '3D', 'https://jimureport.oss-cn-beijing.aliyuncs.com/designreport/iconlib/3D/1666271026176077825.png', 'admin', '2025-03-07 13:36:32', NULL, NULL, 1); -INSERT INTO "public"."jimu_report_icon_lib" VALUES ('1666271026192855042', 'icon49', '3D', 'https://jimureport.oss-cn-beijing.aliyuncs.com/designreport/iconlib/3D/1666271026192855042.png', 'admin', '2025-03-07 13:36:32', NULL, NULL, 1); -INSERT INTO "public"."jimu_report_icon_lib" VALUES ('1666271026197049346', 'icon50', '3D', 'https://jimureport.oss-cn-beijing.aliyuncs.com/designreport/iconlib/3D/1666271026197049346.png', 'admin', '2025-03-07 13:36:32', NULL, NULL, 1); -INSERT INTO "public"."jimu_report_icon_lib" VALUES ('1666271026205437954', 'icon51', '3D', 'https://jimureport.oss-cn-beijing.aliyuncs.com/designreport/iconlib/3D/1666271026205437954.png', 'admin', '2025-03-07 13:36:32', NULL, NULL, 1); -INSERT INTO "public"."jimu_report_icon_lib" VALUES ('1666271026218020865', 'icon52', '3D', 'https://jimureport.oss-cn-beijing.aliyuncs.com/designreport/iconlib/3D/1666271026218020865.png', 'admin', '2025-03-07 13:36:32', NULL, NULL, 1); -INSERT INTO "public"."jimu_report_icon_lib" VALUES ('1666271026226409473', 'icon53', '3D', 'https://jimureport.oss-cn-beijing.aliyuncs.com/designreport/iconlib/3D/1666271026226409473.png', 'admin', '2025-03-07 13:36:32', NULL, NULL, 1); -INSERT INTO "public"."jimu_report_icon_lib" VALUES ('1666271026234798081', 'icon54', '3D', 'https://jimureport.oss-cn-beijing.aliyuncs.com/designreport/iconlib/3D/1666271026234798081.png', 'admin', '2025-03-07 13:36:32', NULL, NULL, 1); -INSERT INTO "public"."jimu_report_icon_lib" VALUES ('1666271026247380993', 'icon55', '3D', 'https://jimureport.oss-cn-beijing.aliyuncs.com/designreport/iconlib/3D/1666271026247380993.png', 'admin', '2025-03-07 13:36:32', NULL, NULL, 1); -INSERT INTO "public"."jimu_report_icon_lib" VALUES ('1666271026259963906', 'icon56', '3D', 'https://jimureport.oss-cn-beijing.aliyuncs.com/designreport/iconlib/3D/1666271026259963906.png', 'admin', '2025-03-07 13:36:32', NULL, NULL, 1); -INSERT INTO "public"."jimu_report_icon_lib" VALUES ('1666271026264158210', 'icon57', '3D', 'https://jimureport.oss-cn-beijing.aliyuncs.com/designreport/iconlib/3D/1666271026264158210.png', 'admin', '2025-03-07 13:36:32', NULL, NULL, 1); -INSERT INTO "public"."jimu_report_icon_lib" VALUES ('1666271026272546818', 'icon58', '3D', 'https://jimureport.oss-cn-beijing.aliyuncs.com/designreport/iconlib/3D/1666271026272546818.png', 'admin', '2025-03-07 13:36:32', NULL, NULL, 1); -INSERT INTO "public"."jimu_report_icon_lib" VALUES ('1666271026280935425', 'icon59', '3D', 'https://jimureport.oss-cn-beijing.aliyuncs.com/designreport/iconlib/3D/1666271026280935425.png', 'admin', '2025-03-07 13:36:32', NULL, NULL, 1); -INSERT INTO "public"."jimu_report_icon_lib" VALUES ('1666271026285129729', 'icon60', '3D', 'https://jimureport.oss-cn-beijing.aliyuncs.com/designreport/iconlib/3D/1666271026285129729.png', 'admin', '2025-03-07 13:36:32', NULL, NULL, 1); -INSERT INTO "public"."jimu_report_icon_lib" VALUES ('1666271026289324034', 'icon61', '3D', 'https://jimureport.oss-cn-beijing.aliyuncs.com/designreport/iconlib/3D/1666271026289324034.png', 'admin', '2025-03-07 13:36:32', NULL, NULL, 1); -INSERT INTO "public"."jimu_report_icon_lib" VALUES ('1666271026293518338', 'icon62', '3D', 'https://jimureport.oss-cn-beijing.aliyuncs.com/designreport/iconlib/3D/1666271026293518338.png', 'admin', '2025-03-07 13:36:32', NULL, NULL, 1); -INSERT INTO "public"."jimu_report_icon_lib" VALUES ('1666271026297712642', 'icon63', '3D', 'https://jimureport.oss-cn-beijing.aliyuncs.com/designreport/iconlib/3D/1666271026297712642.png', 'admin', '2025-03-07 13:36:32', NULL, NULL, 1); -INSERT INTO "public"."jimu_report_icon_lib" VALUES ('1666271026301906945', 'icon64', '3D', 'https://jimureport.oss-cn-beijing.aliyuncs.com/designreport/iconlib/3D/1666271026301906945.png', 'admin', '2025-03-07 13:36:32', NULL, NULL, 1); -INSERT INTO "public"."jimu_report_icon_lib" VALUES ('1666271026310295553', 'icon65', '3D', 'https://jimureport.oss-cn-beijing.aliyuncs.com/designreport/iconlib/3D/1666271026310295553.png', 'admin', '2025-03-07 13:36:32', NULL, NULL, 1); -INSERT INTO "public"."jimu_report_icon_lib" VALUES ('1666271026331267074', 'icon66', '3D', 'https://jimureport.oss-cn-beijing.aliyuncs.com/designreport/iconlib/3D/1666271026331267074.png', 'admin', '2025-03-07 13:36:32', NULL, NULL, 1); -INSERT INTO "public"."jimu_report_icon_lib" VALUES ('1666271026339655682', 'icon67', '3D', 'https://jimureport.oss-cn-beijing.aliyuncs.com/designreport/iconlib/3D/1666271026339655682.png', 'admin', '2025-03-07 13:36:32', NULL, NULL, 1); -INSERT INTO "public"."jimu_report_icon_lib" VALUES ('1666271026343849985', 'icon68', '3D', 'https://jimureport.oss-cn-beijing.aliyuncs.com/designreport/iconlib/3D/1666271026343849985.png', 'admin', '2025-03-07 13:36:32', NULL, NULL, 1); -INSERT INTO "public"."jimu_report_icon_lib" VALUES ('1666271026348044289', 'icon69', '3D', 'https://jimureport.oss-cn-beijing.aliyuncs.com/designreport/iconlib/3D/1666271026348044289.png', 'admin', '2025-03-07 13:36:32', NULL, NULL, 1); -INSERT INTO "public"."jimu_report_icon_lib" VALUES ('1666271026356432897', 'icon70', '3D', 'https://jimureport.oss-cn-beijing.aliyuncs.com/designreport/iconlib/3D/1666271026356432897.png', 'admin', '2025-03-07 13:36:32', NULL, NULL, 1); -INSERT INTO "public"."jimu_report_icon_lib" VALUES ('1666271026360627202', 'icon71', '3D', 'https://jimureport.oss-cn-beijing.aliyuncs.com/designreport/iconlib/3D/1666271026360627202.png', 'admin', '2025-03-07 13:36:32', NULL, NULL, 1); -INSERT INTO "public"."jimu_report_icon_lib" VALUES ('1666271026364821506', 'icon72', '3D', 'https://jimureport.oss-cn-beijing.aliyuncs.com/designreport/iconlib/3D/1666271026364821506.png', 'admin', '2025-03-07 13:36:32', NULL, NULL, 1); -INSERT INTO "public"."jimu_report_icon_lib" VALUES ('1666271026381598721', 'icon73', '3D', 'https://jimureport.oss-cn-beijing.aliyuncs.com/designreport/iconlib/3D/1666271026381598721.png', 'admin', '2025-03-07 13:36:32', NULL, NULL, 1); -INSERT INTO "public"."jimu_report_icon_lib" VALUES ('1666271026389987329', 'icon74', '3D', 'https://jimureport.oss-cn-beijing.aliyuncs.com/designreport/iconlib/3D/1666271026389987329.png', 'admin', '2025-03-07 13:36:32', NULL, NULL, 1); -INSERT INTO "public"."jimu_report_icon_lib" VALUES ('1666271026394181634', 'icon75', '3D', 'https://jimureport.oss-cn-beijing.aliyuncs.com/designreport/iconlib/3D/1666271026394181634.png', 'admin', '2025-03-07 13:36:32', NULL, NULL, 1); -INSERT INTO "public"."jimu_report_icon_lib" VALUES ('1666271026398375938', 'icon76', '3D', 'https://jimureport.oss-cn-beijing.aliyuncs.com/designreport/iconlib/3D/1666271026398375938.png', 'admin', '2025-03-07 13:36:32', NULL, NULL, 1); -INSERT INTO "public"."jimu_report_icon_lib" VALUES ('1666271026402570242', 'icon77', '3D', 'https://jimureport.oss-cn-beijing.aliyuncs.com/designreport/iconlib/3D/1666271026402570242.png', 'admin', '2025-03-07 13:36:32', NULL, NULL, 1); -INSERT INTO "public"."jimu_report_icon_lib" VALUES ('1666271026406764546', 'icon78', '3D', 'https://jimureport.oss-cn-beijing.aliyuncs.com/designreport/iconlib/3D/1666271026406764546.png', 'admin', '2025-03-07 13:36:32', NULL, NULL, 1); -INSERT INTO "public"."jimu_report_icon_lib" VALUES ('1666271026410958850', 'icon79', '3D', 'https://jimureport.oss-cn-beijing.aliyuncs.com/designreport/iconlib/3D/1666271026410958850.png', 'admin', '2025-03-07 13:36:32', NULL, NULL, 1); -INSERT INTO "public"."jimu_report_icon_lib" VALUES ('1666271026419347457', 'icon80', '3D', 'https://jimureport.oss-cn-beijing.aliyuncs.com/designreport/iconlib/3D/1666271026419347457.png', 'admin', '2025-03-07 13:36:32', NULL, NULL, 1); -INSERT INTO "public"."jimu_report_icon_lib" VALUES ('1666271026423541762', 'icon81', '3D', 'https://jimureport.oss-cn-beijing.aliyuncs.com/designreport/iconlib/3D/1666271026423541762.png', 'admin', '2025-03-07 13:36:32', NULL, NULL, 1); -INSERT INTO "public"."jimu_report_icon_lib" VALUES ('1666271026427736065', 'icon82', '3D', 'https://jimureport.oss-cn-beijing.aliyuncs.com/designreport/iconlib/3D/1666271026427736065.png', 'admin', '2025-03-07 13:36:32', NULL, NULL, 1); -INSERT INTO "public"."jimu_report_icon_lib" VALUES ('1666271026436124673', 'icon83', '3D', 'https://jimureport.oss-cn-beijing.aliyuncs.com/designreport/iconlib/3D/1666271026436124673.png', 'admin', '2025-03-07 13:36:32', NULL, NULL, 1); -INSERT INTO "public"."jimu_report_icon_lib" VALUES ('1666271026436124674', 'icon84', '3D', 'https://jimureport.oss-cn-beijing.aliyuncs.com/designreport/iconlib/3D/1666271026436124674.png', 'admin', '2025-03-07 13:36:32', NULL, NULL, 1); -INSERT INTO "public"."jimu_report_icon_lib" VALUES ('1666271026440318977', 'icon85', '3D', 'https://jimureport.oss-cn-beijing.aliyuncs.com/designreport/iconlib/3D/1666271026440318977.png', 'admin', '2025-03-07 13:36:32', NULL, NULL, 1); -INSERT INTO "public"."jimu_report_icon_lib" VALUES ('1666271026444513281', 'icon86', '3D', 'https://jimureport.oss-cn-beijing.aliyuncs.com/designreport/iconlib/3D/1666271026444513281.png', 'admin', '2025-03-07 13:36:32', NULL, NULL, 1); -INSERT INTO "public"."jimu_report_icon_lib" VALUES ('1666271026457096194', 'icon87', '3D', 'https://jimureport.oss-cn-beijing.aliyuncs.com/designreport/iconlib/3D/1666271026457096194.png', 'admin', '2025-03-07 13:36:32', NULL, NULL, 1); -INSERT INTO "public"."jimu_report_icon_lib" VALUES ('1666271026469679105', 'icon88', '3D', 'https://jimureport.oss-cn-beijing.aliyuncs.com/designreport/iconlib/3D/1666271026469679105.png', 'admin', '2025-03-07 13:36:32', NULL, NULL, 1); -INSERT INTO "public"."jimu_report_icon_lib" VALUES ('1666271026473873409', 'icon89', '3D', 'https://jimureport.oss-cn-beijing.aliyuncs.com/designreport/iconlib/3D/1666271026473873409.png', 'admin', '2025-03-07 13:36:32', NULL, NULL, 1); -INSERT INTO "public"."jimu_report_icon_lib" VALUES ('1666271026482262017', 'icon90', '3D', 'https://jimureport.oss-cn-beijing.aliyuncs.com/designreport/iconlib/3D/1666271026482262017.png', 'admin', '2025-03-07 13:36:32', NULL, NULL, 1); -INSERT INTO "public"."jimu_report_icon_lib" VALUES ('1666271026499039234', 'icon91', '3D', 'https://jimureport.oss-cn-beijing.aliyuncs.com/designreport/iconlib/3D/1666271026499039234.png', 'admin', '2025-03-07 13:36:32', NULL, NULL, 1); -INSERT INTO "public"."jimu_report_icon_lib" VALUES ('1666271026503233537', 'icon92', '3D', 'https://jimureport.oss-cn-beijing.aliyuncs.com/designreport/iconlib/3D/1666271026503233537.png', 'admin', '2025-03-07 13:36:32', NULL, NULL, 1); -INSERT INTO "public"."jimu_report_icon_lib" VALUES ('1666271026507427841', 'icon93', '3D', 'https://jimureport.oss-cn-beijing.aliyuncs.com/designreport/iconlib/3D/1666271026507427841.png', 'admin', '2025-03-07 13:36:32', NULL, NULL, 1); -INSERT INTO "public"."jimu_report_icon_lib" VALUES ('1666271026515816449', 'icon94', '3D', 'https://jimureport.oss-cn-beijing.aliyuncs.com/designreport/iconlib/3D/1666271026515816449.png', 'admin', '2025-03-07 13:36:32', NULL, NULL, 1); -INSERT INTO "public"."jimu_report_icon_lib" VALUES ('1666271026528399362', 'icon95', '3D', 'https://jimureport.oss-cn-beijing.aliyuncs.com/designreport/iconlib/3D/1666271026528399362.png', 'admin', '2025-03-07 13:36:32', NULL, NULL, 1); -INSERT INTO "public"."jimu_report_icon_lib" VALUES ('1666271026536787969', 'icon96', '3D', 'https://jimureport.oss-cn-beijing.aliyuncs.com/designreport/iconlib/3D/1666271026536787969.png', 'admin', '2025-03-07 13:36:32', NULL, NULL, 1); -INSERT INTO "public"."jimu_report_icon_lib" VALUES ('1666271026545176578', 'icon97', '3D', 'https://jimureport.oss-cn-beijing.aliyuncs.com/designreport/iconlib/3D/1666271026545176578.png', 'admin', '2025-03-07 13:36:32', NULL, NULL, 1); -INSERT INTO "public"."jimu_report_icon_lib" VALUES ('1666271026549370882', 'icon98', '3D', 'https://jimureport.oss-cn-beijing.aliyuncs.com/designreport/iconlib/3D/1666271026549370882.png', 'admin', '2025-03-07 13:36:32', NULL, NULL, 1); -INSERT INTO "public"."jimu_report_icon_lib" VALUES ('1666271026557759489', 'icon99', '3D', 'https://jimureport.oss-cn-beijing.aliyuncs.com/designreport/iconlib/3D/1666271026557759489.png', 'admin', '2025-03-07 13:36:32', NULL, NULL, 1); -INSERT INTO "public"."jimu_report_icon_lib" VALUES ('1666271026561953794', 'icon100', '3D', 'https://jimureport.oss-cn-beijing.aliyuncs.com/designreport/iconlib/3D/1666271026561953794.png', 'admin', '2025-03-07 13:36:32', NULL, NULL, 1); -INSERT INTO "public"."jimu_report_icon_lib" VALUES ('1666271026578731009', 'icon101', '3D', 'https://jimureport.oss-cn-beijing.aliyuncs.com/designreport/iconlib/3D/1666271026578731009.png', 'admin', '2025-03-07 13:36:32', NULL, NULL, 1); -INSERT INTO "public"."jimu_report_icon_lib" VALUES ('1666271026578731010', 'icon102', '3D', 'https://jimureport.oss-cn-beijing.aliyuncs.com/designreport/iconlib/3D/1666271026578731010.png', 'admin', '2025-03-07 13:36:32', NULL, NULL, 1); -INSERT INTO "public"."jimu_report_icon_lib" VALUES ('1666271026582925314', 'icon103', '3D', 'https://jimureport.oss-cn-beijing.aliyuncs.com/designreport/iconlib/3D/1666271026582925314.png', 'admin', '2025-03-07 13:36:32', NULL, NULL, 1); -INSERT INTO "public"."jimu_report_icon_lib" VALUES ('1666271026587119618', 'icon104', '3D', 'https://jimureport.oss-cn-beijing.aliyuncs.com/designreport/iconlib/3D/1666271026587119618.png', 'admin', '2025-03-07 13:36:32', NULL, NULL, 1); -INSERT INTO "public"."jimu_report_icon_lib" VALUES ('1666271026599702530', 'icon105', '3D', 'https://jimureport.oss-cn-beijing.aliyuncs.com/designreport/iconlib/3D/1666271026599702530.png', 'admin', '2025-03-07 13:36:32', NULL, NULL, 1); -INSERT INTO "public"."jimu_report_icon_lib" VALUES ('1666271026608091138', 'icon106', '3D', 'https://jimureport.oss-cn-beijing.aliyuncs.com/designreport/iconlib/3D/1666271026608091138.png', 'admin', '2025-03-07 13:36:32', NULL, NULL, 1); -INSERT INTO "public"."jimu_report_icon_lib" VALUES ('1666271026612285442', 'icon107', '3D', 'https://jimureport.oss-cn-beijing.aliyuncs.com/designreport/iconlib/3D/1666271026612285442.png', 'admin', '2025-03-07 13:36:32', NULL, NULL, 1); -INSERT INTO "public"."jimu_report_icon_lib" VALUES ('1666271026616479745', 'icon108', '3D', 'https://jimureport.oss-cn-beijing.aliyuncs.com/designreport/iconlib/3D/1666271026616479745.png', 'admin', '2025-03-07 13:36:32', NULL, NULL, 1); -INSERT INTO "public"."jimu_report_icon_lib" VALUES ('1666271026620674049', 'icon109', '3D', 'https://jimureport.oss-cn-beijing.aliyuncs.com/designreport/iconlib/3D/1666271026620674049.png', 'admin', '2025-03-07 13:36:32', NULL, NULL, 1); -INSERT INTO "public"."jimu_report_icon_lib" VALUES ('1767047795019440101', 'icon1', 'point', 'https://jimureport.oss-cn-beijing.aliyuncs.com/designreport/iconlib/point/img_point_1.png', 'admin', '2025-03-12 13:36:32', NULL, NULL, 1); -INSERT INTO "public"."jimu_report_icon_lib" VALUES ('1767047795019440102', 'icon2', 'point', 'https://jimureport.oss-cn-beijing.aliyuncs.com/designreport/iconlib/point/img_point_2.png', 'admin', '2025-03-12 13:36:32', NULL, NULL, 1); -INSERT INTO "public"."jimu_report_icon_lib" VALUES ('1767047795019440103', 'icon3', 'point', 'https://jimureport.oss-cn-beijing.aliyuncs.com/designreport/iconlib/point/img_point_3.png', 'admin', '2025-03-12 13:36:32', NULL, NULL, 1); -INSERT INTO "public"."jimu_report_icon_lib" VALUES ('1767047795019440104', 'icon4', 'point', 'https://jimureport.oss-cn-beijing.aliyuncs.com/designreport/iconlib/point/img_point_4.png', 'admin', '2025-03-12 13:36:32', NULL, NULL, 1); -INSERT INTO "public"."jimu_report_icon_lib" VALUES ('1767047795019440105', 'icon5', 'point', 'https://jimureport.oss-cn-beijing.aliyuncs.com/designreport/iconlib/point/img_point_5.png', 'admin', '2025-03-12 13:36:32', NULL, NULL, 1); -INSERT INTO "public"."jimu_report_icon_lib" VALUES ('1767047795019440106', 'icon6', 'point', 'https://jimureport.oss-cn-beijing.aliyuncs.com/designreport/iconlib/point/img_point_51.png', 'admin', '2025-03-12 13:36:32', NULL, NULL, 1); -INSERT INTO "public"."jimu_report_icon_lib" VALUES ('1767047795019440107', 'icon7', 'point', 'https://jimureport.oss-cn-beijing.aliyuncs.com/designreport/iconlib/point/img_point_6.png', 'admin', '2025-03-12 13:36:32', NULL, NULL, 1); -INSERT INTO "public"."jimu_report_icon_lib" VALUES ('1767047795019440108', 'icon8', 'point', 'https://jimureport.oss-cn-beijing.aliyuncs.com/designreport/iconlib/point/img_point_7.png', 'admin', '2025-03-12 13:36:32', NULL, NULL, 1); -INSERT INTO "public"."jimu_report_icon_lib" VALUES ('1767047795019440109', 'icon9', 'point', 'https://jimureport.oss-cn-beijing.aliyuncs.com/designreport/iconlib/point/img_point_8.png', 'admin', '2025-03-12 13:36:32', NULL, NULL, 1); -INSERT INTO "public"."jimu_report_icon_lib" VALUES ('1767047795019440110', 'icon10', 'point', 'https://jimureport.oss-cn-beijing.aliyuncs.com/designreport/iconlib/point/img_point_81.png', 'admin', '2025-03-12 13:36:32', NULL, NULL, 1); -INSERT INTO "public"."jimu_report_icon_lib" VALUES ('1767047795019440111', 'icon11', 'point', 'https://jimureport.oss-cn-beijing.aliyuncs.com/designreport/iconlib/point/img_point_9.png', 'admin', '2025-03-12 13:36:32', NULL, NULL, 1); -INSERT INTO "public"."jimu_report_icon_lib" VALUES ('1767047795019440112', 'icon12', 'point', 'https://jimureport.oss-cn-beijing.aliyuncs.com/designreport/iconlib/point/img_target_10.png', 'admin', '2025-03-12 13:36:32', NULL, NULL, 1); -INSERT INTO "public"."jimu_report_icon_lib" VALUES ('1767047795019440113', 'icon13', 'point', 'https://jimureport.oss-cn-beijing.aliyuncs.com/designreport/iconlib/point/img_target_20.png', 'admin', '2025-03-12 13:36:32', NULL, NULL, 1); -INSERT INTO "public"."jimu_report_icon_lib" VALUES ('1767047795019440114', 'icon14', 'point', 'https://jimureport.oss-cn-beijing.aliyuncs.com/designreport/iconlib/point/img_target_21.png', 'admin', '2025-03-12 13:36:32', NULL, NULL, 1); -INSERT INTO "public"."jimu_report_icon_lib" VALUES ('1767047795019440115', 'icon15', 'point', 'https://jimureport.oss-cn-beijing.aliyuncs.com/designreport/iconlib/point/img_target_22.png', 'admin', '2025-03-12 13:36:32', NULL, NULL, 1); -INSERT INTO "public"."jimu_report_icon_lib" VALUES ('1767047795019440116', 'icon16', 'point', 'https://jimureport.oss-cn-beijing.aliyuncs.com/designreport/iconlib/point/img_target_3.png', 'admin', '2025-03-12 13:36:32', NULL, NULL, 1); -INSERT INTO "public"."jimu_report_icon_lib" VALUES ('1767047795019440117', 'icon17', 'point', 'https://jimureport.oss-cn-beijing.aliyuncs.com/designreport/iconlib/point/img_target_5.png', 'admin', '2025-03-12 13:36:32', NULL, NULL, 1); -INSERT INTO "public"."jimu_report_icon_lib" VALUES ('1767047795019440118', 'icon18', 'point', 'https://jimureport.oss-cn-beijing.aliyuncs.com/designreport/iconlib/point/img_target_6.png', 'admin', '2025-03-12 13:36:32', NULL, NULL, 1); -INSERT INTO "public"."jimu_report_icon_lib" VALUES ('1767047795019440119', 'icon19', 'point', 'https://jimureport.oss-cn-beijing.aliyuncs.com/designreport/iconlib/point/img_target_7.png', 'admin', '2025-03-12 13:36:32', NULL, NULL, 1); -INSERT INTO "public"."jimu_report_icon_lib" VALUES ('1767047795019440120', 'icon20', 'point', 'https://jimureport.oss-cn-beijing.aliyuncs.com/designreport/iconlib/point/img_target_8.png', 'admin', '2025-03-12 13:36:32', NULL, NULL, 1); -INSERT INTO "public"."jimu_report_icon_lib" VALUES ('1767047795019440121', 'icon21', 'point', 'https://jimureport.oss-cn-beijing.aliyuncs.com/designreport/iconlib/point/img_target_9.png', 'admin', '2025-03-12 13:36:32', NULL, NULL, 1); -INSERT INTO "public"."jimu_report_icon_lib" VALUES ('1867047795019440101', 'icon1', 'data', 'https://jimureport.oss-cn-beijing.aliyuncs.com/designreport/iconlib/data/10.png', 'admin', '2025-03-12 13:36:32', NULL, NULL, 1); -INSERT INTO "public"."jimu_report_icon_lib" VALUES ('1867047795019440102', 'icon2', 'data', 'https://jimureport.oss-cn-beijing.aliyuncs.com/designreport/iconlib/data/11.png', 'admin', '2025-03-12 13:36:32', NULL, NULL, 1); -INSERT INTO "public"."jimu_report_icon_lib" VALUES ('1867047795019440103', 'icon3', 'data', 'https://jimureport.oss-cn-beijing.aliyuncs.com/designreport/iconlib/data/12.png', 'admin', '2025-03-12 13:36:32', NULL, NULL, 1); -INSERT INTO "public"."jimu_report_icon_lib" VALUES ('1867047795019440104', 'icon4', 'data', 'https://jimureport.oss-cn-beijing.aliyuncs.com/designreport/iconlib/data/13.png', 'admin', '2025-03-12 13:36:32', NULL, NULL, 1); -INSERT INTO "public"."jimu_report_icon_lib" VALUES ('1867047795019440105', 'icon5', 'data', 'https://jimureport.oss-cn-beijing.aliyuncs.com/designreport/iconlib/data/14.png', 'admin', '2025-03-12 13:36:32', NULL, NULL, 1); -INSERT INTO "public"."jimu_report_icon_lib" VALUES ('1867047795019440106', 'icon6', 'data', 'https://jimureport.oss-cn-beijing.aliyuncs.com/designreport/iconlib/data/3.png', 'admin', '2025-03-12 13:36:32', NULL, NULL, 1); -INSERT INTO "public"."jimu_report_icon_lib" VALUES ('1867047795019440107', 'icon7', 'data', 'https://jimureport.oss-cn-beijing.aliyuncs.com/designreport/iconlib/data/4.png', 'admin', '2025-03-12 13:36:32', NULL, NULL, 1); -INSERT INTO "public"."jimu_report_icon_lib" VALUES ('1867047795019440108', 'icon8', 'data', 'https://jimureport.oss-cn-beijing.aliyuncs.com/designreport/iconlib/data/5.png', 'admin', '2025-03-12 13:36:32', NULL, NULL, 1); -INSERT INTO "public"."jimu_report_icon_lib" VALUES ('1867047795019440109', 'icon9', 'data', 'https://jimureport.oss-cn-beijing.aliyuncs.com/designreport/iconlib/data/6.png', 'admin', '2025-03-12 13:36:32', NULL, NULL, 1); -INSERT INTO "public"."jimu_report_icon_lib" VALUES ('1867047795019440110', 'icon10', 'data', 'https://jimureport.oss-cn-beijing.aliyuncs.com/designreport/iconlib/data/7.png', 'admin', '2025-03-12 13:36:32', NULL, NULL, 1); -INSERT INTO "public"."jimu_report_icon_lib" VALUES ('1867047795019440111', 'icon11', 'data', 'https://jimureport.oss-cn-beijing.aliyuncs.com/designreport/iconlib/data/9.png', 'admin', '2025-03-12 13:36:32', NULL, NULL, 1); -INSERT INTO "public"."jimu_report_icon_lib" VALUES ('1867047795019440112', 'icon12', 'data', 'https://jimureport.oss-cn-beijing.aliyuncs.com/designreport/iconlib/data/img_base_1.png', 'admin', '2025-03-12 13:36:32', NULL, NULL, 1); -INSERT INTO "public"."jimu_report_icon_lib" VALUES ('1867047795019440113', 'icon13', 'data', 'https://jimureport.oss-cn-beijing.aliyuncs.com/designreport/iconlib/data/img_base_10.png', 'admin', '2025-03-12 13:36:32', NULL, NULL, 1); -INSERT INTO "public"."jimu_report_icon_lib" VALUES ('1867047795019440114', 'icon14', 'data', 'https://jimureport.oss-cn-beijing.aliyuncs.com/designreport/iconlib/data/img_base_11.png', 'admin', '2025-03-12 13:36:32', NULL, NULL, 1); -INSERT INTO "public"."jimu_report_icon_lib" VALUES ('1867047795019440115', 'icon15', 'data', 'https://jimureport.oss-cn-beijing.aliyuncs.com/designreport/iconlib/data/img_base_12.png', 'admin', '2025-03-12 13:36:32', NULL, NULL, 1); -INSERT INTO "public"."jimu_report_icon_lib" VALUES ('1867047795019440116', 'icon16', 'data', 'https://jimureport.oss-cn-beijing.aliyuncs.com/designreport/iconlib/data/img_base_13.png', 'admin', '2025-03-12 13:36:32', NULL, NULL, 1); -INSERT INTO "public"."jimu_report_icon_lib" VALUES ('1867047795019440117', 'icon17', 'data', 'https://jimureport.oss-cn-beijing.aliyuncs.com/designreport/iconlib/data/img_base_14.png', 'admin', '2025-03-12 13:36:32', NULL, NULL, 1); -INSERT INTO "public"."jimu_report_icon_lib" VALUES ('1867047795019440118', 'icon18', 'data', 'https://jimureport.oss-cn-beijing.aliyuncs.com/designreport/iconlib/data/img_base_15.png', 'admin', '2025-03-12 13:36:32', NULL, NULL, 1); -INSERT INTO "public"."jimu_report_icon_lib" VALUES ('1867047795019440119', 'icon19', 'data', 'https://jimureport.oss-cn-beijing.aliyuncs.com/designreport/iconlib/data/img_base_16.png', 'admin', '2025-03-12 13:36:32', NULL, NULL, 1); -INSERT INTO "public"."jimu_report_icon_lib" VALUES ('1867047795019440120', 'icon20', 'data', 'https://jimureport.oss-cn-beijing.aliyuncs.com/designreport/iconlib/data/img_base_2.png', 'admin', '2025-03-12 13:36:32', NULL, NULL, 1); -INSERT INTO "public"."jimu_report_icon_lib" VALUES ('1867047795019440121', 'icon21', 'data', 'https://jimureport.oss-cn-beijing.aliyuncs.com/designreport/iconlib/data/img_base_3.png', 'admin', '2025-03-12 13:36:32', NULL, NULL, 1); -INSERT INTO "public"."jimu_report_icon_lib" VALUES ('1867047795019440122', 'icon22', 'data', 'https://jimureport.oss-cn-beijing.aliyuncs.com/designreport/iconlib/data/img_base_4.png', 'admin', '2025-03-12 13:36:32', NULL, NULL, 1); -INSERT INTO "public"."jimu_report_icon_lib" VALUES ('1867047795019440123', 'icon23', 'data', 'https://jimureport.oss-cn-beijing.aliyuncs.com/designreport/iconlib/data/img_base_5.png', 'admin', '2025-03-12 13:36:32', NULL, NULL, 1); -INSERT INTO "public"."jimu_report_icon_lib" VALUES ('1867047795019440124', 'icon24', 'data', 'https://jimureport.oss-cn-beijing.aliyuncs.com/designreport/iconlib/data/img_base_6.png', 'admin', '2025-03-12 13:36:32', NULL, NULL, 1); -INSERT INTO "public"."jimu_report_icon_lib" VALUES ('1867047795019440125', 'icon25', 'data', 'https://jimureport.oss-cn-beijing.aliyuncs.com/designreport/iconlib/data/img_base_7.png', 'admin', '2025-03-12 13:36:32', NULL, NULL, 1); -INSERT INTO "public"."jimu_report_icon_lib" VALUES ('1867047795019440126', 'icon26', 'data', 'https://jimureport.oss-cn-beijing.aliyuncs.com/designreport/iconlib/data/img_base_8.png', 'admin', '2025-03-12 13:36:32', NULL, NULL, 1); -INSERT INTO "public"."jimu_report_icon_lib" VALUES ('1867047795019440127', 'icon27', 'data', 'https://jimureport.oss-cn-beijing.aliyuncs.com/designreport/iconlib/data/img_base_9.png', 'admin', '2025-03-12 13:36:32', NULL, NULL, 1); -INSERT INTO "public"."jimu_report_icon_lib" VALUES ('1867047795019440128', 'icon28', 'data', 'https://jimureport.oss-cn-beijing.aliyuncs.com/designreport/iconlib/data/img_dc_blue.png', 'admin', '2025-03-12 13:36:32', NULL, NULL, 1); -INSERT INTO "public"."jimu_report_icon_lib" VALUES ('1867047795019440129', 'icon29', 'data', 'https://jimureport.oss-cn-beijing.aliyuncs.com/designreport/iconlib/data/img_dc_green.png', 'admin', '2025-03-12 13:36:32', NULL, NULL, 1); -INSERT INTO "public"."jimu_report_icon_lib" VALUES ('1867047795019440130', 'icon30', 'data', 'https://jimureport.oss-cn-beijing.aliyuncs.com/designreport/iconlib/data/img_dc_red.png', 'admin', '2025-03-12 13:36:32', NULL, NULL, 1); -INSERT INTO "public"."jimu_report_icon_lib" VALUES ('1867047795019440131', 'icon31', 'data', 'https://jimureport.oss-cn-beijing.aliyuncs.com/designreport/iconlib/data/img_target_1.png', 'admin', '2025-03-12 13:36:32', NULL, NULL, 1); -INSERT INTO "public"."jimu_report_icon_lib" VALUES ('1867047795019440132', 'icon32', 'data', 'https://jimureport.oss-cn-beijing.aliyuncs.com/designreport/iconlib/data/img_target_2.png', 'admin', '2025-03-12 13:36:32', NULL, NULL, 1); -INSERT INTO "public"."jimu_report_icon_lib" VALUES ('1867047795019440133', 'icon33', 'data', 'https://jimureport.oss-cn-beijing.aliyuncs.com/designreport/iconlib/data/img_target_4.png', 'admin', '2025-03-12 13:36:32', NULL, NULL, 1); -INSERT INTO "public"."jimu_report_icon_lib" VALUES ('1867047795019440134', 'icon34', 'data', 'https://jimureport.oss-cn-beijing.aliyuncs.com/designreport/iconlib/data/zhuti.png', 'admin', '2025-03-12 13:36:32', NULL, NULL, 1); -INSERT INTO "public"."jimu_report_icon_lib" VALUES ('1967047795019440101', 'icon1', 'datasafe', 'https://jimureport.oss-cn-beijing.aliyuncs.com/designreport/iconlib/datasafe/icon_all.png', 'admin', '2025-03-12 13:36:32', NULL, NULL, 1); -INSERT INTO "public"."jimu_report_icon_lib" VALUES ('1967047795019440102', 'icon2', 'datasafe', 'https://jimureport.oss-cn-beijing.aliyuncs.com/designreport/iconlib/datasafe/icon_carkey.png', 'admin', '2025-03-12 13:36:32', NULL, NULL, 1); -INSERT INTO "public"."jimu_report_icon_lib" VALUES ('1967047795019440103', 'icon3', 'datasafe', 'https://jimureport.oss-cn-beijing.aliyuncs.com/designreport/iconlib/datasafe/icon_close.png', 'admin', '2025-03-12 13:36:32', NULL, NULL, 1); -INSERT INTO "public"."jimu_report_icon_lib" VALUES ('1967047795019440104', 'icon4', 'datasafe', 'https://jimureport.oss-cn-beijing.aliyuncs.com/designreport/iconlib/datasafe/icon_computer.png', 'admin', '2025-03-12 13:36:32', NULL, NULL, 1); -INSERT INTO "public"."jimu_report_icon_lib" VALUES ('1967047795019440105', 'icon5', 'datasafe', 'https://jimureport.oss-cn-beijing.aliyuncs.com/designreport/iconlib/datasafe/icon_computerlock.png', 'admin', '2025-03-12 13:36:32', NULL, NULL, 1); -INSERT INTO "public"."jimu_report_icon_lib" VALUES ('1967047795019440106', 'icon6', 'datasafe', 'https://jimureport.oss-cn-beijing.aliyuncs.com/designreport/iconlib/datasafe/icon_cycle.png', 'admin', '2025-03-12 13:36:32', NULL, NULL, 1); -INSERT INTO "public"."jimu_report_icon_lib" VALUES ('1967047795019440107', 'icon7', 'datasafe', 'https://jimureport.oss-cn-beijing.aliyuncs.com/designreport/iconlib/datasafe/icon_datalock.png', 'admin', '2025-03-12 13:36:32', NULL, NULL, 1); -INSERT INTO "public"."jimu_report_icon_lib" VALUES ('1967047795019440108', 'icon8', 'datasafe', 'https://jimureport.oss-cn-beijing.aliyuncs.com/designreport/iconlib/datasafe/icon_datalock_2.png', 'admin', '2025-03-12 13:36:32', NULL, NULL, 1); -INSERT INTO "public"."jimu_report_icon_lib" VALUES ('1967047795019440109', 'icon9', 'datasafe', 'https://jimureport.oss-cn-beijing.aliyuncs.com/designreport/iconlib/datasafe/icon_encryption.png', 'admin', '2025-03-12 13:36:32', NULL, NULL, 1); -INSERT INTO "public"."jimu_report_icon_lib" VALUES ('1967047795019440110', 'icon10', 'datasafe', 'https://jimureport.oss-cn-beijing.aliyuncs.com/designreport/iconlib/datasafe/icon_gesture.png', 'admin', '2025-03-12 13:36:32', NULL, NULL, 1); -INSERT INTO "public"."jimu_report_icon_lib" VALUES ('1967047795019440111', 'icon11', 'datasafe', 'https://jimureport.oss-cn-beijing.aliyuncs.com/designreport/iconlib/datasafe/icon_key.png', 'admin', '2025-03-12 13:36:32', NULL, NULL, 1); -INSERT INTO "public"."jimu_report_icon_lib" VALUES ('1967047795019440112', 'icon12', 'datasafe', 'https://jimureport.oss-cn-beijing.aliyuncs.com/designreport/iconlib/datasafe/icon_key_2.png', 'admin', '2025-03-12 13:36:32', NULL, NULL, 1); -INSERT INTO "public"."jimu_report_icon_lib" VALUES ('1967047795019440113', 'icon13', 'datasafe', 'https://jimureport.oss-cn-beijing.aliyuncs.com/designreport/iconlib/datasafe/icon_key_3.png', 'admin', '2025-03-12 13:36:32', NULL, NULL, 1); -INSERT INTO "public"."jimu_report_icon_lib" VALUES ('1967047795019440114', 'icon14', 'datasafe', 'https://jimureport.oss-cn-beijing.aliyuncs.com/designreport/iconlib/datasafe/icon_link.png', 'admin', '2025-03-12 13:36:32', NULL, NULL, 1); -INSERT INTO "public"."jimu_report_icon_lib" VALUES ('1967047795019440115', 'icon15', 'datasafe', 'https://jimureport.oss-cn-beijing.aliyuncs.com/designreport/iconlib/datasafe/icon_lock.png', 'admin', '2025-03-12 13:36:32', NULL, NULL, 1); -INSERT INTO "public"."jimu_report_icon_lib" VALUES ('1967047795019440116', 'icon16', 'datasafe', 'https://jimureport.oss-cn-beijing.aliyuncs.com/designreport/iconlib/datasafe/icon_lock_2.png', 'admin', '2025-03-12 13:36:32', NULL, NULL, 1); -INSERT INTO "public"."jimu_report_icon_lib" VALUES ('1967047795019440117', 'icon17', 'datasafe', 'https://jimureport.oss-cn-beijing.aliyuncs.com/designreport/iconlib/datasafe/icon_lock_3.png', 'admin', '2025-03-12 13:36:32', NULL, NULL, 1); -INSERT INTO "public"."jimu_report_icon_lib" VALUES ('1967047795019440118', 'icon18', 'datasafe', 'https://jimureport.oss-cn-beijing.aliyuncs.com/designreport/iconlib/datasafe/icon_lock_4.png', 'admin', '2025-03-12 13:36:32', NULL, NULL, 1); -INSERT INTO "public"."jimu_report_icon_lib" VALUES ('1967047795019440119', 'icon19', 'datasafe', 'https://jimureport.oss-cn-beijing.aliyuncs.com/designreport/iconlib/datasafe/icon_lock_5.png', 'admin', '2025-03-12 13:36:32', NULL, NULL, 1); -INSERT INTO "public"."jimu_report_icon_lib" VALUES ('1967047795019440120', 'icon20', 'datasafe', 'https://jimureport.oss-cn-beijing.aliyuncs.com/designreport/iconlib/datasafe/icon_lock_6.png', 'admin', '2025-03-12 13:36:32', NULL, NULL, 1); -INSERT INTO "public"."jimu_report_icon_lib" VALUES ('1967047795019440121', 'icon21', 'datasafe', 'https://jimureport.oss-cn-beijing.aliyuncs.com/designreport/iconlib/datasafe/icon_password_2.png', 'admin', '2025-03-12 13:36:32', NULL, NULL, 1); -INSERT INTO "public"."jimu_report_icon_lib" VALUES ('1967047795019440122', 'icon22', 'datasafe', 'https://jimureport.oss-cn-beijing.aliyuncs.com/designreport/iconlib/datasafe/icon_phonelock.png', 'admin', '2025-03-12 13:36:32', NULL, NULL, 1); -INSERT INTO "public"."jimu_report_icon_lib" VALUES ('1967047795019440123', 'icon23', 'datasafe', 'https://jimureport.oss-cn-beijing.aliyuncs.com/designreport/iconlib/datasafe/icon_pointer.png', 'admin', '2025-03-12 13:36:32', NULL, NULL, 1); -INSERT INTO "public"."jimu_report_icon_lib" VALUES ('1967047795019440124', 'icon24', 'datasafe', 'https://jimureport.oss-cn-beijing.aliyuncs.com/designreport/iconlib/datasafe/icon_pointlock.png', 'admin', '2025-03-12 13:36:32', NULL, NULL, 1); -INSERT INTO "public"."jimu_report_icon_lib" VALUES ('1967047795019440125', 'icon25', 'datasafe', 'https://jimureport.oss-cn-beijing.aliyuncs.com/designreport/iconlib/datasafe/icon_safelink.png', 'admin', '2025-03-12 13:36:32', NULL, NULL, 1); -INSERT INTO "public"."jimu_report_icon_lib" VALUES ('1967047795019440126', 'icon26', 'datasafe', 'https://jimureport.oss-cn-beijing.aliyuncs.com/designreport/iconlib/datasafe/icon_trend.png', 'admin', '2025-03-12 13:36:32', NULL, NULL, 1); -INSERT INTO "public"."jimu_report_icon_lib" VALUES ('1967047795019440127', 'icon27', 'datasafe', 'https://jimureport.oss-cn-beijing.aliyuncs.com/designreport/iconlib/datasafe/icon_txt.png', 'admin', '2025-03-12 13:36:32', NULL, NULL, 1); -INSERT INTO "public"."jimu_report_icon_lib" VALUES ('1967047795019440128', 'icon28', 'datasafe', 'https://jimureport.oss-cn-beijing.aliyuncs.com/designreport/iconlib/datasafe/icon_txtlock.png', 'admin', '2025-03-12 13:36:32', NULL, NULL, 1); -INSERT INTO "public"."jimu_report_icon_lib" VALUES ('1967047795019440129', 'icon29', 'datasafe', 'https://jimureport.oss-cn-beijing.aliyuncs.com/designreport/iconlib/datasafe/icon_unlock.png', 'admin', '2025-03-12 13:36:32', NULL, NULL, 1); -INSERT INTO "public"."jimu_report_icon_lib" VALUES ('1967047795019440130', 'icon30', 'datasafe', 'https://jimureport.oss-cn-beijing.aliyuncs.com/designreport/iconlib/datasafe/icon_unlock_2.png', 'admin', '2025-03-12 13:36:32', NULL, NULL, 1); -INSERT INTO "public"."jimu_report_icon_lib" VALUES ('1967047795019440131', 'icon31', 'datasafe', 'https://jimureport.oss-cn-beijing.aliyuncs.com/designreport/iconlib/datasafe/icon_unlock_3.png', 'admin', '2025-03-12 13:36:32', NULL, NULL, 1); -INSERT INTO "public"."jimu_report_icon_lib" VALUES ('1967047795019440132', 'icon32', 'datasafe', 'https://jimureport.oss-cn-beijing.aliyuncs.com/designreport/iconlib/datasafe/icon_unlock_4.png', 'admin', '2025-03-12 13:36:32', NULL, NULL, 1); -INSERT INTO "public"."jimu_report_icon_lib" VALUES ('1967047795019440133', 'icon33', 'datasafe', 'https://jimureport.oss-cn-beijing.aliyuncs.com/designreport/iconlib/datasafe/icon_videolock.png', 'admin', '2025-03-12 13:36:32', NULL, NULL, 1); -INSERT INTO "public"."jimu_report_icon_lib" VALUES ('1967047795019440134', 'icon34', 'datasafe', 'https://jimureport.oss-cn-beijing.aliyuncs.com/designreport/iconlib/datasafe/icon_wallet.png', 'admin', '2025-03-12 13:36:32', NULL, NULL, 1); -INSERT INTO "public"."jimu_report_icon_lib" VALUES ('1967047795019440135', 'icon35', 'datasafe', 'https://jimureport.oss-cn-beijing.aliyuncs.com/designreport/iconlib/datasafe/icon_warning.png', 'admin', '2025-03-12 13:36:32', NULL, NULL, 1); - --- ---------------------------- --- Table structure for jimu_report_link --- ---------------------------- -DROP TABLE IF EXISTS "public"."jimu_report_link"; -CREATE TABLE "public"."jimu_report_link" ( - "id" varchar(32) COLLATE "pg_catalog"."default" NOT NULL, - "report_id" varchar(32) COLLATE "pg_catalog"."default", - "parameter" text COLLATE "pg_catalog"."default", - "eject_type" varchar(1) COLLATE "pg_catalog"."default", - "link_name" varchar(255) COLLATE "pg_catalog"."default", - "api_method" varchar(1) COLLATE "pg_catalog"."default", - "link_type" varchar(1) COLLATE "pg_catalog"."default", - "api_url" varchar(1000) COLLATE "pg_catalog"."default", - "link_chart_id" varchar(50) COLLATE "pg_catalog"."default", - "expression" varchar(255) COLLATE "pg_catalog"."default", - "requirement" varchar(255) COLLATE "pg_catalog"."default" -)TABLESPACE "stas" -; -COMMENT ON COLUMN "public"."jimu_report_link"."id" IS '主键id'; -COMMENT ON COLUMN "public"."jimu_report_link"."report_id" IS '积木设计器id'; -COMMENT ON COLUMN "public"."jimu_report_link"."parameter" IS '参数'; -COMMENT ON COLUMN "public"."jimu_report_link"."eject_type" IS '弹出方式(0 当前页面 1 新窗口)'; -COMMENT ON COLUMN "public"."jimu_report_link"."link_name" IS '链接名称'; -COMMENT ON COLUMN "public"."jimu_report_link"."api_method" IS '请求方法0-get,1-post'; -COMMENT ON COLUMN "public"."jimu_report_link"."link_type" IS '链接方式(0 网络报表 1 网络连接 2 图表联动)'; -COMMENT ON COLUMN "public"."jimu_report_link"."api_url" IS '外网api'; -COMMENT ON COLUMN "public"."jimu_report_link"."link_chart_id" IS '联动图表的ID'; -COMMENT ON COLUMN "public"."jimu_report_link"."expression" IS '表达式'; -COMMENT ON COLUMN "public"."jimu_report_link"."requirement" IS '条件'; -COMMENT ON TABLE "public"."jimu_report_link" IS '超链接配置表'; - --- ---------------------------- --- Records of jimu_report_link --- ---------------------------- -INSERT INTO "public"."jimu_report_link" VALUES ('1080630642578849792', '1080630641874206720', '{"main":"aa","sub":"bb","subReport":[{"mainField":"id","subParam":"orderId","tableIndex":1}]}', NULL, '555', NULL, '4', NULL, NULL, NULL, NULL); -INSERT INTO "public"."jimu_report_link" VALUES ('907480951604711424', '907480464532770816', '{"main":"aa","sub":"bb","subReport":[{"mainField":"id","subParam":"orderId","tableIndex":1}]}', NULL, '555', NULL, '4', NULL, NULL, NULL, NULL); -INSERT INTO "public"."jimu_report_link" VALUES ('929546942631428096', '928540173805338624', '{"main":"receipt","sub":"receiptProject","subReport":[{"mainField":"id","subParam":"customId","tableIndex":1}]}', NULL, '收款明细', NULL, '4', NULL, NULL, NULL, NULL); - --- ---------------------------- --- Table structure for jimu_report_map --- ---------------------------- -DROP TABLE IF EXISTS "public"."jimu_report_map"; -CREATE TABLE "public"."jimu_report_map" ( - "id" varchar(64) COLLATE "pg_catalog"."default" NOT NULL, - "label" varchar(125) COLLATE "pg_catalog"."default", - "name" varchar(125) COLLATE "pg_catalog"."default", - "data" text COLLATE "pg_catalog"."default", - "create_by" varchar(32) COLLATE "pg_catalog"."default", - "create_time" timestamp(6), - "update_by" varchar(32) COLLATE "pg_catalog"."default", - "update_time" timestamp(6), - "del_flag" varchar(1) COLLATE "pg_catalog"."default", - "sys_org_code" varchar(64) COLLATE "pg_catalog"."default" -)TABLESPACE "stas" -; -COMMENT ON COLUMN "public"."jimu_report_map"."id" IS '主键'; -COMMENT ON COLUMN "public"."jimu_report_map"."label" IS '地图名称'; -COMMENT ON COLUMN "public"."jimu_report_map"."name" IS '地图编码'; -COMMENT ON COLUMN "public"."jimu_report_map"."data" IS '地图数据'; -COMMENT ON COLUMN "public"."jimu_report_map"."create_by" IS '创建人'; -COMMENT ON COLUMN "public"."jimu_report_map"."create_time" IS '创建时间'; -COMMENT ON COLUMN "public"."jimu_report_map"."update_by" IS '修改人'; -COMMENT ON COLUMN "public"."jimu_report_map"."update_time" IS '修改时间'; -COMMENT ON COLUMN "public"."jimu_report_map"."del_flag" IS '0表示未删除,1表示删除'; -COMMENT ON COLUMN "public"."jimu_report_map"."sys_org_code" IS '所属部门'; -COMMENT ON TABLE "public"."jimu_report_map" IS '地图配置表'; - --- ---------------------------- --- Records of jimu_report_map --- ---------------------------- -INSERT INTO "public"."jimu_report_map" VALUES ('1067415154298224640', '河北省', '130000', '{"type":"FeatureCollection","features":[{"type":"Feature","properties":{"adcode":130100,"name":"石家庄市","center":[114.502461,38.045474],"centroid":[114.444982,38.133034],"childrenNum":22,"level":"city","parent":{"adcode":130000},"subFeatureIndex":0,"acroutes":[100000,130000]},"geometry":{"type":"MultiPolygon","coordinates":[[[[113.839548,38.758413],[113.802899,38.763321],[113.78041,38.728355],[113.775669,38.709836],[113.745363,38.701538],[113.729024,38.71196],[113.709995,38.698284],[113.713839,38.663684],[113.702114,38.65166],[113.667067,38.646943],[113.632596,38.653122],[113.612862,38.646013],[113.604212,38.616107],[113.602803,38.586854],[113.562053,38.558321],[113.557248,38.504016],[113.546548,38.493031],[113.583517,38.465992],[113.573202,38.449205],[113.538026,38.418017],[113.525468,38.383016],[113.53431,38.365208],[113.557248,38.34346],[113.546035,38.293067],[113.544818,38.270495],[113.566282,38.252393],[113.570318,38.237427],[113.598894,38.227136],[113.636761,38.232682],[113.657072,38.225599],[113.679112,38.205413],[113.711725,38.213702],[113.715057,38.193713],[113.738507,38.189501],[113.720631,38.174656],[113.731139,38.168369],[113.756575,38.171713],[113.796876,38.162884],[113.828848,38.168971],[113.83359,38.147431],[113.822505,38.150442],[113.810075,38.112566],[113.824235,38.106676],[113.854733,38.077082],[113.856015,38.065898],[113.876261,38.055047],[113.878376,38.032402],[113.872353,37.990375],[113.90125,37.98481],[113.922842,37.952082],[113.929185,37.932022],[113.956864,37.911419],[113.971536,37.868786],[113.970191,37.833923],[113.982557,37.812823],[114.006648,37.813495],[114.018821,37.794876],[114.043873,37.777463],[114.041182,37.756817],[114.000817,37.735358],[113.993769,37.706893],[114.068029,37.721564],[114.088275,37.708845],[114.128256,37.69821],[114.139725,37.675927],[114.131139,37.648315],[114.115378,37.619884],[114.118325,37.590634],[114.059635,37.515906],[114.036762,37.494175],[114.028304,37.474598],[114.022666,37.435496],[114.06899,37.447384],[114.096477,37.490935],[114.113263,37.493837],[114.126526,37.481957],[114.133766,37.498899],[114.156191,37.505244],[114.166123,37.528186],[114.184575,37.530817],[114.215009,37.51125],[114.255439,37.504096],[114.27293,37.494445],[114.303621,37.507808],[114.310861,37.499979],[114.334632,37.502949],[114.358274,37.519212],[114.370192,37.513612],[114.37269,37.52967],[114.412095,37.549907],[114.433495,37.552537],[114.483471,37.576814],[114.519927,37.574656],[114.585217,37.55301],[114.64679,37.556247],[114.680171,37.565283],[114.698816,37.589353],[114.707338,37.615774],[114.725983,37.630665],[114.764618,37.624399],[114.797423,37.628239],[114.808571,37.659832],[114.841504,37.676129],[114.847783,37.69673],[114.871041,37.702114],[114.881357,37.716113],[114.895965,37.712547],[114.904038,37.729302],[114.931846,37.728899],[114.960165,37.720084],[114.987524,37.742691],[115.001748,37.734685],[115.012512,37.75157],[115.041024,37.733541],[115.070049,37.745651],[115.068703,37.773428],[115.085298,37.779211],[115.072291,37.794136],[115.097215,37.797498],[115.097471,37.807849],[115.122972,37.811479],[115.131173,37.799783],[115.150523,37.808521],[115.160262,37.780287],[115.152765,37.759507],[115.172564,37.749351],[115.227281,37.732599],[115.243235,37.722641],[115.261431,37.68818],[115.253807,37.671415],[115.255088,37.645621],[115.258356,37.639625],[115.297376,37.629587],[115.301412,37.660169],[115.316853,37.660102],[115.325567,37.682458],[115.317046,37.695383],[115.333768,37.71322],[115.380989,37.707432],[115.394316,37.712143],[115.386179,37.727082],[115.360294,37.731994],[115.344468,37.74814],[115.371635,37.770335],[115.352349,37.784052],[115.349722,37.805765],[115.360166,37.820215],[115.363049,37.849845],[115.388614,37.853003],[115.389831,37.874629],[115.360294,37.880068],[115.365484,37.906318],[115.385795,37.917191],[115.408668,37.918936],[115.412769,37.943293],[115.448585,37.936584],[115.457555,37.95074],[115.456017,37.974551],[115.444997,37.989168],[115.464219,37.99299],[115.438205,38.001102],[115.45134,38.017323],[115.466782,38.063554],[115.482992,38.08398],[115.468063,38.095161],[115.439871,38.082038],[115.420522,38.089671],[115.383232,38.0886],[115.364843,38.13793],[115.346903,38.13967],[115.342418,38.196254],[115.35094,38.210493],[115.323645,38.220586],[115.324734,38.248184],[115.302758,38.235289],[115.273605,38.2403],[115.263994,38.260543],[115.265788,38.287658],[115.252205,38.29093],[115.225871,38.269894],[115.210174,38.236491],[115.19422,38.236759],[115.168591,38.259608],[115.152317,38.256802],[115.108107,38.264551],[115.085874,38.276773],[115.073765,38.293134],[115.056722,38.288326],[115.066204,38.264684],[115.056465,38.258472],[115.031862,38.267089],[114.989062,38.258138],[114.990087,38.272165],[114.970096,38.281114],[114.927681,38.283385],[114.915059,38.263348],[114.886162,38.265286],[114.883343,38.284854],[114.902565,38.294936],[114.906986,38.309624],[114.922875,38.315631],[114.942994,38.343193],[114.932871,38.344194],[114.923388,38.388217],[114.910381,38.393751],[114.882254,38.424149],[114.853998,38.435879],[114.858163,38.448605],[114.840992,38.460797],[114.837852,38.435745],[114.819143,38.449871],[114.830868,38.46033],[114.81075,38.492365],[114.765259,38.496626],[114.731237,38.48191],[114.702084,38.489102],[114.6737,38.473452],[114.651851,38.504682],[114.635257,38.514801],[114.595724,38.568897],[114.58432,38.596429],[114.56324,38.590644],[114.527616,38.590644],[114.552284,38.612983],[114.536907,38.632324],[114.53633,38.649268],[114.522106,38.65372],[114.498463,38.678297],[114.452652,38.699413],[114.437787,38.692773],[114.413504,38.703928],[114.366411,38.6862],[114.341167,38.690184],[114.311502,38.706517],[114.212831,38.688192],[114.182205,38.67657],[114.129153,38.669596],[114.125053,38.659632],[114.086097,38.65837],[114.052139,38.686399],[114.028624,38.688524],[113.991655,38.676769],[113.964617,38.699811],[113.929697,38.702467],[113.932324,38.71362],[113.883245,38.74667],[113.864664,38.746006],[113.839548,38.758413]]]]}},{"type":"Feature","properties":{"adcode":130200,"name":"唐山市","center":[118.175393,39.635113],"centroid":[118.343325,39.71703],"childrenNum":14,"level":"city","parent":{"adcode":130000},"subFeatureIndex":1,"acroutes":[100000,130000]},"geometry":{"type":"MultiPolygon","coordinates":[[[[119.319039,39.429554],[119.280403,39.422852],[119.257401,39.429752],[119.212295,39.463453],[119.185769,39.458986],[119.064545,39.473763],[119.048399,39.459052],[119.004894,39.467459],[119.015658,39.482103],[119.008098,39.509347],[118.961453,39.51591],[118.966067,39.529494],[118.983302,39.538942],[118.945243,39.544781],[118.938452,39.557572],[118.895139,39.547011],[118.882261,39.566557],[118.861309,39.574754],[118.844586,39.615004],[118.850097,39.622737],[118.824596,39.648681],[118.822225,39.668984],[118.804157,39.679985],[118.787242,39.71592],[118.774428,39.764198],[118.800185,39.775706],[118.797942,39.790415],[118.825429,39.799436],[118.816843,39.825836],[118.838179,39.847981],[118.835232,39.859018],[118.853556,39.88409],[118.859643,39.93362],[118.875149,39.941121],[118.884247,39.961794],[118.88508,40.005403],[118.865602,40.023777],[118.866307,40.061942],[118.900521,40.086549],[118.918269,40.092211],[118.92474,40.149653],[118.906736,40.169679],[118.888924,40.168768],[118.867652,40.180599],[118.849135,40.178974],[118.794482,40.204838],[118.775581,40.194182],[118.743609,40.191777],[118.746108,40.208087],[118.708562,40.216078],[118.665634,40.242577],[118.628472,40.249915],[118.571384,40.269845],[118.568949,40.287564],[118.533325,40.298854],[118.532364,40.319419],[118.539989,40.361048],[118.558377,40.36928],[118.550881,40.385482],[118.571512,40.414636],[118.548062,40.422667],[118.523458,40.40628],[118.503211,40.403365],[118.45599,40.414053],[118.430746,40.411851],[118.402683,40.416838],[118.387305,40.436719],[118.360011,40.428819],[118.356295,40.435295],[118.306575,40.419558],[118.277935,40.425711],[118.262942,40.452063],[118.239684,40.464686],[118.173818,40.423056],[118.156967,40.423768],[118.153123,40.409519],[118.165232,40.400449],[118.133837,40.375113],[118.121856,40.354695],[118.079312,40.353528],[118.061564,40.319095],[118.031643,40.302358],[118.000888,40.29256],[117.909457,40.285876],[117.897989,40.270429],[117.867554,40.26965],[117.844104,40.261406],[117.807775,40.261926],[117.75152,40.229718],[117.714551,40.241668],[117.694112,40.238161],[117.677069,40.22095],[117.64625,40.205163],[117.619532,40.206398],[117.609409,40.194897],[117.575451,40.192817],[117.576412,40.178584],[117.601208,40.171239],[117.630232,40.147833],[117.635999,40.132094],[117.650159,40.128191],[117.65317,40.110757],[117.644841,40.096181],[117.668099,40.100931],[117.67489,40.082123],[117.708272,40.093643],[117.721983,40.07991],[117.751648,40.081993],[117.758184,40.065978],[117.776188,40.059272],[117.758312,40.04436],[117.747932,40.047421],[117.744152,40.018434],[117.782467,40.023516],[117.797075,40.010225],[117.782019,39.968315],[117.756326,39.96512],[117.72775,39.972422],[117.70667,39.986046],[117.674698,39.974834],[117.634589,39.968901],[117.589226,39.996866],[117.537777,39.997452],[117.547323,39.976855],[117.532907,39.952469],[117.514967,39.946665],[117.525539,39.92964],[117.507406,39.909023],[117.518811,39.891271],[117.521374,39.870641],[117.548092,39.839882],[117.537264,39.835178],[117.561419,39.800024],[117.546106,39.776164],[117.559305,39.756088],[117.59589,39.746147],[117.596082,39.735222],[117.577629,39.726913],[117.602425,39.705384],[117.644777,39.701849],[117.643944,39.688692],[117.657014,39.668657],[117.668355,39.667085],[117.662012,39.636365],[117.641957,39.628438],[117.641189,39.612645],[117.619084,39.603207],[117.621967,39.59167],[117.636191,39.603731],[117.660795,39.57541],[117.68495,39.588916],[117.708913,39.572918],[117.688794,39.569246],[117.689563,39.559539],[117.710194,39.550422],[117.71596,39.530084],[117.744857,39.548585],[117.737745,39.574033],[117.753122,39.576],[117.747868,39.589375],[117.76773,39.599012],[117.801945,39.601765],[117.826548,39.590818],[117.851408,39.589244],[117.868259,39.596849],[117.892607,39.591539],[117.933997,39.574164],[117.905293,39.53015],[117.912277,39.516172],[117.898565,39.509675],[117.898181,39.472516],[117.878062,39.467196],[117.87031,39.45498],[117.871847,39.411547],[117.859353,39.403265],[117.852369,39.38078],[117.805277,39.373284],[117.803354,39.362037],[117.837056,39.350789],[117.862877,39.362169],[117.842054,39.336512],[117.84955,39.327366],[117.888314,39.332038],[117.891774,39.32322],[117.972248,39.314401],[117.97763,39.300643],[118.016842,39.284117],[118.024787,39.292414],[118.036512,39.265151],[118.064768,39.256061],[118.064768,39.231222],[118.037089,39.230497],[118.026196,39.20176],[118.050864,39.200112],[118.07047,39.214021],[118.07771,39.202024],[118.125316,39.182771],[118.16299,39.136596],[118.182596,39.094155],[118.225011,39.034839],[118.267107,39.021555],[118.290813,39.022216],[118.309907,39.011773],[118.373594,39.012037],[118.371031,38.984137],[118.378015,38.97177],[118.406463,38.960525],[118.491038,38.909041],[118.525252,38.90487],[118.539732,38.909835],[118.604445,38.971505],[118.570487,38.999212],[118.532877,39.091051],[118.551394,39.088278],[118.560107,39.09904],[118.588619,39.107623],[118.578752,39.130921],[118.59272,39.142601],[118.637314,39.157379],[118.692992,39.148077],[118.719646,39.136992],[118.760716,39.133495],[118.814409,39.138642],[118.857913,39.162854],[118.876366,39.14999],[118.897253,39.151508],[118.920447,39.171758],[118.951074,39.178485],[118.896549,39.139698],[118.890013,39.118844],[118.926278,39.123464],[118.977984,39.163381],[119.023988,39.186925],[119.038276,39.21178],[119.096068,39.241963],[119.121505,39.281549],[119.185577,39.342039],[119.239269,39.352368],[119.272779,39.363616],[119.317052,39.410759],[119.319039,39.429554]]],[[[117.784581,39.377032],[117.782147,39.394785],[117.737296,39.410562],[117.69975,39.407604],[117.702313,39.388934],[117.673224,39.386698],[117.669124,39.412008],[117.643495,39.405829],[117.61415,39.407078],[117.6014,39.4195],[117.590636,39.405435],[117.571158,39.404646],[117.557895,39.38558],[117.535342,39.374007],[117.520862,39.357236],[117.536239,39.338026],[117.595249,39.349144],[117.637536,39.335986],[117.650799,39.315191],[117.669316,39.324141],[117.670982,39.357828],[117.706221,39.351513],[117.744601,39.354604],[117.784581,39.377032]]],[[[118.630522,39.054726],[118.640005,39.042306],[118.653652,39.056973],[118.638852,39.076061],[118.620847,39.068268],[118.630522,39.054726]]],[[[118.869446,39.142733],[118.842664,39.117788],[118.820239,39.108745],[118.820495,39.093693],[118.857465,39.098842],[118.871753,39.115082],[118.869446,39.142733]]],[[[118.83914,39.153817],[118.815177,39.132373],[118.825749,39.122672],[118.841511,39.135475],[118.83914,39.153817]]]]}},{"type":"Feature","properties":{"adcode":130300,"name":"秦皇岛市","center":[119.586579,39.942531],"centroid":[119.193332,40.088346],"childrenNum":7,"level":"city","parent":{"adcode":130000},"subFeatureIndex":2,"acroutes":[100000,130000]},"geometry":{"type":"MultiPolygon","coordinates":[[[[119.319039,39.429554],[119.304238,39.459972],[119.270024,39.498582],[119.31276,39.605894],[119.334928,39.656148],[119.358122,39.721744],[119.3735,39.739671],[119.395925,39.74425],[119.396886,39.761124],[119.464738,39.809239],[119.506641,39.816493],[119.53778,39.810154],[119.537652,39.831259],[119.520352,39.838183],[119.541048,39.888138],[119.559564,39.901518],[119.587948,39.909936],[119.612936,39.898907],[119.637027,39.923182],[119.666436,39.92018],[119.674317,39.933424],[119.683543,39.921942],[119.726279,39.941056],[119.787212,39.950382],[119.816877,39.978224],[119.836739,39.985786],[119.835522,39.964468],[119.862432,39.951556],[119.872363,39.960621],[119.841032,40.011789],[119.854231,40.03231],[119.835009,40.050286],[119.817069,40.052826],[119.795285,40.040387],[119.770873,40.048788],[119.76043,40.065653],[119.771578,40.082253],[119.736723,40.104836],[119.76248,40.144776],[119.755496,40.153165],[119.745949,40.207957],[119.716797,40.196066],[119.676239,40.224522],[119.671562,40.23959],[119.625174,40.224132],[119.633503,40.249395],[119.651892,40.272377],[119.642153,40.291327],[119.621458,40.30359],[119.598136,40.334206],[119.599801,40.356575],[119.586667,40.375437],[119.600442,40.406863],[119.593458,40.435683],[119.604927,40.454976],[119.553542,40.501762],[119.555464,40.516833],[119.568855,40.520778],[119.571033,40.540887],[119.534256,40.554203],[119.520288,40.547416],[119.503886,40.553945],[119.491007,40.536167],[119.477809,40.533322],[119.441864,40.539852],[119.361839,40.537331],[119.338068,40.531253],[119.302188,40.530283],[119.25612,40.543279],[119.220624,40.569133],[119.232862,40.589421],[119.230812,40.603891],[119.178209,40.609316],[119.162575,40.600015],[119.158474,40.614418],[119.105487,40.603632],[119.086394,40.588775],[119.063392,40.606151],[119.013095,40.577081],[118.998359,40.578955],[118.983366,40.56364],[118.952676,40.558469],[118.966003,40.536102],[118.919038,40.53093],[118.886938,40.542438],[118.864,40.527244],[118.821328,40.531964],[118.794867,40.510753],[118.792112,40.492382],[118.772954,40.479765],[118.723491,40.473746],[118.702795,40.491411],[118.657176,40.450574],[118.624179,40.437626],[118.618349,40.425193],[118.643785,40.380946],[118.640197,40.354566],[118.608225,40.328305],[118.596949,40.308456],[118.580098,40.305861],[118.568949,40.287564],[118.571384,40.269845],[118.628472,40.249915],[118.665634,40.242577],[118.708562,40.216078],[118.746108,40.208087],[118.743609,40.191777],[118.775581,40.194182],[118.794482,40.204838],[118.849135,40.178974],[118.867652,40.180599],[118.888924,40.168768],[118.906736,40.169679],[118.92474,40.149653],[118.918269,40.092211],[118.900521,40.086549],[118.866307,40.061942],[118.865602,40.023777],[118.88508,40.005403],[118.884247,39.961794],[118.875149,39.941121],[118.859643,39.93362],[118.853556,39.88409],[118.835232,39.859018],[118.838179,39.847981],[118.816843,39.825836],[118.825429,39.799436],[118.797942,39.790415],[118.800185,39.775706],[118.774428,39.764198],[118.787242,39.71592],[118.804157,39.679985],[118.822225,39.668984],[118.824596,39.648681],[118.850097,39.622737],[118.844586,39.615004],[118.861309,39.574754],[118.882261,39.566557],[118.895139,39.547011],[118.938452,39.557572],[118.945243,39.544781],[118.983302,39.538942],[118.966067,39.529494],[118.961453,39.51591],[119.008098,39.509347],[119.015658,39.482103],[119.004894,39.467459],[119.048399,39.459052],[119.064545,39.473763],[119.185769,39.458986],[119.212295,39.463453],[119.257401,39.429752],[119.280403,39.422852],[119.319039,39.429554]]]]}},{"type":"Feature","properties":{"adcode":130400,"name":"邯郸市","center":[114.490686,36.612273],"centroid":[114.548854,36.553496],"childrenNum":18,"level":"city","parent":{"adcode":130000},"subFeatureIndex":3,"acroutes":[100000,130000]},"geometry":{"type":"MultiPolygon","coordinates":[[[[115.478314,36.754699],[115.463386,36.752177],[115.423661,36.766081],[115.390664,36.76315],[115.362921,36.771056],[115.349786,36.786796],[115.335691,36.775826],[115.323004,36.815474],[115.307499,36.837129],[115.325567,36.869667],[115.283344,36.862589],[115.200563,36.868374],[115.176856,36.854353],[115.158916,36.852038],[115.170449,36.881509],[115.16622,36.901512],[115.143219,36.899131],[115.125086,36.90607],[115.106505,36.923958],[115.125022,36.936471],[115.111631,36.958431],[115.096702,36.964549],[115.0589,36.957004],[115.02161,36.961422],[114.985602,36.950477],[114.949593,36.948778],[114.892441,36.969647],[114.862712,36.969715],[114.836314,36.958024],[114.838172,36.950885],[114.787492,36.91396],[114.772691,36.928447],[114.74341,36.932323],[114.734568,36.942931],[114.718166,36.938103],[114.707145,36.918041],[114.671073,36.917429],[114.64884,36.89845],[114.56702,36.891307],[114.551707,36.884094],[114.555231,36.845979],[114.507754,36.827936],[114.478921,36.833248],[114.462327,36.847681],[114.421193,36.839444],[114.353533,36.852038],[114.336105,36.846728],[114.304518,36.857007],[114.299969,36.845435],[114.252684,36.856531],[114.225902,36.843052],[114.182653,36.843937],[114.100449,36.839035],[114.081548,36.845094],[114.090005,36.861023],[114.063672,36.879331],[114.028176,36.881236],[113.991078,36.914913],[113.984415,36.941503],[113.941743,36.983376],[113.901185,36.99683],[113.883886,37.010893],[113.859475,37.015037],[113.828784,37.012048],[113.794954,36.994995],[113.777463,36.96856],[113.761701,36.956052],[113.79284,36.894709],[113.786945,36.870076],[113.772337,36.871165],[113.742095,36.851085],[113.731908,36.859118],[113.731587,36.87865],[113.710508,36.88736],[113.696924,36.882257],[113.676293,36.855646],[113.68411,36.824804],[113.673923,36.807505],[113.68097,36.790134],[113.65579,36.785706],[113.599984,36.752927],[113.569165,36.758107],[113.549303,36.752313],[113.536232,36.732339],[113.499391,36.740589],[113.47767,36.726407],[113.465369,36.70779],[113.477542,36.697287],[113.507015,36.704858],[113.502018,36.681528],[113.47703,36.655189],[113.486833,36.635189],[113.535463,36.62925],[113.545266,36.616892],[113.539756,36.594082],[113.569678,36.585885],[113.58813,36.562725],[113.588707,36.548101],[113.547317,36.534362],[113.559939,36.52862],[113.554428,36.494706],[113.582108,36.482942],[113.587233,36.460982],[113.6292,36.454687],[113.670206,36.425122],[113.708329,36.423342],[113.729601,36.381642],[113.73242,36.357599],[113.755166,36.365956],[113.764392,36.355612],[113.797581,36.347184],[113.818212,36.331149],[113.855951,36.329367],[113.85358,36.35013],[113.881515,36.353899],[113.901121,36.336974],[113.911181,36.314767],[113.93162,36.319497],[113.934439,36.336151],[113.957248,36.33622],[113.952763,36.358147],[113.964232,36.352597],[113.983005,36.317166],[113.993833,36.314561],[113.994474,36.344169],[113.979802,36.344101],[113.985824,36.357599],[114.010684,36.342456],[114.023691,36.354995],[114.032276,36.347527],[114.026254,36.325117],[114.055727,36.329983],[114.061557,36.317989],[114.04272,36.297011],[114.060532,36.276507],[114.085328,36.270129],[114.092632,36.27781],[114.12108,36.272735],[114.130627,36.279662],[114.17663,36.263132],[114.168878,36.243443],[114.203028,36.24557],[114.211037,36.273009],[114.223723,36.270883],[114.235577,36.252774],[114.256464,36.264024],[114.290102,36.247148],[114.328353,36.248177],[114.345139,36.255792],[114.356096,36.230337],[114.39236,36.221141],[114.408442,36.224573],[114.417541,36.205904],[114.466171,36.197735],[114.480267,36.177823],[114.53287,36.171505],[114.55805,36.150763],[114.586883,36.140939],[114.58259,36.121356],[114.610845,36.128297],[114.630387,36.124243],[114.655183,36.140252],[114.691128,36.138397],[114.692409,36.146229],[114.720665,36.140046],[114.73444,36.155777],[114.771345,36.124517],[114.77865,36.133175],[114.825166,36.123693],[114.857458,36.127747],[114.858675,36.144305],[114.879435,36.147809],[114.912432,36.140458],[114.90705,36.117233],[114.926463,36.089464],[114.914674,36.051988],[114.920184,36.048205],[114.954591,36.067806],[114.998416,36.069732],[115.045893,36.112216],[115.048456,36.162027],[115.06268,36.178235],[115.104583,36.172192],[115.110414,36.199382],[115.142834,36.209679],[115.170705,36.191006],[115.189222,36.195538],[115.20178,36.212768],[115.242146,36.191212],[115.260406,36.171574],[115.279307,36.137847],[115.302181,36.127678],[115.297247,36.109123],[115.313073,36.088227],[115.341393,36.087608],[115.369264,36.102731],[115.377914,36.128503],[115.39265,36.12919],[115.404632,36.15564],[115.415716,36.137572],[115.431286,36.149183],[115.449674,36.150144],[115.451276,36.16972],[115.463898,36.171299],[115.469985,36.152892],[115.483568,36.148976],[115.475944,36.193066],[115.47652,36.246531],[115.465372,36.250373],[115.462681,36.276096],[115.436347,36.27637],[115.417062,36.29276],[115.422956,36.32217],[115.394637,36.322581],[115.366637,36.30894],[115.359782,36.318743],[115.368688,36.342593],[115.349594,36.363079],[115.339983,36.398078],[115.29744,36.413484],[115.312048,36.433541],[115.317046,36.454003],[115.300259,36.465908],[115.291417,36.460572],[115.272836,36.497373],[115.296479,36.508862],[115.288341,36.528484],[115.307435,36.527458],[115.33127,36.550219],[115.334281,36.58247],[115.355104,36.627407],[115.366061,36.621945],[115.388229,36.647203],[115.386756,36.656827],[115.406426,36.663242],[115.420586,36.686781],[115.446663,36.694626],[115.450507,36.713656],[115.478314,36.754699]]]]}},{"type":"Feature","properties":{"adcode":130500,"name":"邢台市","center":[114.508851,37.0682],"centroid":[114.822676,37.213788],"childrenNum":18,"level":"city","parent":{"adcode":130000},"subFeatureIndex":4,"acroutes":[100000,130000]},"geometry":{"type":"MultiPolygon","coordinates":[[[[115.255088,37.645621],[115.253807,37.671415],[115.261431,37.68818],[115.243235,37.722641],[115.227281,37.732599],[115.172564,37.749351],[115.152765,37.759507],[115.160262,37.780287],[115.150523,37.808521],[115.131173,37.799783],[115.122972,37.811479],[115.097471,37.807849],[115.097215,37.797498],[115.072291,37.794136],[115.085298,37.779211],[115.068703,37.773428],[115.070049,37.745651],[115.041024,37.733541],[115.012512,37.75157],[115.001748,37.734685],[114.987524,37.742691],[114.960165,37.720084],[114.931846,37.728899],[114.904038,37.729302],[114.895965,37.712547],[114.881357,37.716113],[114.871041,37.702114],[114.847783,37.69673],[114.841504,37.676129],[114.808571,37.659832],[114.797423,37.628239],[114.764618,37.624399],[114.725983,37.630665],[114.707338,37.615774],[114.698816,37.589353],[114.680171,37.565283],[114.64679,37.556247],[114.585217,37.55301],[114.519927,37.574656],[114.483471,37.576814],[114.433495,37.552537],[114.412095,37.549907],[114.37269,37.52967],[114.370192,37.513612],[114.358274,37.519212],[114.334632,37.502949],[114.310861,37.499979],[114.303621,37.507808],[114.27293,37.494445],[114.255439,37.504096],[114.215009,37.51125],[114.184575,37.530817],[114.166123,37.528186],[114.156191,37.505244],[114.133766,37.498899],[114.126526,37.481957],[114.113263,37.493837],[114.096477,37.490935],[114.06899,37.447384],[114.022666,37.435496],[113.973907,37.403133],[113.959811,37.348982],[113.921176,37.33072],[113.902147,37.30995],[113.899007,37.279495],[113.886897,37.25993],[113.886449,37.23914],[113.853067,37.215093],[113.836601,37.18948],[113.831924,37.167518],[113.77317,37.151857],[113.767339,37.144601],[113.77349,37.106956],[113.758177,37.075672],[113.768749,37.062504],[113.788227,37.059788],[113.790149,37.04295],[113.771888,37.016803],[113.794954,36.994995],[113.828784,37.012048],[113.859475,37.015037],[113.883886,37.010893],[113.901185,36.99683],[113.941743,36.983376],[113.984415,36.941503],[113.991078,36.914913],[114.028176,36.881236],[114.063672,36.879331],[114.090005,36.861023],[114.081548,36.845094],[114.100449,36.839035],[114.182653,36.843937],[114.225902,36.843052],[114.252684,36.856531],[114.299969,36.845435],[114.304518,36.857007],[114.336105,36.846728],[114.353533,36.852038],[114.421193,36.839444],[114.462327,36.847681],[114.478921,36.833248],[114.507754,36.827936],[114.555231,36.845979],[114.551707,36.884094],[114.56702,36.891307],[114.64884,36.89845],[114.671073,36.917429],[114.707145,36.918041],[114.718166,36.938103],[114.734568,36.942931],[114.74341,36.932323],[114.772691,36.928447],[114.787492,36.91396],[114.838172,36.950885],[114.836314,36.958024],[114.862712,36.969715],[114.892441,36.969647],[114.949593,36.948778],[114.985602,36.950477],[115.02161,36.961422],[115.0589,36.957004],[115.096702,36.964549],[115.111631,36.958431],[115.125022,36.936471],[115.106505,36.923958],[115.125086,36.90607],[115.143219,36.899131],[115.16622,36.901512],[115.170449,36.881509],[115.158916,36.852038],[115.176856,36.854353],[115.200563,36.868374],[115.283344,36.862589],[115.325567,36.869667],[115.307499,36.837129],[115.323004,36.815474],[115.335691,36.775826],[115.349786,36.786796],[115.362921,36.771056],[115.390664,36.76315],[115.423661,36.766081],[115.463386,36.752177],[115.478314,36.754699],[115.502918,36.77017],[115.523613,36.763832],[115.538734,36.784139],[115.572116,36.775349],[115.637405,36.797492],[115.66502,36.812477],[115.684177,36.812954],[115.688598,36.83958],[115.71128,36.882393],[115.740561,36.90641],[115.757796,36.903008],[115.772789,36.936811],[115.796816,36.968763],[115.784322,36.970735],[115.776441,36.992073],[115.80963,37.011436],[115.812385,37.028961],[115.853904,37.059245],[115.827378,37.106006],[115.786564,37.123916],[115.76997,37.14155],[115.756322,37.209876],[115.698465,37.257153],[115.675784,37.258914],[115.67258,37.275839],[115.63292,37.277058],[115.623437,37.297905],[115.599859,37.301965],[115.590632,37.312453],[115.599218,37.332884],[115.577177,37.316107],[115.52938,37.326864],[115.520089,37.353648],[115.506634,37.368997],[115.468768,37.382788],[115.428595,37.387926],[115.391049,37.42793],[115.345109,37.448195],[115.360038,37.461431],[115.404183,37.462039],[115.431478,37.469602],[115.410719,37.476421],[115.417638,37.487762],[115.397968,37.497347],[115.402069,37.51017],[115.426096,37.506256],[115.421675,37.495727],[115.455313,37.501802],[115.430965,37.506796],[115.410078,37.523261],[115.405785,37.535944],[115.377914,37.541138],[115.359461,37.558675],[115.360871,37.523935],[115.307179,37.563935],[115.282575,37.576005],[115.237276,37.575465],[115.201908,37.555977],[115.188325,37.563125],[115.200563,37.572498],[115.172756,37.600543],[115.191593,37.608833],[115.202934,37.637133],[115.227858,37.648921],[115.255088,37.645621]]]]}},{"type":"Feature","properties":{"adcode":130600,"name":"保定市","center":[115.482331,38.867657],"centroid":[115.177642,39.025137],"childrenNum":24,"level":"city","parent":{"adcode":130000},"subFeatureIndex":5,"acroutes":[100000,130000]},"geometry":{"type":"MultiPolygon","coordinates":[[[[115.324734,38.248184],[115.34953,38.248117],[115.356194,38.271764],[115.369072,38.283451],[115.393611,38.285588],[115.383104,38.299076],[115.381822,38.327578],[115.402453,38.320103],[115.420906,38.337922],[115.462104,38.327311],[115.478122,38.341658],[115.495101,38.342993],[115.494781,38.362006],[115.516822,38.357337],[115.516437,38.318168],[115.547704,38.318168],[115.550908,38.332917],[115.575768,38.326377],[115.57942,38.342859],[115.590504,38.332784],[115.644965,38.32611],[115.650155,38.340791],[115.699811,38.349932],[115.705321,38.367543],[115.731462,38.392618],[115.715957,38.438411],[115.718584,38.449205],[115.745686,38.481311],[115.770418,38.48817],[115.79137,38.512005],[115.816101,38.52545],[115.875047,38.510141],[115.869345,38.524652],[115.878507,38.535566],[115.890809,38.52585],[115.940721,38.530508],[115.934058,38.546678],[115.960583,38.584394],[115.96321,38.613182],[115.951101,38.627938],[115.973398,38.635514],[115.973526,38.668467],[115.959879,38.679891],[115.955009,38.702932],[115.966286,38.708973],[115.944053,38.735456],[115.95187,38.746736],[115.995118,38.77798],[115.999731,38.796812],[116.023054,38.812524],[116.04093,38.812259],[116.035548,38.829492],[116.048746,38.8607],[116.04157,38.878451],[116.045543,38.897786],[116.085524,38.91063],[116.112754,38.909703],[116.125633,38.920823],[116.121083,38.934391],[116.15203,38.948352],[116.209503,38.921618],[116.230262,38.92453],[116.228083,38.942199],[116.243653,38.949345],[116.253007,38.932074],[116.291386,38.948683],[116.298755,38.975076],[116.316182,38.962708],[116.33534,38.984004],[116.3215,38.998088],[116.299588,38.993658],[116.293757,39.007344],[116.307148,39.032196],[116.318617,39.037416],[116.317592,39.077911],[116.305354,39.098116],[116.28184,39.107623],[116.263131,39.127292],[116.262426,39.138114],[116.221804,39.147813],[116.207837,39.168526],[116.206555,39.207429],[116.186116,39.222457],[116.201109,39.251911],[116.208734,39.330195],[116.198226,39.351315],[116.13582,39.351842],[116.116791,39.376243],[116.133001,39.4055],[116.132104,39.429423],[116.151325,39.471005],[116.179901,39.486568],[116.182144,39.49635],[116.220843,39.511644],[116.222766,39.501995],[116.244678,39.517354],[116.246152,39.557178],[116.221164,39.578951],[116.19688,39.588982],[116.151774,39.583409],[116.149595,39.573049],[116.121468,39.574951],[116.036188,39.571672],[116.026193,39.587409],[115.995182,39.577049],[115.991018,39.593768],[115.978459,39.595669],[115.978139,39.572852],[115.959558,39.560851],[115.937966,39.577442],[115.923742,39.597308],[115.910223,39.600847],[115.915605,39.58295],[115.907852,39.566885],[115.89004,39.567869],[115.882992,39.548126],[115.855506,39.555014],[115.846023,39.543272],[115.819241,39.53074],[115.82033,39.509741],[115.752542,39.515385],[115.738574,39.546289],[115.71711,39.560392],[115.692058,39.56577],[115.697889,39.579344],[115.685331,39.603666],[115.667134,39.615594],[115.664507,39.604649],[115.633176,39.597701],[115.61844,39.604059],[115.587044,39.589965],[115.545974,39.61874],[115.515925,39.591211],[115.513041,39.611727],[115.523421,39.620378],[115.52246,39.639969],[115.506698,39.652153],[115.478507,39.650319],[115.491065,39.66846],[115.499266,39.69622],[115.482351,39.742483],[115.466717,39.740456],[115.439871,39.752099],[115.434105,39.782309],[115.457171,39.781982],[115.483761,39.798717],[115.505289,39.784597],[115.55488,39.795579],[115.569168,39.814206],[115.514323,39.837726],[115.526625,39.875538],[115.51003,39.881479],[115.523037,39.898907],[115.487285,39.923834],[115.480685,39.935838],[115.438462,39.952534],[115.426801,39.950056],[115.40162,39.903802],[115.399891,39.891336],[115.364523,39.885331],[115.365676,39.867507],[115.343251,39.837857],[115.345237,39.821851],[115.330052,39.80656],[115.342867,39.79205],[115.312945,39.783551],[115.283216,39.745165],[115.250859,39.73882],[115.215043,39.708067],[115.177625,39.700475],[115.179163,39.679592],[115.168847,39.672651],[115.138734,39.688627],[115.095293,39.704795],[115.050058,39.709245],[115.03199,39.702373],[115.011487,39.674746],[114.987396,39.67802],[114.961895,39.666103],[114.936331,39.66368],[114.891032,39.634728],[114.838429,39.589179],[114.821642,39.61022],[114.783775,39.609499],[114.760645,39.617036],[114.716756,39.618674],[114.712079,39.594358],[114.680748,39.588064],[114.654991,39.599209],[114.633527,39.555866],[114.604887,39.567869],[114.58432,39.585835],[114.563432,39.558162],[114.557345,39.531987],[114.536586,39.512891],[114.532678,39.486174],[114.502308,39.477112],[114.496798,39.438556],[114.470913,39.408787],[114.469503,39.355196],[114.47969,39.351118],[114.46662,39.329669],[114.438236,39.319139],[114.425101,39.285105],[114.437018,39.25942],[114.415939,39.242885],[114.436314,39.229641],[114.467389,39.225884],[114.475974,39.215867],[114.469695,39.193321],[114.453165,39.192662],[114.443618,39.174132],[114.417989,39.171626],[114.388196,39.176968],[114.360773,39.133957],[114.369679,39.107557],[114.349176,39.076788],[114.320215,39.070712],[114.300097,39.079231],[114.22635,39.066485],[114.197005,39.050432],[114.180923,39.049111],[114.157217,39.061134],[114.126654,39.050895],[114.108714,39.052282],[114.096797,39.083722],[114.078793,39.095343],[114.065274,39.093494],[114.050793,39.13587],[114.006456,39.12287],[113.995115,39.095475],[113.961733,39.100823],[113.942896,39.08742],[113.930274,39.063446],[113.898046,39.067607],[113.884399,39.051688],[113.830514,39.011773],[113.806808,38.989691],[113.776758,38.98698],[113.767532,38.959665],[113.775156,38.919103],[113.776181,38.885669],[113.801297,38.85487],[113.83564,38.842547],[113.855566,38.828962],[113.853644,38.810138],[113.836537,38.79595],[113.839548,38.758413],[113.864664,38.746006],[113.883245,38.74667],[113.932324,38.71362],[113.929697,38.702467],[113.964617,38.699811],[113.991655,38.676769],[114.028624,38.688524],[114.052139,38.686399],[114.086097,38.65837],[114.125053,38.659632],[114.129153,38.669596],[114.182205,38.67657],[114.212831,38.688192],[114.311502,38.706517],[114.341167,38.690184],[114.366411,38.6862],[114.413504,38.703928],[114.437787,38.692773],[114.452652,38.699413],[114.498463,38.678297],[114.522106,38.65372],[114.53633,38.649268],[114.536907,38.632324],[114.552284,38.612983],[114.527616,38.590644],[114.56324,38.590644],[114.58432,38.596429],[114.595724,38.568897],[114.635257,38.514801],[114.651851,38.504682],[114.6737,38.473452],[114.702084,38.489102],[114.731237,38.48191],[114.765259,38.496626],[114.81075,38.492365],[114.830868,38.46033],[114.819143,38.449871],[114.837852,38.435745],[114.840992,38.460797],[114.858163,38.448605],[114.853998,38.435879],[114.882254,38.424149],[114.910381,38.393751],[114.923388,38.388217],[114.932871,38.344194],[114.942994,38.343193],[114.922875,38.315631],[114.906986,38.309624],[114.902565,38.294936],[114.883343,38.284854],[114.886162,38.265286],[114.915059,38.263348],[114.927681,38.283385],[114.970096,38.281114],[114.990087,38.272165],[114.989062,38.258138],[115.031862,38.267089],[115.056465,38.258472],[115.066204,38.264684],[115.056722,38.288326],[115.073765,38.293134],[115.085874,38.276773],[115.108107,38.264551],[115.152317,38.256802],[115.168591,38.259608],[115.19422,38.236759],[115.210174,38.236491],[115.225871,38.269894],[115.252205,38.29093],[115.265788,38.287658],[115.263994,38.260543],[115.273605,38.2403],[115.302758,38.235289],[115.324734,38.248184]]]]}},{"type":"Feature","properties":{"adcode":130700,"name":"张家口市","center":[114.884091,40.811901],"centroid":[115.038685,40.874645],"childrenNum":16,"level":"city","parent":{"adcode":130000},"subFeatureIndex":6,"acroutes":[100000,130000]},"geometry":{"type":"MultiPolygon","coordinates":[[[[116.365069,40.943216],[116.341747,40.964804],[116.333546,40.984458],[116.29837,40.986641],[116.264733,41.038252],[116.296128,41.062118],[116.277419,41.083154],[116.268769,41.102645],[116.245447,41.114183],[116.233273,41.130845],[116.245895,41.16358],[116.22347,41.174275],[116.221356,41.185928],[116.235195,41.211853],[116.213603,41.233288],[116.198995,41.259578],[116.191627,41.288158],[116.209503,41.307715],[116.203352,41.326117],[116.17484,41.356328],[116.141586,41.373439],[116.08751,41.376951],[116.07713,41.384866],[116.036124,41.397694],[116.03023,41.416645],[116.004473,41.432911],[116.000052,41.454402],[115.97673,41.470913],[115.982112,41.485127],[115.97391,41.529659],[115.958789,41.550353],[115.924767,41.568623],[115.929252,41.596113],[115.909967,41.642921],[115.972885,41.680101],[116.014404,41.715355],[116.056307,41.733705],[116.081039,41.776352],[116.083986,41.781745],[116.03401,41.782633],[116.016646,41.77705],[115.994926,41.828608],[115.978588,41.840841],[115.946936,41.885634],[115.916374,41.945141],[115.853071,41.927738],[115.828852,41.936978],[115.815461,41.928687],[115.810976,41.912356],[115.795855,41.911153],[115.756707,41.886774],[115.727874,41.888421],[115.724415,41.868025],[115.68815,41.867708],[115.659382,41.848319],[115.653871,41.829052],[115.630806,41.824995],[115.598641,41.808003],[115.574102,41.805403],[115.548345,41.783902],[115.519769,41.767787],[115.488758,41.760934],[115.430068,41.728753],[115.366317,41.712561],[115.347031,41.712307],[115.319032,41.691473],[115.336844,41.675145],[115.355489,41.672158],[115.360935,41.661355],[115.345494,41.635673],[115.377594,41.602475],[115.365099,41.595795],[115.311535,41.592677],[115.290328,41.622955],[115.273477,41.622764],[115.26425,41.611889],[115.266429,41.592868],[115.257587,41.581097],[115.204215,41.571423],[115.205753,41.591723],[115.195053,41.602093],[115.167246,41.605973],[115.142386,41.616087],[115.113489,41.615769],[115.099137,41.623973],[115.087796,41.613415],[115.055953,41.602284],[115.025006,41.61526],[114.977849,41.611571],[114.938317,41.613225],[114.89808,41.607182],[114.877449,41.590896],[114.860726,41.600948],[114.895581,41.636436],[114.902885,41.689313],[114.895068,41.736561],[114.896157,41.76766],[114.8663,41.804578],[114.922363,41.825121],[114.939214,41.846165],[114.92153,41.875943],[114.925438,41.899566],[114.916148,41.936978],[114.933255,41.943559],[114.915507,41.958934],[114.916853,41.981008],[114.901796,42.015528],[114.89148,42.012115],[114.889622,42.030316],[114.860854,42.05483],[114.861302,42.101997],[114.823051,42.140867],[114.828369,42.147679],[114.793963,42.149193],[114.78935,42.130963],[114.754879,42.115756],[114.710221,42.115377],[114.704647,42.121435],[114.675494,42.120426],[114.647751,42.109634],[114.624813,42.112222],[114.585537,42.131215],[114.560293,42.132414],[114.510957,42.110897],[114.500706,42.085963],[114.5025,42.067398],[114.479883,42.064304],[114.466107,42.037962],[114.46835,42.025577],[114.485969,42.015338],[114.484752,41.999155],[114.501411,41.99277],[114.510701,41.973292],[114.487443,41.96722],[114.476295,41.953936],[114.421705,41.942167],[114.374036,41.956783],[114.348087,41.947609],[114.343217,41.926915],[114.326751,41.9297],[114.330403,41.916977],[114.287026,41.868658],[114.243457,41.832792],[114.202964,41.793416],[114.200401,41.778509],[114.215266,41.756492],[114.206744,41.738402],[114.232501,41.717705],[114.237563,41.698651],[114.219302,41.700239],[114.215394,41.685057],[114.259347,41.6234],[114.227632,41.620221],[114.237242,41.59624],[114.221673,41.582242],[114.231604,41.547043],[114.231027,41.513671],[114.101218,41.537746],[114.083982,41.528958],[114.032148,41.529595],[113.977559,41.506664],[113.952827,41.483533],[113.930659,41.485573],[113.92124,41.457271],[113.884911,41.438141],[113.8712,41.413327],[113.918229,41.40382],[113.943985,41.390802],[113.93399,41.376823],[113.937514,41.356647],[113.923354,41.33934],[113.926622,41.326309],[113.89952,41.316214],[113.922585,41.291162],[113.936297,41.294805],[113.951226,41.282916],[113.952956,41.254269],[113.971536,41.239814],[113.976854,41.266676],[113.985824,41.270385],[114.007032,41.250752],[114.016259,41.232073],[114.000625,41.224011],[113.996781,41.192458],[113.973651,41.174275],[113.920407,41.172034],[113.877927,41.115593],[113.863383,41.106042],[113.820327,41.101619],[113.823402,41.093093],[113.868445,41.068853],[113.90567,41.034081],[113.922585,41.024391],[113.972946,40.982981],[113.97647,40.961206],[113.991142,40.940195],[114.000753,40.947521],[114.011773,40.935311],[114.057457,40.925092],[114.041375,40.917378],[114.052203,40.893395],[114.052844,40.870304],[114.073539,40.857308],[114.069694,40.846948],[114.044771,40.831115],[114.081163,40.790486],[114.104421,40.797571],[114.104165,40.768068],[114.134727,40.737263],[114.147285,40.73346],[114.18323,40.671675],[114.200081,40.662189],[114.216163,40.63437],[114.209307,40.629721],[114.236153,40.606991],[114.258258,40.610672],[114.282926,40.590778],[114.273379,40.553815],[114.293433,40.551424],[114.296381,40.535973],[114.285617,40.525822],[114.282605,40.495164],[114.267228,40.474199],[114.275429,40.458019],[114.299648,40.440086],[114.28709,40.423444],[114.314449,40.369604],[114.344435,40.36954],[114.382237,40.362085],[114.390374,40.351259],[114.446565,40.372845],[114.470784,40.349703],[114.499296,40.354047],[114.530627,40.3451],[114.526463,40.32357],[114.510957,40.303006],[114.469951,40.268093],[114.406392,40.246149],[114.362567,40.250109],[114.335144,40.245434],[114.293113,40.230108],[114.255247,40.236213],[114.240126,40.221924],[114.235833,40.198341],[114.180026,40.191517],[114.145107,40.177349],[114.123963,40.178129],[114.123387,40.188723],[114.097758,40.193597],[114.068029,40.179754],[114.089108,40.121491],[114.101218,40.10874],[114.091159,40.075288],[114.043809,40.056863],[114.019462,40.102819],[113.989476,40.112383],[113.973843,40.097157],[113.981019,40.073205],[113.975573,40.051068],[113.954878,40.030812],[113.922457,40.026578],[113.914641,40.005924],[113.932004,40.009443],[113.960452,40.000906],[114.021256,39.991782],[114.029457,39.985395],[114.02824,39.959316],[114.047397,39.916135],[114.067772,39.922334],[114.089941,39.910197],[114.102884,39.912873],[114.174132,39.897602],[114.211998,39.918745],[114.229426,39.899495],[114.19944,39.87939],[114.224877,39.851704],[114.276967,39.874494],[114.286065,39.858235],[114.328929,39.865548],[114.349432,39.862806],[114.395436,39.867246],[114.406712,39.83348],[114.390695,39.818584],[114.408827,39.782375],[114.408122,39.651956],[114.431636,39.614021],[114.474757,39.613759],[114.495836,39.608188],[114.515378,39.564983],[114.557025,39.581442],[114.568942,39.573967],[114.563432,39.558162],[114.58432,39.585835],[114.604887,39.567869],[114.633527,39.555866],[114.654991,39.599209],[114.680748,39.588064],[114.712079,39.594358],[114.716756,39.618674],[114.760645,39.617036],[114.783775,39.609499],[114.821642,39.61022],[114.838429,39.589179],[114.891032,39.634728],[114.936331,39.66368],[114.961895,39.666103],[114.987396,39.67802],[115.011487,39.674746],[115.03199,39.702373],[115.050058,39.709245],[115.095293,39.704795],[115.138734,39.688627],[115.168847,39.672651],[115.179163,39.679592],[115.177625,39.700475],[115.215043,39.708067],[115.250859,39.73882],[115.283216,39.745165],[115.312945,39.783551],[115.342867,39.79205],[115.330052,39.80656],[115.345237,39.821851],[115.343251,39.837857],[115.365676,39.867507],[115.364523,39.885331],[115.399891,39.891336],[115.40162,39.903802],[115.426801,39.950056],[115.428531,39.984352],[115.450123,39.99289],[115.442178,40.010876],[115.454544,40.029705],[115.478571,40.036153],[115.528034,40.07633],[115.555457,40.082644],[115.553727,40.091691],[115.575576,40.100997],[115.590697,40.096376],[115.59909,40.119995],[115.641762,40.115897],[115.644581,40.12663],[115.715893,40.133395],[115.734858,40.129492],[115.754849,40.145427],[115.754336,40.163243],[115.773045,40.176179],[115.806555,40.15323],[115.847817,40.147052],[115.844421,40.168053],[115.855506,40.188853],[115.870306,40.186058],[115.886324,40.206657],[115.883121,40.216143],[115.898498,40.234524],[115.911953,40.23446],[115.930085,40.254524],[115.960007,40.256667],[115.968913,40.264263],[115.93976,40.304434],[115.943156,40.311375],[115.922653,40.325905],[115.918296,40.353917],[115.864476,40.359363],[115.861849,40.373428],[115.846856,40.375113],[115.796431,40.426812],[115.770418,40.444165],[115.769841,40.468051],[115.782207,40.492058],[115.736012,40.503832],[115.755041,40.540046],[115.792203,40.561313],[115.819818,40.559374],[115.827378,40.587031],[115.846151,40.593039],[115.885427,40.595235],[115.907788,40.617324],[115.971988,40.602341],[115.981407,40.579665],[116.005113,40.584124],[116.0285,40.607314],[116.030037,40.597367],[116.062714,40.610285],[116.099363,40.630561],[116.121724,40.62914],[116.112562,40.648507],[116.136909,40.667674],[116.162025,40.662383],[116.171316,40.695996],[116.191947,40.724241],[116.218857,40.742807],[116.235003,40.783143],[116.247946,40.791839],[116.269602,40.777152],[116.273446,40.762913],[116.290938,40.763815],[116.307917,40.752152],[116.317015,40.772256],[116.379806,40.77232],[116.414276,40.777925],[116.416519,40.769357],[116.453937,40.765877],[116.465854,40.774511],[116.456564,40.798665],[116.43683,40.820751],[116.40646,40.833368],[116.399988,40.84978],[116.334443,40.904648],[116.334571,40.921749],[116.365069,40.943216]]]]}},{"type":"Feature","properties":{"adcode":130800,"name":"承德市","center":[117.939152,40.976204],"centroid":[117.551533,41.356206],"childrenNum":11,"level":"city","parent":{"adcode":130000},"subFeatureIndex":7,"acroutes":[100000,130000]},"geometry":{"type":"MultiPolygon","coordinates":[[[[119.158474,40.614418],[119.146557,40.63579],[119.173211,40.654316],[119.185833,40.67574],[119.176222,40.690191],[119.153349,40.688707],[119.115098,40.666513],[119.095107,40.663351],[119.081588,40.671869],[119.05423,40.664964],[119.048719,40.681482],[119.027063,40.692448],[119.010725,40.687868],[118.987723,40.697931],[118.960813,40.720566],[118.949344,40.747834],[118.91167,40.756083],[118.895459,40.754021],[118.910965,40.776766],[118.878544,40.783207],[118.861501,40.802658],[118.849135,40.800919],[118.846252,40.822103],[118.855094,40.840577],[118.873034,40.848042],[118.891743,40.903362],[118.903468,40.961784],[118.917052,40.968594],[118.946461,40.958122],[119.000601,40.967052],[119.005086,40.984265],[119.0204,40.997878],[119.013544,41.007637],[118.951971,41.018421],[118.936209,41.037482],[118.93685,41.052624],[118.964657,41.079307],[119.008354,41.068596],[119.037507,41.067378],[119.050834,41.080333],[119.073771,41.084244],[119.080627,41.095978],[119.081204,41.131422],[119.126374,41.138662],[119.158603,41.169664],[119.184295,41.182727],[119.188909,41.198156],[119.166483,41.21294],[119.169623,41.222923],[119.209796,41.225803],[119.20954,41.244483],[119.231004,41.256444],[119.248367,41.27665],[119.239461,41.314489],[119.212103,41.308099],[119.200698,41.28234],[119.154951,41.297682],[119.093121,41.293655],[119.035136,41.298768],[119.006752,41.307076],[118.974716,41.306565],[118.949536,41.318003],[118.934671,41.304584],[118.890718,41.300749],[118.868421,41.312636],[118.844907,41.34247],[118.846124,41.373823],[118.770007,41.353071],[118.763343,41.328928],[118.741879,41.324073],[118.695171,41.337999],[118.676974,41.350453],[118.629946,41.34643],[118.57997,41.354029],[118.539796,41.3509],[118.528135,41.355051],[118.500841,41.345791],[118.47329,41.345663],[118.412422,41.33193],[118.399607,41.311102],[118.380193,41.312124],[118.349119,41.342789],[118.348286,41.373886],[118.361741,41.386717],[118.343993,41.404139],[118.34867,41.428318],[118.327078,41.450831],[118.272168,41.471296],[118.269605,41.478881],[118.295426,41.485127],[118.315801,41.512525],[118.302923,41.552709],[118.313302,41.561494],[118.301577,41.569641],[118.279152,41.56544],[118.270823,41.573524],[118.230522,41.582178],[118.215337,41.595668],[118.20989,41.61774],[118.215208,41.633002],[118.206879,41.65074],[118.169013,41.67076],[118.153699,41.691156],[118.155173,41.712624],[118.130698,41.742275],[118.140372,41.783965],[118.165873,41.813265],[118.219117,41.815358],[118.236032,41.807559],[118.246988,41.774005],[118.270823,41.762203],[118.292287,41.772863],[118.319838,41.83146],[118.331755,41.840651],[118.340213,41.872459],[118.324515,41.880187],[118.286649,41.91109],[118.270182,41.917357],[118.268901,41.930143],[118.306511,41.940269],[118.306255,41.975127],[118.314007,41.987774],[118.294722,42.005224],[118.256278,42.010724],[118.237634,42.022859],[118.283061,42.03158],[118.297284,42.048765],[118.272232,42.083311],[118.252498,42.091014],[118.226613,42.090256],[118.212581,42.081101],[118.220206,42.058619],[118.204188,42.034866],[118.189067,42.030569],[118.141846,42.031327],[118.116538,42.037204],[118.115256,42.045859],[118.136913,42.052871],[118.155173,42.081164],[118.136528,42.094486],[118.097765,42.10509],[118.088859,42.117144],[118.104172,42.148878],[118.10635,42.171958],[118.089051,42.183874],[118.033629,42.199127],[118.020366,42.213432],[117.977438,42.229875],[117.971095,42.248014],[118.023249,42.267155],[118.047468,42.280563],[118.059962,42.29831],[118.016265,42.333286],[118.009153,42.358248],[118.021263,42.371636],[118.019405,42.395201],[117.99762,42.416684],[117.954564,42.445003],[117.940148,42.462766],[117.87409,42.510194],[117.849614,42.546619],[117.829624,42.56498],[117.797588,42.585277],[117.792334,42.598367],[117.801496,42.612706],[117.779904,42.618591],[117.707247,42.588033],[117.66733,42.582459],[117.6442,42.589787],[117.610883,42.592355],[117.600311,42.603001],[117.539955,42.605443],[117.524898,42.590727],[117.473512,42.602437],[117.455957,42.589411],[117.435197,42.585403],[117.44436,42.577447],[117.433147,42.555769],[117.39637,42.536339],[117.387015,42.517405],[117.408415,42.519976],[117.416296,42.512326],[117.412836,42.472493],[117.390732,42.462076],[117.330056,42.461887],[117.321406,42.468791],[117.275466,42.481905],[117.252208,42.473685],[117.222287,42.475442],[117.175963,42.465527],[117.135726,42.469167],[117.094912,42.483661],[117.079535,42.460632],[117.046922,42.454105],[117.016744,42.45649],[117.006685,42.432948],[116.965102,42.421583],[116.914421,42.402677],[116.911858,42.391431],[116.886806,42.366608],[116.897442,42.297618],[116.918522,42.229875],[116.917433,42.207698],[116.903401,42.19087],[116.858166,42.197236],[116.789225,42.200261],[116.825169,42.155563],[116.850221,42.15632],[116.865022,42.124085],[116.877324,42.121057],[116.890651,42.092655],[116.881681,42.05224],[116.87963,42.018372],[116.868161,42.002885],[116.831961,42.005351],[116.821133,41.988723],[116.796209,41.978099],[116.766479,41.990304],[116.744631,41.982146],[116.72746,41.951089],[116.669154,41.947735],[116.634812,41.929953],[116.597073,41.935586],[116.566383,41.928751],[116.533706,41.938876],[116.514164,41.970067],[116.496416,41.97968],[116.482641,41.975886],[116.453873,41.945964],[116.432088,41.939383],[116.393133,41.94299],[116.41402,41.98221],[116.409087,41.994034],[116.373719,42.009965],[116.327267,42.005667],[116.306507,41.991379],[116.29837,41.968106],[116.28421,41.959376],[116.233401,41.941408],[116.230518,41.926282],[116.211361,41.906848],[116.212578,41.885128],[116.193164,41.861816],[116.171124,41.868912],[116.134731,41.863844],[116.106667,41.849587],[116.105706,41.834757],[116.129221,41.806607],[116.098658,41.776479],[116.081039,41.776352],[116.056307,41.733705],[116.014404,41.715355],[115.972885,41.680101],[115.909967,41.642921],[115.929252,41.596113],[115.924767,41.568623],[115.958789,41.550353],[115.97391,41.529659],[115.982112,41.485127],[115.97673,41.470913],[116.000052,41.454402],[116.004473,41.432911],[116.03023,41.416645],[116.036124,41.397694],[116.07713,41.384866],[116.08751,41.376951],[116.141586,41.373439],[116.17484,41.356328],[116.203352,41.326117],[116.209503,41.307715],[116.191627,41.288158],[116.198995,41.259578],[116.213603,41.233288],[116.235195,41.211853],[116.221356,41.185928],[116.22347,41.174275],[116.245895,41.16358],[116.233273,41.130845],[116.245447,41.114183],[116.268769,41.102645],[116.277419,41.083154],[116.296128,41.062118],[116.264733,41.038252],[116.29837,40.986641],[116.333546,40.984458],[116.341747,40.964804],[116.365069,40.943216],[116.37641,40.939681],[116.398515,40.905999],[116.41402,40.899762],[116.458678,40.900597],[116.474184,40.896032],[116.473607,40.919757],[116.447466,40.953818],[116.455539,40.980476],[116.516791,40.975274],[116.536333,40.988889],[116.569715,40.991265],[116.597778,40.97476],[116.614309,40.982916],[116.622958,41.02086],[116.614116,41.03607],[116.630839,41.060771],[116.64769,41.059296],[116.665182,41.046658],[116.688632,41.044669],[116.698884,41.021246],[116.683058,41.000511],[116.67774,40.971227],[116.689465,40.950669],[116.722334,40.927406],[116.713236,40.911978],[116.730471,40.897768],[116.759496,40.889858],[116.79512,40.863614],[116.805051,40.840706],[116.813636,40.848428],[116.847723,40.839354],[116.87617,40.821202],[116.880207,40.804332],[116.896353,40.79712],[116.894623,40.781597],[116.923391,40.773738],[116.926531,40.744869],[116.979967,40.702833],[117.031032,40.692126],[117.058327,40.701543],[117.0771,40.700059],[117.110673,40.70825],[117.117785,40.700059],[117.20236,40.695609],[117.241636,40.676643],[117.261371,40.681159],[117.290395,40.660189],[117.32115,40.658317],[117.342678,40.673611],[117.359208,40.673869],[117.409248,40.687288],[117.442245,40.676643],[117.492862,40.675417],[117.514583,40.660511],[117.501256,40.636759],[117.477997,40.635338],[117.46198,40.65309],[117.448909,40.628366],[117.430264,40.626041],[117.412708,40.605118],[117.430008,40.576112],[117.402072,40.573139],[117.387464,40.560861],[117.365936,40.575982],[117.342742,40.581604],[117.311859,40.57805],[117.269444,40.560473],[117.247403,40.54024],[117.264126,40.517285],[117.247147,40.511788],[117.219019,40.514375],[117.208575,40.501115],[117.237215,40.468763],[117.236511,40.45653],[117.263357,40.442352],[117.234076,40.417162],[117.240675,40.394424],[117.228502,40.386389],[117.226195,40.369021],[117.242277,40.369993],[117.260217,40.335762],[117.275018,40.33239],[117.274377,40.308521],[117.293342,40.296713],[117.296354,40.278088],[117.331465,40.28977],[117.339859,40.246213],[117.350943,40.229978],[117.386375,40.22712],[117.415335,40.236862],[117.419115,40.249785],[117.450062,40.252512],[117.484084,40.235304],[117.514326,40.227705],[117.54617,40.232901],[117.571671,40.219261],[117.56238,40.206073],[117.575451,40.192817],[117.609409,40.194897],[117.619532,40.206398],[117.64625,40.205163],[117.677069,40.22095],[117.694112,40.238161],[117.714551,40.241668],[117.75152,40.229718],[117.807775,40.261926],[117.844104,40.261406],[117.867554,40.26965],[117.897989,40.270429],[117.909457,40.285876],[118.000888,40.29256],[118.031643,40.302358],[118.061564,40.319095],[118.079312,40.353528],[118.121856,40.354695],[118.133837,40.375113],[118.165232,40.400449],[118.153123,40.409519],[118.156967,40.423768],[118.173818,40.423056],[118.239684,40.464686],[118.262942,40.452063],[118.277935,40.425711],[118.306575,40.419558],[118.356295,40.435295],[118.360011,40.428819],[118.387305,40.436719],[118.402683,40.416838],[118.430746,40.411851],[118.45599,40.414053],[118.503211,40.403365],[118.523458,40.40628],[118.548062,40.422667],[118.571512,40.414636],[118.550881,40.385482],[118.558377,40.36928],[118.539989,40.361048],[118.532364,40.319419],[118.533325,40.298854],[118.568949,40.287564],[118.580098,40.305861],[118.596949,40.308456],[118.608225,40.328305],[118.640197,40.354566],[118.643785,40.380946],[118.618349,40.425193],[118.624179,40.437626],[118.657176,40.450574],[118.702795,40.491411],[118.723491,40.473746],[118.772954,40.479765],[118.792112,40.492382],[118.794867,40.510753],[118.821328,40.531964],[118.864,40.527244],[118.886938,40.542438],[118.919038,40.53093],[118.966003,40.536102],[118.952676,40.558469],[118.983366,40.56364],[118.998359,40.578955],[119.013095,40.577081],[119.063392,40.606151],[119.086394,40.588775],[119.105487,40.603632],[119.158474,40.614418]]]]}},{"type":"Feature","properties":{"adcode":130900,"name":"沧州市","center":[116.857461,38.310582],"centroid":[116.771341,38.270959],"childrenNum":16,"level":"city","parent":{"adcode":130000},"subFeatureIndex":8,"acroutes":[100000,130000]},"geometry":{"type":"MultiPolygon","coordinates":[[[[116.335916,37.581263],[116.343541,37.566025],[116.367696,37.566295],[116.376858,37.546602],[116.368913,37.526364],[116.402167,37.509833],[116.434139,37.473383],[116.456115,37.513679],[116.486421,37.524205],[116.517048,37.557191],[116.538512,37.568453],[116.545816,37.582477],[116.574648,37.609978],[116.604506,37.62514],[116.640834,37.666432],[116.641027,37.682323],[116.663964,37.687776],[116.67979,37.728764],[116.699332,37.730648],[116.724512,37.744305],[116.723167,37.766703],[116.744182,37.757355],[116.753793,37.770536],[116.753665,37.792993],[116.786149,37.82633],[116.788136,37.843396],[116.812739,37.843598],[116.84375,37.834461],[116.883795,37.844337],[116.919355,37.845882],[116.947675,37.840037],[116.976635,37.841045],[117.027188,37.832378],[117.074345,37.848771],[117.093759,37.849509],[117.150142,37.839567],[117.185317,37.849778],[117.208832,37.843732],[117.271366,37.839903],[117.320124,37.861399],[117.34428,37.862675],[117.381954,37.854547],[117.406301,37.843531],[117.438593,37.853876],[117.481137,37.914842],[117.512789,37.943428],[117.527974,37.996275],[117.56033,38.040978],[117.556486,38.05719],[117.58378,38.070653],[117.616713,38.069046],[117.666048,38.072528],[117.679504,38.07956],[117.704492,38.076078],[117.729223,38.093822],[117.743191,38.123409],[117.76882,38.131908],[117.766962,38.15867],[117.801625,38.173786],[117.789195,38.180741],[117.808544,38.228406],[117.8475,38.25393],[117.860891,38.274569],[117.895682,38.301613],[117.916698,38.32344],[117.948349,38.346462],[117.958024,38.376147],[117.937457,38.38775],[117.846411,38.36801],[117.804764,38.367076],[117.781186,38.373812],[117.730505,38.424949],[117.725123,38.457333],[117.710899,38.467791],[117.678799,38.477049],[117.647852,38.508677],[117.645161,38.527647],[117.685975,38.532438],[117.68527,38.539425],[117.643367,38.54029],[117.638562,38.570028],[117.645033,38.593836],[117.63901,38.626742],[117.557831,38.613781],[117.541429,38.60361],[117.478895,38.617237],[117.432442,38.601349],[117.391949,38.572689],[117.369075,38.564773],[117.368883,38.582465],[117.358055,38.57056],[117.305644,38.556591],[117.292189,38.562445],[117.253169,38.556192],[117.238369,38.581002],[117.259512,38.603078],[117.255988,38.613781],[117.23068,38.624017],[117.23036,38.641694],[117.186086,38.616506],[117.151103,38.617702],[117.13611,38.598756],[117.098179,38.586921],[117.086326,38.606402],[117.071526,38.607399],[117.064285,38.635713],[117.051727,38.643488],[117.06813,38.680621],[117.039041,38.688457],[117.042309,38.706517],[117.015719,38.700409],[117.014502,38.690184],[116.994447,38.695695],[116.87726,38.680688],[116.866496,38.717005],[116.867457,38.745873],[116.859127,38.741295],[116.796529,38.74667],[116.766351,38.741959],[116.758855,38.732071],[116.77404,38.652258],[116.763212,38.633853],[116.738224,38.631327],[116.733739,38.614047],[116.71503,38.609327],[116.702792,38.619098],[116.680559,38.605936],[116.680303,38.592706],[116.662234,38.581268],[116.671653,38.566503],[116.643333,38.564773],[116.652431,38.551202],[116.672678,38.546545],[116.668257,38.530042],[116.647114,38.50648],[116.621228,38.514335],[116.627315,38.501087],[116.610593,38.479646],[116.589897,38.483908],[116.569715,38.470988],[116.559399,38.496759],[116.519482,38.48817],[116.465726,38.494096],[116.449772,38.518262],[116.452655,38.534501],[116.431127,38.539558],[116.432152,38.552533],[116.455475,38.557656],[116.454834,38.580337],[116.425425,38.587187],[116.41921,38.599288],[116.381984,38.619165],[116.366863,38.67305],[116.370836,38.692508],[116.406331,38.703596],[116.435804,38.733199],[116.42299,38.770419],[116.390313,38.789784],[116.338287,38.80689],[116.271973,38.816634],[116.278764,38.836451],[116.247497,38.848907],[116.248907,38.85964],[116.23212,38.871894],[116.212194,38.870238],[116.202198,38.887258],[116.20002,38.915727],[116.209503,38.921618],[116.15203,38.948352],[116.121083,38.934391],[116.125633,38.920823],[116.112754,38.909703],[116.085524,38.91063],[116.045543,38.897786],[116.04157,38.878451],[116.048746,38.8607],[116.035548,38.829492],[116.04093,38.812259],[116.023054,38.812524],[115.999731,38.796812],[115.995118,38.77798],[115.95187,38.746736],[115.944053,38.735456],[115.966286,38.708973],[115.955009,38.702932],[115.959879,38.679891],[115.973526,38.668467],[115.973398,38.635514],[115.951101,38.627938],[115.96321,38.613182],[115.960583,38.584394],[115.934058,38.546678],[115.940721,38.530508],[115.890809,38.52585],[115.878507,38.535566],[115.869345,38.524652],[115.875047,38.510141],[115.816101,38.52545],[115.79137,38.512005],[115.770418,38.48817],[115.745686,38.481311],[115.718584,38.449205],[115.715957,38.438411],[115.731462,38.392618],[115.705321,38.367543],[115.734025,38.359205],[115.738767,38.369544],[115.783297,38.358338],[115.804633,38.345462],[115.841538,38.346062],[115.850188,38.309423],[115.833016,38.298008],[115.837181,38.272499],[115.864476,38.255266],[115.856467,38.240901],[115.871267,38.217579],[115.899523,38.20314],[115.887542,38.171312],[115.900804,38.158536],[115.935403,38.167232],[115.938671,38.144354],[115.968913,38.138533],[115.986725,38.125885],[116.049771,38.146026],[116.055218,38.131306],[116.048554,38.11424],[116.031831,38.100718],[116.031511,38.082774],[116.055474,38.071725],[116.05227,38.052434],[116.070595,38.041112],[116.049515,38.038365],[116.042467,38.026706],[116.062394,38.005057],[116.071876,37.980318],[116.100645,37.948929],[116.120571,37.948996],[116.093981,37.922627],[116.091034,37.910949],[116.153952,37.914573],[116.170867,37.933565],[116.170163,37.959594],[116.188039,37.968314],[116.209118,37.966369],[116.226354,37.95121],[116.256595,37.965229],[116.266206,37.961405],[116.266975,37.981458],[116.278252,37.962479],[116.306764,37.979312],[116.329189,38.008141],[116.343925,38.017256],[116.3709,38.018597],[116.417224,38.009481],[116.479309,38.011492],[116.483474,38.02503],[116.496352,38.013704],[116.563243,38.01987],[116.565166,37.980116],[116.53377,37.907727],[116.515382,37.892892],[116.51346,37.863951],[116.473415,37.865495],[116.481424,37.830026],[116.466623,37.805564],[116.47303,37.777059],[116.460664,37.778875],[116.451182,37.7587],[116.438367,37.758902],[116.434331,37.734618],[116.424784,37.735829],[116.386533,37.696393],[116.378909,37.659698],[116.36539,37.648719],[116.374936,37.63949],[116.375192,37.617256],[116.3281,37.605058],[116.335916,37.581263]]]]}},{"type":"Feature","properties":{"adcode":131000,"name":"廊坊市","center":[116.704441,39.523927],"centroid":[116.540212,39.111215],"childrenNum":10,"level":"city","parent":{"adcode":130000},"subFeatureIndex":9,"acroutes":[100000,130000]},"geometry":{"type":"MultiPolygon","coordinates":[[[[116.244678,39.517354],[116.222766,39.501995],[116.220843,39.511644],[116.182144,39.49635],[116.179901,39.486568],[116.151325,39.471005],[116.132104,39.429423],[116.133001,39.4055],[116.116791,39.376243],[116.13582,39.351842],[116.198226,39.351315],[116.208734,39.330195],[116.201109,39.251911],[116.186116,39.222457],[116.206555,39.207429],[116.207837,39.168526],[116.221804,39.147813],[116.262426,39.138114],[116.263131,39.127292],[116.28184,39.107623],[116.305354,39.098116],[116.317592,39.077911],[116.318617,39.037416],[116.307148,39.032196],[116.293757,39.007344],[116.299588,38.993658],[116.3215,38.998088],[116.33534,38.984004],[116.316182,38.962708],[116.298755,38.975076],[116.291386,38.948683],[116.253007,38.932074],[116.243653,38.949345],[116.228083,38.942199],[116.230262,38.92453],[116.209503,38.921618],[116.20002,38.915727],[116.202198,38.887258],[116.212194,38.870238],[116.23212,38.871894],[116.248907,38.85964],[116.247497,38.848907],[116.278764,38.836451],[116.271973,38.816634],[116.338287,38.80689],[116.390313,38.789784],[116.42299,38.770419],[116.435804,38.733199],[116.406331,38.703596],[116.370836,38.692508],[116.366863,38.67305],[116.381984,38.619165],[116.41921,38.599288],[116.425425,38.587187],[116.454834,38.580337],[116.455475,38.557656],[116.432152,38.552533],[116.431127,38.539558],[116.452655,38.534501],[116.449772,38.518262],[116.465726,38.494096],[116.519482,38.48817],[116.559399,38.496759],[116.569715,38.470988],[116.589897,38.483908],[116.610593,38.479646],[116.627315,38.501087],[116.621228,38.514335],[116.647114,38.50648],[116.668257,38.530042],[116.672678,38.546545],[116.652431,38.551202],[116.643333,38.564773],[116.671653,38.566503],[116.662234,38.581268],[116.680303,38.592706],[116.680559,38.605936],[116.702792,38.619098],[116.71503,38.609327],[116.733739,38.614047],[116.738224,38.631327],[116.763212,38.633853],[116.77404,38.652258],[116.758855,38.732071],[116.766351,38.741959],[116.746297,38.754233],[116.751294,38.780168],[116.737327,38.784479],[116.73848,38.807022],[116.75123,38.831282],[116.74604,38.851491],[116.723103,38.852551],[116.722334,38.897058],[116.708046,38.897058],[116.70811,38.931876],[116.716183,38.93889],[116.728613,38.975341],[116.754626,39.003245],[116.756612,39.0503],[116.773015,39.046865],[116.787303,39.061927],[116.80268,39.050895],[116.860473,39.050564],[116.869891,39.069919],[116.881488,39.071702],[116.91109,39.111055],[116.924096,39.119372],[116.909232,39.150782],[116.870084,39.153685],[116.863164,39.201365],[116.855796,39.215669],[116.875594,39.21646],[116.874569,39.230036],[116.892637,39.223973],[116.878733,39.255336],[116.867969,39.302552],[116.884243,39.305383],[116.889626,39.338157],[116.875786,39.33921],[116.870724,39.357499],[116.849196,39.339473],[116.829206,39.338881],[116.818121,39.373547],[116.837599,39.374073],[116.834139,39.402674],[116.875914,39.434548],[116.855475,39.443352],[116.832473,39.435468],[116.815751,39.451761],[116.807421,39.445586],[116.785124,39.465883],[116.820748,39.482431],[116.813957,39.510266],[116.826194,39.513088],[116.819595,39.52851],[116.806204,39.528838],[116.787687,39.554555],[116.81165,39.576983],[116.797875,39.594358],[116.812355,39.615922],[116.789994,39.610548],[116.790699,39.596062],[116.748667,39.619919],[116.700742,39.621033],[116.7026,39.610417],[116.727075,39.593047],[116.705099,39.587999],[116.662363,39.605239],[116.646537,39.599143],[116.620524,39.601699],[116.607773,39.619723],[116.565934,39.619788],[116.566575,39.604387],[116.541779,39.593505],[116.524416,39.596521],[116.519354,39.566491],[116.508462,39.551078],[116.470916,39.55462],[116.478861,39.539204],[116.464573,39.527657],[116.437534,39.526541],[116.443813,39.509872],[116.424656,39.509741],[116.424079,39.522735],[116.402679,39.526869],[116.402807,39.5144],[116.418761,39.506393],[116.412354,39.482103],[116.444134,39.482169],[116.454706,39.453338],[116.434395,39.442761],[116.408958,39.45025],[116.350461,39.453009],[116.320027,39.46851],[116.306443,39.488997],[116.279277,39.491295],[116.257941,39.500551],[116.244678,39.517354]]],[[[117.209793,40.082253],[117.204347,40.06982],[117.160073,40.076199],[117.13925,40.064025],[117.119515,40.072424],[117.085621,40.075158],[117.085173,40.068583],[117.052048,40.059402],[117.028533,40.033939],[117.000662,40.0299],[116.972086,40.037],[116.960489,40.051133],[116.928133,40.05491],[116.867841,40.041885],[116.857782,40.051914],[116.822734,40.046444],[116.819979,40.028337],[116.781536,40.034851],[116.770452,40.011658],[116.775385,39.99276],[116.757317,39.961468],[116.780575,39.94973],[116.784676,39.891401],[116.804154,39.877954],[116.827284,39.87704],[116.866047,39.843866],[116.885653,39.844585],[116.907566,39.834133],[116.902824,39.848242],[116.92589,39.835374],[116.928453,39.813095],[116.952608,39.789827],[116.949725,39.778583],[116.924288,39.781263],[116.920893,39.769167],[116.901799,39.763609],[116.916664,39.731362],[116.88277,39.718472],[116.893854,39.695893],[116.912563,39.689216],[116.91692,39.706365],[116.950878,39.706824],[116.944599,39.695173],[116.963629,39.643441],[116.974585,39.636824],[117.004378,39.644489],[117.015783,39.654052],[117.057045,39.644554],[117.127076,39.61697],[117.152641,39.623523],[117.157959,39.636627],[117.177693,39.645602],[117.159624,39.666823],[117.170132,39.673371],[117.169235,39.717622],[117.153153,39.722726],[117.161867,39.747389],[117.205884,39.763871],[117.18064,39.78244],[117.178718,39.795318],[117.15751,39.796756],[117.156357,39.817473],[117.195056,39.82551],[117.192173,39.833088],[117.252208,39.834591],[117.259961,39.843409],[117.247467,39.861043],[117.227797,39.852749],[117.166865,39.868944],[117.149117,39.896297],[117.158856,39.909218],[117.137456,39.921616],[117.156869,39.938055],[117.151039,39.944839],[117.175963,39.959121],[117.178654,39.977311],[117.198132,39.99276],[117.187752,40.026187],[117.1841,40.062593],[117.222863,40.065523],[117.209793,40.082253]]]]}},{"type":"Feature","properties":{"adcode":131100,"name":"衡水市","center":[115.665993,37.735097],"centroid":[115.828761,37.7648],"childrenNum":11,"level":"city","parent":{"adcode":130000},"subFeatureIndex":10,"acroutes":[100000,130000]},"geometry":{"type":"MultiPolygon","coordinates":[[[[115.853904,37.059245],[115.864988,37.070785],[115.885427,37.128731],[115.879981,37.151992],[115.911825,37.176195],[115.904841,37.189344],[115.912017,37.207098],[115.940721,37.227558],[115.953215,37.223697],[115.969425,37.239479],[115.964171,37.250721],[115.976217,37.276178],[115.968272,37.287076],[115.98461,37.316175],[115.975897,37.334508],[116.00947,37.343165],[116.024527,37.359937],[116.05195,37.357502],[116.056179,37.369065],[116.08751,37.373324],[116.106539,37.368794],[116.168817,37.38414],[116.195471,37.365684],[116.236028,37.361559],[116.285236,37.40266],[116.263067,37.42239],[116.227379,37.424755],[116.243076,37.448195],[116.229878,37.459676],[116.224431,37.479729],[116.241346,37.491475],[116.276458,37.466901],[116.271781,37.478176],[116.290233,37.484049],[116.278444,37.524745],[116.291386,37.5238],[116.287863,37.5493],[116.335916,37.581263],[116.3281,37.605058],[116.375192,37.617256],[116.374936,37.63949],[116.36539,37.648719],[116.378909,37.659698],[116.386533,37.696393],[116.424784,37.735829],[116.434331,37.734618],[116.438367,37.758902],[116.451182,37.7587],[116.460664,37.778875],[116.47303,37.777059],[116.466623,37.805564],[116.481424,37.830026],[116.473415,37.865495],[116.51346,37.863951],[116.515382,37.892892],[116.53377,37.907727],[116.565166,37.980116],[116.563243,38.01987],[116.496352,38.013704],[116.483474,38.02503],[116.479309,38.011492],[116.417224,38.009481],[116.3709,38.018597],[116.343925,38.017256],[116.329189,38.008141],[116.306764,37.979312],[116.278252,37.962479],[116.266975,37.981458],[116.266206,37.961405],[116.256595,37.965229],[116.226354,37.95121],[116.209118,37.966369],[116.188039,37.968314],[116.170163,37.959594],[116.170867,37.933565],[116.153952,37.914573],[116.091034,37.910949],[116.093981,37.922627],[116.120571,37.948996],[116.100645,37.948929],[116.071876,37.980318],[116.062394,38.005057],[116.042467,38.026706],[116.049515,38.038365],[116.070595,38.041112],[116.05227,38.052434],[116.055474,38.071725],[116.031511,38.082774],[116.031831,38.100718],[116.048554,38.11424],[116.055218,38.131306],[116.049771,38.146026],[115.986725,38.125885],[115.968913,38.138533],[115.938671,38.144354],[115.935403,38.167232],[115.900804,38.158536],[115.887542,38.171312],[115.899523,38.20314],[115.871267,38.217579],[115.856467,38.240901],[115.864476,38.255266],[115.837181,38.272499],[115.833016,38.298008],[115.850188,38.309423],[115.841538,38.346062],[115.804633,38.345462],[115.783297,38.358338],[115.738767,38.369544],[115.734025,38.359205],[115.705321,38.367543],[115.699811,38.349932],[115.650155,38.340791],[115.644965,38.32611],[115.590504,38.332784],[115.57942,38.342859],[115.575768,38.326377],[115.550908,38.332917],[115.547704,38.318168],[115.516437,38.318168],[115.516822,38.357337],[115.494781,38.362006],[115.495101,38.342993],[115.478122,38.341658],[115.462104,38.327311],[115.420906,38.337922],[115.402453,38.320103],[115.381822,38.327578],[115.383104,38.299076],[115.393611,38.285588],[115.369072,38.283451],[115.356194,38.271764],[115.34953,38.248117],[115.324734,38.248184],[115.323645,38.220586],[115.35094,38.210493],[115.342418,38.196254],[115.346903,38.13967],[115.364843,38.13793],[115.383232,38.0886],[115.420522,38.089671],[115.439871,38.082038],[115.468063,38.095161],[115.482992,38.08398],[115.466782,38.063554],[115.45134,38.017323],[115.438205,38.001102],[115.464219,37.99299],[115.444997,37.989168],[115.456017,37.974551],[115.457555,37.95074],[115.448585,37.936584],[115.412769,37.943293],[115.408668,37.918936],[115.385795,37.917191],[115.365484,37.906318],[115.360294,37.880068],[115.389831,37.874629],[115.388614,37.853003],[115.363049,37.849845],[115.360166,37.820215],[115.349722,37.805765],[115.352349,37.784052],[115.371635,37.770335],[115.344468,37.74814],[115.360294,37.731994],[115.386179,37.727082],[115.394316,37.712143],[115.380989,37.707432],[115.333768,37.71322],[115.317046,37.695383],[115.325567,37.682458],[115.316853,37.660102],[115.301412,37.660169],[115.297376,37.629587],[115.258356,37.639625],[115.255088,37.645621],[115.227858,37.648921],[115.202934,37.637133],[115.191593,37.608833],[115.172756,37.600543],[115.200563,37.572498],[115.188325,37.563125],[115.201908,37.555977],[115.237276,37.575465],[115.282575,37.576005],[115.307179,37.563935],[115.360871,37.523935],[115.359461,37.558675],[115.377914,37.541138],[115.405785,37.535944],[115.410078,37.523261],[115.430965,37.506796],[115.455313,37.501802],[115.421675,37.495727],[115.426096,37.506256],[115.402069,37.51017],[115.397968,37.497347],[115.417638,37.487762],[115.410719,37.476421],[115.431478,37.469602],[115.404183,37.462039],[115.360038,37.461431],[115.345109,37.448195],[115.391049,37.42793],[115.428595,37.387926],[115.468768,37.382788],[115.506634,37.368997],[115.520089,37.353648],[115.52938,37.326864],[115.577177,37.316107],[115.599218,37.332884],[115.590632,37.312453],[115.599859,37.301965],[115.623437,37.297905],[115.63292,37.277058],[115.67258,37.275839],[115.675784,37.258914],[115.698465,37.257153],[115.756322,37.209876],[115.76997,37.14155],[115.786564,37.123916],[115.827378,37.106006],[115.853904,37.059245]]]]}}]} -', 'admin', '2025-04-02 22:13:35', NULL, NULL, '0', NULL); - --- ---------------------------- --- Table structure for jimu_report_share --- ---------------------------- -DROP TABLE IF EXISTS "public"."jimu_report_share"; -CREATE TABLE "public"."jimu_report_share" ( - "id" varchar(32) COLLATE "pg_catalog"."default" NOT NULL, - "report_id" varchar(32) COLLATE "pg_catalog"."default", - "preview_url" varchar(1000) COLLATE "pg_catalog"."default", - "preview_lock" varchar(4) COLLATE "pg_catalog"."default", - "last_update_time" timestamp(6), - "term_of_validity" varchar(1) COLLATE "pg_catalog"."default", - "status" varchar(1) COLLATE "pg_catalog"."default", - "preview_lock_status" varchar(1) COLLATE "pg_catalog"."default", - "share_token" varchar(50) COLLATE "pg_catalog"."default" -)TABLESPACE "stas" -; -COMMENT ON COLUMN "public"."jimu_report_share"."id" IS '主键'; -COMMENT ON COLUMN "public"."jimu_report_share"."report_id" IS '在线excel设计器id'; -COMMENT ON COLUMN "public"."jimu_report_share"."preview_url" IS '预览地址'; -COMMENT ON COLUMN "public"."jimu_report_share"."preview_lock" IS '密码锁'; -COMMENT ON COLUMN "public"."jimu_report_share"."last_update_time" IS '最后更新时间'; -COMMENT ON COLUMN "public"."jimu_report_share"."term_of_validity" IS '有效期(0:永久有效,1:1天,2:7天)'; -COMMENT ON COLUMN "public"."jimu_report_share"."status" IS '是否过期(0未过期,1已过期)'; -COMMENT ON COLUMN "public"."jimu_report_share"."preview_lock_status" IS '是否为密码锁(0 否,1是)'; -COMMENT ON COLUMN "public"."jimu_report_share"."share_token" IS '分享token'; -COMMENT ON TABLE "public"."jimu_report_share" IS '积木报表预览权限表'; - --- ---------------------------- --- Records of jimu_report_share --- ---------------------------- -INSERT INTO "public"."jimu_report_share" VALUES ('989322818603012096', '989065112487022592', '/jmreport/shareView/989065112487022592', '', '2024-08-30 10:22:31', '1', '0', '0', '71e3778ba7ebeae4652d2e53c46a7b1b'); - --- ---------------------------- --- Table structure for joa_demo --- ---------------------------- -DROP TABLE IF EXISTS "public"."joa_demo"; -CREATE TABLE "public"."joa_demo" ( - "id" varchar(32) COLLATE "pg_catalog"."default", - "name" varchar(100) COLLATE "pg_catalog"."default", - "days" int4, - "begin_date" timestamp(6), - "end_date" timestamp(6), - "reason" varchar(500) COLLATE "pg_catalog"."default", - "bpm_status" varchar(50) COLLATE "pg_catalog"."default", - "create_by" varchar(32) COLLATE "pg_catalog"."default", - "create_time" timestamp(6), - "update_time" timestamp(6), - "update_by" varchar(32) COLLATE "pg_catalog"."default" -)TABLESPACE "stas" -; -COMMENT ON COLUMN "public"."joa_demo"."id" IS 'ID'; -COMMENT ON COLUMN "public"."joa_demo"."name" IS '请假人'; -COMMENT ON COLUMN "public"."joa_demo"."days" IS '请假天数'; -COMMENT ON COLUMN "public"."joa_demo"."begin_date" IS '开始时间'; -COMMENT ON COLUMN "public"."joa_demo"."end_date" IS '请假结束时间'; -COMMENT ON COLUMN "public"."joa_demo"."reason" IS '请假原因'; -COMMENT ON COLUMN "public"."joa_demo"."bpm_status" IS '流程状态'; -COMMENT ON COLUMN "public"."joa_demo"."create_by" IS '创建人id'; -COMMENT ON COLUMN "public"."joa_demo"."create_time" IS '创建时间'; -COMMENT ON COLUMN "public"."joa_demo"."update_time" IS '修改时间'; -COMMENT ON COLUMN "public"."joa_demo"."update_by" IS '修改人id'; -COMMENT ON TABLE "public"."joa_demo" IS '流程测试'; - --- ---------------------------- --- Records of joa_demo --- ---------------------------- - -- ---------------------------- -- Table structure for oauth2_registered_client -- ---------------------------- @@ -3368,7 +56,7 @@ CREATE TABLE "public"."oauth2_registered_client" ( "scopes" varchar(1000) COLLATE "pg_catalog"."default" NOT NULL, "client_settings" varchar(2000) COLLATE "pg_catalog"."default" NOT NULL, "token_settings" varchar(2000) COLLATE "pg_catalog"."default" NOT NULL -)TABLESPACE "stas" +) ; -- ---------------------------- @@ -3392,7 +80,7 @@ CREATE TABLE "public"."onl_auth_data" ( "create_by" varchar(50) COLLATE "pg_catalog"."default", "update_by" varchar(50) COLLATE "pg_catalog"."default", "update_time" timestamp(6) -)TABLESPACE "stas" +) ; COMMENT ON COLUMN "public"."onl_auth_data"."id" IS '主键'; COMMENT ON COLUMN "public"."onl_auth_data"."cgform_id" IS 'online表ID'; @@ -3426,7 +114,7 @@ CREATE TABLE "public"."onl_auth_page" ( "create_by" varchar(32) COLLATE "pg_catalog"."default", "update_by" varchar(50) COLLATE "pg_catalog"."default", "update_time" timestamp(6) -)TABLESPACE "stas" +) ; COMMENT ON COLUMN "public"."onl_auth_page"."id" IS ' 主键'; COMMENT ON COLUMN "public"."onl_auth_page"."cgform_id" IS 'online表id'; @@ -3458,7 +146,7 @@ CREATE TABLE "public"."onl_auth_relation" ( "type" int4, "cgform_id" varchar(32) COLLATE "pg_catalog"."default", "auth_mode" varchar(50) COLLATE "pg_catalog"."default" -)TABLESPACE "stas" +) ; COMMENT ON COLUMN "public"."onl_auth_relation"."role_id" IS '角色id'; COMMENT ON COLUMN "public"."onl_auth_relation"."auth_id" IS '权限id'; @@ -3486,7 +174,7 @@ CREATE TABLE "public"."onl_cgform_button" ( "opt_type" varchar(20) COLLATE "pg_catalog"."default", "order_num" int4, "opt_position" varchar(3) COLLATE "pg_catalog"."default" -)TABLESPACE "stas" +) ; COMMENT ON COLUMN "public"."onl_cgform_button"."id" IS '主键ID'; COMMENT ON COLUMN "public"."onl_cgform_button"."button_code" IS '按钮编码'; @@ -3526,7 +214,7 @@ CREATE TABLE "public"."onl_cgform_enhance_java" ( "cgform_head_id" varchar(32) COLLATE "pg_catalog"."default" NOT NULL, "active_status" varchar(2) COLLATE "pg_catalog"."default", "event" varchar(10) COLLATE "pg_catalog"."default" NOT NULL -)TABLESPACE "stas" +) ; COMMENT ON COLUMN "public"."onl_cgform_enhance_java"."button_code" IS '按钮编码'; COMMENT ON COLUMN "public"."onl_cgform_enhance_java"."cg_java_type" IS '类型'; @@ -3549,7 +237,7 @@ CREATE TABLE "public"."onl_cgform_enhance_js" ( "cg_js_type" varchar(20) COLLATE "pg_catalog"."default", "content" varchar(1000) COLLATE "pg_catalog"."default", "cgform_head_id" varchar(32) COLLATE "pg_catalog"."default" -)TABLESPACE "stas" +) ; COMMENT ON COLUMN "public"."onl_cgform_enhance_js"."id" IS '主键ID'; COMMENT ON COLUMN "public"."onl_cgform_enhance_js"."cg_js" IS 'JS增强内容'; @@ -3757,7 +445,7 @@ CREATE TABLE "public"."onl_cgform_enhance_sql" ( "cgb_sql_name" varchar(50) COLLATE "pg_catalog"."default", "content" varchar(1000) COLLATE "pg_catalog"."default", "cgform_head_id" varchar(32) COLLATE "pg_catalog"."default" -)TABLESPACE "stas" +) ; COMMENT ON COLUMN "public"."onl_cgform_enhance_sql"."id" IS '主键ID'; COMMENT ON COLUMN "public"."onl_cgform_enhance_sql"."button_code" IS '按钮编码'; @@ -3823,7 +511,7 @@ CREATE TABLE "public"."onl_cgform_field" ( "query_valid_type" varchar(50) COLLATE "pg_catalog"."default", "query_must_input" varchar(3) COLLATE "pg_catalog"."default", "sort_flag" varchar(3) COLLATE "pg_catalog"."default" -)TABLESPACE "stas" +) ; COMMENT ON COLUMN "public"."onl_cgform_field"."id" IS '主键ID'; COMMENT ON COLUMN "public"."onl_cgform_field"."cgform_head_id" IS '表ID'; @@ -4642,7 +1330,7 @@ CREATE TABLE "public"."onl_cgform_head" ( "des_form_code" varchar(50) COLLATE "pg_catalog"."default", "tenant_id" int4, "low_app_id" varchar(32) COLLATE "pg_catalog"."default" -)TABLESPACE "stas" +) ; COMMENT ON COLUMN "public"."onl_cgform_head"."id" IS '主键ID'; COMMENT ON COLUMN "public"."onl_cgform_head"."table_name" IS '表名'; @@ -4713,7 +1401,7 @@ CREATE TABLE "public"."onl_cgform_index" ( "update_time" timestamp(6), "is_db_synch" varchar(2) COLLATE "pg_catalog"."default", "del_flag" int4 -)TABLESPACE "stas" +) ; COMMENT ON COLUMN "public"."onl_cgform_index"."id" IS '主键'; COMMENT ON COLUMN "public"."onl_cgform_index"."cgform_head_id" IS '主表id'; @@ -4753,7 +1441,7 @@ CREATE TABLE "public"."onl_cgreport_head" ( "update_by" varchar(32) COLLATE "pg_catalog"."default", "create_time" timestamp(6), "create_by" varchar(32) COLLATE "pg_catalog"."default" -)TABLESPACE "stas" +) ; COMMENT ON COLUMN "public"."onl_cgreport_head"."code" IS '报表编码'; COMMENT ON COLUMN "public"."onl_cgreport_head"."name" IS '报表名字'; @@ -4805,7 +1493,7 @@ CREATE TABLE "public"."onl_cgreport_item" ( "create_time" timestamp(6), "update_by" varchar(32) COLLATE "pg_catalog"."default", "update_time" timestamp(6) -)TABLESPACE "stas" +) ; COMMENT ON COLUMN "public"."onl_cgreport_item"."cgrhead_id" IS '报表ID'; COMMENT ON COLUMN "public"."onl_cgreport_item"."field_name" IS '字段名字'; @@ -4901,7 +1589,7 @@ CREATE TABLE "public"."onl_cgreport_param" ( "create_time" timestamp(6), "update_by" varchar(50) COLLATE "pg_catalog"."default", "update_time" timestamp(6) -)TABLESPACE "stas" +) ; COMMENT ON COLUMN "public"."onl_cgreport_param"."cgrhead_id" IS '动态报表ID'; COMMENT ON COLUMN "public"."onl_cgreport_param"."param_name" IS '参数字段'; @@ -4936,7 +1624,7 @@ CREATE TABLE "public"."onl_drag_comp" ( "create_time" timestamp(6), "update_by" varchar(50) COLLATE "pg_catalog"."default", "update_time" timestamp(6) -)TABLESPACE "stas" +) ; COMMENT ON COLUMN "public"."onl_drag_comp"."id" IS '主键'; COMMENT ON COLUMN "public"."onl_drag_comp"."comp_name" IS '组件名称'; @@ -9206,7 +5894,7 @@ CREATE TABLE "public"."onl_drag_dataset_head" ( "update_by" varchar(50) COLLATE "pg_catalog"."default", "low_app_id" varchar(32) COLLATE "pg_catalog"."default", "tenant_id" int4 -)TABLESPACE "stas" +) ; COMMENT ON COLUMN "public"."onl_drag_dataset_head"."id" IS 'id'; COMMENT ON COLUMN "public"."onl_drag_dataset_head"."name" IS '名称'; @@ -9765,7 +6453,7 @@ CREATE TABLE "public"."onl_drag_dataset_item" ( "create_time" timestamp(6), "update_by" varchar(32) COLLATE "pg_catalog"."default", "update_time" timestamp(6) -)TABLESPACE "stas" +) ; COMMENT ON COLUMN "public"."onl_drag_dataset_item"."id" IS 'id'; COMMENT ON COLUMN "public"."onl_drag_dataset_item"."head_id" IS '主表ID'; @@ -10038,7 +6726,7 @@ CREATE TABLE "public"."onl_drag_dataset_param" ( "create_time" timestamp(6), "update_by" varchar(50) COLLATE "pg_catalog"."default", "update_time" timestamp(6) -)TABLESPACE "stas" +) ; COMMENT ON COLUMN "public"."onl_drag_dataset_param"."head_id" IS '动态报表ID'; COMMENT ON COLUMN "public"."onl_drag_dataset_param"."param_name" IS '参数字段'; @@ -10091,7 +6779,7 @@ CREATE TABLE "public"."onl_drag_page" ( "update_count" int4, "visits_num" int4, "del_flag" int4 -)TABLESPACE "stas" +) ; COMMENT ON COLUMN "public"."onl_drag_page"."id" IS '主键'; COMMENT ON COLUMN "public"."onl_drag_page"."name" IS '界面名称'; @@ -10178,7 +6866,7 @@ CREATE TABLE "public"."onl_drag_page_comp" ( "create_time" timestamp(6), "update_by" varchar(50) COLLATE "pg_catalog"."default", "update_time" timestamp(6) -)TABLESPACE "stas" +) ; COMMENT ON COLUMN "public"."onl_drag_page_comp"."id" IS '主键'; COMMENT ON COLUMN "public"."onl_drag_page_comp"."parent_id" IS '父组件ID'; @@ -11503,7 +8191,7 @@ CREATE TABLE "public"."onl_drag_share" ( "status" varchar(1) COLLATE "pg_catalog"."default", "preview_lock_status" varchar(1) COLLATE "pg_catalog"."default", "share_token" varchar(32) COLLATE "pg_catalog"."default" -)TABLESPACE "stas" +) ; COMMENT ON COLUMN "public"."onl_drag_share"."id" IS '主键'; COMMENT ON COLUMN "public"."onl_drag_share"."drag_id" IS '在线仪表盘设计器id'; @@ -11552,7 +8240,7 @@ CREATE TABLE "public"."onl_drag_table_relation" ( "create_time" timestamp(6), "update_by" varchar(50) COLLATE "pg_catalog"."default", "update_time" timestamp(6) -)TABLESPACE "stas" +) ; COMMENT ON COLUMN "public"."onl_drag_table_relation"."id" IS '主键'; COMMENT ON COLUMN "public"."onl_drag_table_relation"."aggregation_name" IS '聚合表名称'; @@ -11595,7 +8283,7 @@ CREATE TABLE "public"."open_api" ( "update_time" timestamp(6), "headers_json" text COLLATE "pg_catalog"."default", "params_json" text COLLATE "pg_catalog"."default" -)TABLESPACE "stas" +) ; COMMENT ON COLUMN "public"."open_api"."name" IS '接口名称'; COMMENT ON COLUMN "public"."open_api"."request_method" IS '请求方法'; @@ -11632,7 +8320,7 @@ CREATE TABLE "public"."open_api_auth" ( "update_by" varchar(255) COLLATE "pg_catalog"."default", "update_time" timestamp(6), "system_user_id" varchar(255) COLLATE "pg_catalog"."default" -)TABLESPACE "stas" +) ; COMMENT ON COLUMN "public"."open_api_auth"."name" IS '授权名称'; COMMENT ON COLUMN "public"."open_api_auth"."ak" IS 'AK'; @@ -11660,7 +8348,7 @@ CREATE TABLE "public"."open_api_log" ( "call_time" timestamp(6), "used_time" int8, "response_time" timestamp(6) -)TABLESPACE "stas" +) ; COMMENT ON COLUMN "public"."open_api_log"."api_id" IS '接口ID'; COMMENT ON COLUMN "public"."open_api_log"."call_auth_id" IS '调用ID'; @@ -11712,7 +8400,7 @@ CREATE TABLE "public"."open_api_permission" ( "create_time" timestamp(6), "update_by" varchar(255) COLLATE "pg_catalog"."default", "update_time" timestamp(6) -)TABLESPACE "stas" +) ; COMMENT ON COLUMN "public"."open_api_permission"."api_id" IS '接口ID'; COMMENT ON COLUMN "public"."open_api_permission"."api_auth_id" IS '认证ID'; @@ -11738,7 +8426,7 @@ CREATE TABLE "public"."oss_file" ( "create_time" timestamp(6), "update_by" varchar(32) COLLATE "pg_catalog"."default", "update_time" timestamp(6) -)TABLESPACE "stas" +) ; COMMENT ON COLUMN "public"."oss_file"."id" IS '主键id'; COMMENT ON COLUMN "public"."oss_file"."file_name" IS '文件名称'; @@ -11766,7 +8454,7 @@ CREATE TABLE "public"."qrtz_blob_triggers" ( "trigger_name" varchar(200) COLLATE "pg_catalog"."default" NOT NULL, "trigger_group" varchar(200) COLLATE "pg_catalog"."default" NOT NULL, "blob_data" bytea -)TABLESPACE "stas" +) ; -- ---------------------------- @@ -11781,7 +8469,7 @@ CREATE TABLE "public"."qrtz_calendars" ( "sched_name" varchar(120) COLLATE "pg_catalog"."default" NOT NULL, "calendar_name" varchar(200) COLLATE "pg_catalog"."default" NOT NULL, "calendar" bytea NOT NULL -)TABLESPACE "stas" +) ; -- ---------------------------- @@ -11798,7 +8486,7 @@ CREATE TABLE "public"."qrtz_cron_triggers" ( "trigger_group" varchar(200) COLLATE "pg_catalog"."default" NOT NULL, "cron_expression" varchar(200) COLLATE "pg_catalog"."default" NOT NULL, "time_zone_id" varchar(80) COLLATE "pg_catalog"."default" -)TABLESPACE "stas" +) ; -- ---------------------------- @@ -11823,7 +8511,7 @@ CREATE TABLE "public"."qrtz_fired_triggers" ( "job_group" varchar(200) COLLATE "pg_catalog"."default", "is_nonconcurrent" varchar(1) COLLATE "pg_catalog"."default", "requests_recovery" varchar(1) COLLATE "pg_catalog"."default" -)TABLESPACE "stas" +) ; -- ---------------------------- @@ -11845,7 +8533,7 @@ CREATE TABLE "public"."qrtz_job_details" ( "is_update_data" varchar(1) COLLATE "pg_catalog"."default" NOT NULL, "requests_recovery" varchar(1) COLLATE "pg_catalog"."default" NOT NULL, "job_data" bytea -)TABLESPACE "stas" +) ; -- ---------------------------- @@ -11859,7 +8547,7 @@ DROP TABLE IF EXISTS "public"."qrtz_locks"; CREATE TABLE "public"."qrtz_locks" ( "sched_name" varchar(120) COLLATE "pg_catalog"."default" NOT NULL, "lock_name" varchar(40) COLLATE "pg_catalog"."default" NOT NULL -)TABLESPACE "stas" +) ; -- ---------------------------- @@ -11875,7 +8563,7 @@ DROP TABLE IF EXISTS "public"."qrtz_paused_trigger_grps"; CREATE TABLE "public"."qrtz_paused_trigger_grps" ( "sched_name" varchar(120) COLLATE "pg_catalog"."default" NOT NULL, "trigger_group" varchar(200) COLLATE "pg_catalog"."default" NOT NULL -)TABLESPACE "stas" +) ; -- ---------------------------- @@ -11891,7 +8579,7 @@ CREATE TABLE "public"."qrtz_scheduler_state" ( "instance_name" varchar(200) COLLATE "pg_catalog"."default" NOT NULL, "last_checkin_time" int8 NOT NULL, "checkin_interval" int8 NOT NULL -)TABLESPACE "stas" +) ; -- ---------------------------- @@ -11910,7 +8598,7 @@ CREATE TABLE "public"."qrtz_simple_triggers" ( "repeat_count" int8 NOT NULL, "repeat_interval" int8 NOT NULL, "times_triggered" int8 NOT NULL -)TABLESPACE "stas" +) ; -- ---------------------------- @@ -11936,7 +8624,7 @@ CREATE TABLE "public"."qrtz_simprop_triggers" ( "dec_prop_2" numeric(13,4), "bool_prop_1" varchar(1) COLLATE "pg_catalog"."default", "bool_prop_2" varchar(1) COLLATE "pg_catalog"."default" -)TABLESPACE "stas" +) ; -- ---------------------------- @@ -11964,7 +8652,7 @@ CREATE TABLE "public"."qrtz_triggers" ( "calendar_name" varchar(200) COLLATE "pg_catalog"."default", "misfire_instr" int2, "job_data" bytea -)TABLESPACE "stas" +) ; -- ---------------------------- @@ -11986,7 +8674,7 @@ CREATE TABLE "public"."rep_demo_dxtj" ( "laddress" varchar(125) COLLATE "pg_catalog"."default", "jperson" varchar(32) COLLATE "pg_catalog"."default", "sex" varchar(32) COLLATE "pg_catalog"."default" -)TABLESPACE "stas" +) ; COMMENT ON COLUMN "public"."rep_demo_dxtj"."id" IS '主键'; COMMENT ON COLUMN "public"."rep_demo_dxtj"."name" IS '姓名'; @@ -12064,7 +8752,7 @@ CREATE TABLE "public"."rep_demo_employee" ( "update_by" varchar(32) COLLATE "pg_catalog"."default", "update_time" timestamp(6), "del_flag" int2 -)TABLESPACE "stas" +) ; COMMENT ON COLUMN "public"."rep_demo_employee"."id" IS '主键'; COMMENT ON COLUMN "public"."rep_demo_employee"."num" IS '编号'; @@ -12119,7 +8807,7 @@ CREATE TABLE "public"."rep_demo_gongsi" ( "didian" varchar(255) COLLATE "pg_catalog"."default" NOT NULL, "zhaiyao" varchar(255) COLLATE "pg_catalog"."default" NOT NULL, "num" varchar(255) COLLATE "pg_catalog"."default" NOT NULL -)TABLESPACE "stas" +) ; COMMENT ON COLUMN "public"."rep_demo_gongsi"."gname" IS '货品名称'; COMMENT ON COLUMN "public"."rep_demo_gongsi"."gdata" IS '返利'; @@ -12146,7 +8834,7 @@ CREATE TABLE "public"."rep_demo_jianpiao" ( "jpnum" varchar(125) COLLATE "pg_catalog"."default" NOT NULL, "shihelv" varchar(125) COLLATE "pg_catalog"."default" NOT NULL, "s_id" int4 NOT NULL -)TABLESPACE "stas" +) ; -- ---------------------------- @@ -12253,7 +8941,7 @@ CREATE TABLE "public"."rep_demo_order_main" ( "order_date" timestamp(6), "descc" varchar(100) COLLATE "pg_catalog"."default", "xiala" varchar(32) COLLATE "pg_catalog"."default" -)TABLESPACE "stas" +) ; COMMENT ON COLUMN "public"."rep_demo_order_main"."id" IS '主键'; COMMENT ON COLUMN "public"."rep_demo_order_main"."create_by" IS '创建人'; @@ -12291,7 +8979,7 @@ CREATE TABLE "public"."rep_demo_order_product" ( "descc" varchar(32) COLLATE "pg_catalog"."default", "order_fk_id" varchar(32) COLLATE "pg_catalog"."default" NOT NULL, "pro_type" varchar(32) COLLATE "pg_catalog"."default" -)TABLESPACE "stas" +) ; COMMENT ON COLUMN "public"."rep_demo_order_product"."id" IS '主键'; COMMENT ON COLUMN "public"."rep_demo_order_product"."create_by" IS '创建人'; @@ -12346,6 +9034,59 @@ INSERT INTO "public"."rep_demo_order_product" VALUES ('402831816a38e7fd016a38e7f INSERT INTO "public"."rep_demo_order_product" VALUES ('402831816a38e7fd016a38e7fdf10002', 'admin', '2019-04-20 12:01:29', NULL, NULL, '显示器', 300, 1, NULL, '402831816a38e7fd016a38e7fddf0000', NULL); INSERT INTO "public"."rep_demo_order_product" VALUES ('4028810c6b40244b016b406884080005', 'admin', '2020-02-24 02:05:38', NULL, NULL, '键盘', NULL, 33, '', '402831816a38e7fd016a38e825c90003', ''); +-- ---------------------------- +-- Table structure for stas_weather_task +-- ---------------------------- +CREATE TABLE "public"."stas_weather_task" ( + "id" varchar(32) NOT NULL, + "task_name" varchar(60) NOT NULL, + "task_status" int2 NOT NULL, + "time_consuming" numeric(6,2) DEFAULT 0, + "prediction_model" int2 NOT NULL, + "start_date" date NOT NULL, + "start_time" int2 NOT NULL, + "lead_time" int2 NOT NULL, + "data_sources" int2 NOT NULL, + "input_file" varchar(200) , + "create_by" varchar(32) NOT NULL, + "create_time" timestamp(6) NOT NULL, + "update_by" varchar(32) , + "update_time" timestamp(6), + PRIMARY KEY ("id") +) +; +COMMENT ON COLUMN "public"."stas_weather_task"."id" IS '主键'; +COMMENT ON COLUMN "public"."stas_weather_task"."task_name" IS '任务名称'; +COMMENT ON COLUMN "public"."stas_weather_task"."task_status" IS '任务状态(0-未开始,1-运行中,2-已完成)'; +COMMENT ON COLUMN "public"."stas_weather_task"."time_consuming" IS '耗时(小时),默认0'; +COMMENT ON COLUMN "public"."stas_weather_task"."prediction_model" IS '预测模型(1-盘古、2-Graphcast)'; +COMMENT ON COLUMN "public"."stas_weather_task"."start_date" IS '开始预测日期'; +COMMENT ON COLUMN "public"."stas_weather_task"."start_time" IS '开始预测时间'; +COMMENT ON COLUMN "public"."stas_weather_task"."lead_time" IS '预测时长(小时)'; +COMMENT ON COLUMN "public"."stas_weather_task"."data_sources" IS '数据来源(1-CDS,2-本地文件)'; +COMMENT ON COLUMN "public"."stas_weather_task"."input_file" IS '如果data_sources为2,则存储本地文件路径'; +COMMENT ON COLUMN "public"."stas_weather_task"."create_by" IS '创建人'; +COMMENT ON COLUMN "public"."stas_weather_task"."create_time" IS '创建时间'; +COMMENT ON COLUMN "public"."stas_weather_task"."update_by" IS '修改人'; +COMMENT ON COLUMN "public"."stas_weather_task"."update_time" IS '修改时间'; + +-- ---------------------------- +-- Records of stas_weather_task +-- ---------------------------- + +CREATE TABLE "public"."stas_weather_task_log" ( + "id" varchar(32) NOT NULL, + "task_id" varchar(32) NOT NULL, + "log_content" text, + "create_time" timestamp(6) NOT NULL, + PRIMARY KEY ("id") +) +; +COMMENT ON COLUMN "public"."stas_weather_task_log"."id" IS '主键'; +COMMENT ON COLUMN "public"."stas_weather_task_log"."task_id" IS '任务主键'; +COMMENT ON COLUMN "public"."stas_weather_task_log"."log_content" IS '日志内容'; +COMMENT ON COLUMN "public"."stas_weather_task_log"."create_time" IS '创建时间'; + -- ---------------------------- -- Table structure for sys_announcement -- ---------------------------- @@ -12376,7 +9117,7 @@ CREATE TABLE "public"."sys_announcement" ( "msg_abstract" text COLLATE "pg_catalog"."default", "dt_task_id" varchar(100) COLLATE "pg_catalog"."default", "tenant_id" int4 -)TABLESPACE "stas" +) ; COMMENT ON COLUMN "public"."sys_announcement"."titile" IS '标题'; COMMENT ON COLUMN "public"."sys_announcement"."msg_content" IS '内容'; @@ -12423,7 +9164,7 @@ CREATE TABLE "public"."sys_announcement_send" ( "update_by" varchar(32) COLLATE "pg_catalog"."default", "update_time" timestamp(6), "star_flag" varchar(10) COLLATE "pg_catalog"."default" -)TABLESPACE "stas" +) ; COMMENT ON COLUMN "public"."sys_announcement_send"."annt_id" IS '通告ID'; COMMENT ON COLUMN "public"."sys_announcement_send"."user_id" IS '用户id'; @@ -12456,7 +9197,7 @@ CREATE TABLE "public"."sys_category" ( "sys_org_code" varchar(64) COLLATE "pg_catalog"."default", "has_child" varchar(3) COLLATE "pg_catalog"."default", "tenant_id" int4 -)TABLESPACE "stas" +) ; COMMENT ON COLUMN "public"."sys_category"."pid" IS '父级节点'; COMMENT ON COLUMN "public"."sys_category"."name" IS '类型名称'; @@ -12516,7 +9257,7 @@ CREATE TABLE "public"."sys_check_rule" ( "update_time" timestamp(6), "create_by" varchar(32) COLLATE "pg_catalog"."default", "create_time" timestamp(6) -)TABLESPACE "stas" +) ; COMMENT ON COLUMN "public"."sys_check_rule"."id" IS '主键id'; COMMENT ON COLUMN "public"."sys_check_rule"."rule_name" IS '规则名称'; @@ -12550,7 +9291,7 @@ CREATE TABLE "public"."sys_comment" ( "create_time" timestamp(6), "update_by" varchar(50) COLLATE "pg_catalog"."default", "update_time" timestamp(6) -)TABLESPACE "stas" +) ; COMMENT ON COLUMN "public"."sys_comment"."table_name" IS '表名'; COMMENT ON COLUMN "public"."sys_comment"."table_data_id" IS '数据id'; @@ -12605,7 +9346,7 @@ CREATE TABLE "public"."sys_data_log" ( "data_content" text COLLATE "pg_catalog"."default", "data_version" int4, "type" varchar(20) COLLATE "pg_catalog"."default" -)TABLESPACE "stas" +) ; COMMENT ON COLUMN "public"."sys_data_log"."id" IS 'id'; COMMENT ON COLUMN "public"."sys_data_log"."create_by" IS '创建人登录名称'; @@ -12644,7 +9385,7 @@ CREATE TABLE "public"."sys_data_source" ( "update_time" timestamp(6), "sys_org_code" varchar(64) COLLATE "pg_catalog"."default", "tenant_id" int4 -)TABLESPACE "stas" +) ; COMMENT ON COLUMN "public"."sys_data_source"."code" IS '数据源编码'; COMMENT ON COLUMN "public"."sys_data_source"."name" IS '数据源名称'; @@ -12696,7 +9437,7 @@ CREATE TABLE "public"."sys_depart" ( "update_time" timestamp(6), "tenant_id" int4, "iz_leaf" int2 -)TABLESPACE "stas" +) ; COMMENT ON COLUMN "public"."sys_depart"."id" IS 'ID'; COMMENT ON COLUMN "public"."sys_depart"."parent_id" IS '父机构ID'; @@ -12746,7 +9487,7 @@ CREATE TABLE "public"."sys_depart_permission" ( "depart_id" varchar(32) COLLATE "pg_catalog"."default", "permission_id" varchar(32) COLLATE "pg_catalog"."default", "data_rule_ids" varchar(1000) COLLATE "pg_catalog"."default" -)TABLESPACE "stas" +) ; COMMENT ON COLUMN "public"."sys_depart_permission"."depart_id" IS '部门id'; COMMENT ON COLUMN "public"."sys_depart_permission"."permission_id" IS '权限id'; @@ -12777,7 +9518,7 @@ CREATE TABLE "public"."sys_depart_role" ( "create_time" timestamp(6), "update_by" varchar(32) COLLATE "pg_catalog"."default", "update_time" timestamp(6) -)TABLESPACE "stas" +) ; COMMENT ON COLUMN "public"."sys_depart_role"."depart_id" IS '部门id'; COMMENT ON COLUMN "public"."sys_depart_role"."role_name" IS '部门角色名称'; @@ -12806,7 +9547,7 @@ CREATE TABLE "public"."sys_depart_role_permission" ( "data_rule_ids" varchar(1000) COLLATE "pg_catalog"."default", "operate_date" timestamp(6), "operate_ip" varchar(20) COLLATE "pg_catalog"."default" -)TABLESPACE "stas" +) ; COMMENT ON COLUMN "public"."sys_depart_role_permission"."depart_id" IS '部门id'; COMMENT ON COLUMN "public"."sys_depart_role_permission"."role_id" IS '角色id'; @@ -12830,7 +9571,7 @@ CREATE TABLE "public"."sys_depart_role_user" ( "id" varchar(32) COLLATE "pg_catalog"."default" NOT NULL, "user_id" varchar(32) COLLATE "pg_catalog"."default", "drole_id" varchar(32) COLLATE "pg_catalog"."default" -)TABLESPACE "stas" +) ; COMMENT ON COLUMN "public"."sys_depart_role_user"."id" IS '主键id'; COMMENT ON COLUMN "public"."sys_depart_role_user"."user_id" IS '用户id'; @@ -12858,7 +9599,7 @@ CREATE TABLE "public"."sys_dict" ( "type" int8, "tenant_id" int4, "low_app_id" varchar(32) COLLATE "pg_catalog"."default" -)TABLESPACE "stas" +) ; COMMENT ON COLUMN "public"."sys_dict"."dict_name" IS '字典名称'; COMMENT ON COLUMN "public"."sys_dict"."dict_code" IS '字典编码'; @@ -12946,7 +9687,7 @@ CREATE TABLE "public"."sys_dict_item" ( "create_time" timestamp(6), "update_by" varchar(32) COLLATE "pg_catalog"."default", "update_time" timestamp(6) -)TABLESPACE "stas" +) ; COMMENT ON COLUMN "public"."sys_dict_item"."dict_id" IS '字典id'; COMMENT ON COLUMN "public"."sys_dict_item"."item_text" IS '字典项文本'; @@ -13181,7 +9922,7 @@ CREATE TABLE "public"."sys_files" ( "create_time" timestamp(6), "update_by" varchar(32) COLLATE "pg_catalog"."default", "update_time" timestamp(6) -)TABLESPACE "stas" +) ; COMMENT ON COLUMN "public"."sys_files"."id" IS '主键id'; COMMENT ON COLUMN "public"."sys_files"."file_name" IS '文件名称'; @@ -13228,7 +9969,7 @@ CREATE TABLE "public"."sys_fill_rule" ( "update_time" timestamp(6), "create_by" varchar(32) COLLATE "pg_catalog"."default", "create_time" timestamp(6) -)TABLESPACE "stas" +) ; COMMENT ON COLUMN "public"."sys_fill_rule"."id" IS '主键ID'; COMMENT ON COLUMN "public"."sys_fill_rule"."rule_name" IS '规则名称'; @@ -13259,7 +10000,7 @@ CREATE TABLE "public"."sys_form_file" ( "file_type" varchar(20) COLLATE "pg_catalog"."default", "create_by" varchar(32) COLLATE "pg_catalog"."default", "create_time" timestamp(6) -)TABLESPACE "stas" +) ; COMMENT ON COLUMN "public"."sys_form_file"."table_name" IS '表名'; COMMENT ON COLUMN "public"."sys_form_file"."table_data_id" IS '数据id'; @@ -13300,7 +10041,7 @@ CREATE TABLE "public"."sys_gateway_route" ( "update_time" timestamp(6), "sys_org_code" varchar(64) COLLATE "pg_catalog"."default", "del_flag" int4 -)TABLESPACE "stas" +) ; COMMENT ON COLUMN "public"."sys_gateway_route"."router_id" IS '路由ID'; COMMENT ON COLUMN "public"."sys_gateway_route"."name" IS '服务名'; @@ -13351,7 +10092,7 @@ CREATE TABLE "public"."sys_log" ( "update_time" timestamp(6), "tenant_id" int4, "client_type" varchar(5) COLLATE "pg_catalog"."default" -)TABLESPACE "stas" +) ; COMMENT ON COLUMN "public"."sys_log"."log_type" IS '日志类型(1登录日志,2操作日志, 3.租户操作日志)'; COMMENT ON COLUMN "public"."sys_log"."log_content" IS '日志内容'; @@ -13375,503 +10116,6 @@ COMMENT ON TABLE "public"."sys_log" IS '系统日志表'; -- ---------------------------- -- Records of sys_log -- ---------------------------- -INSERT INTO "public"."sys_log" VALUES ('1939497644808986625', 1, '用户名: admin,登录成功!', NULL, 'admin', '管理员', '0:0:0:0:0:0:0:1', NULL, NULL, NULL, NULL, NULL, NULL, '2025-06-30 09:34:07', NULL, NULL, NULL, 'pc'); -INSERT INTO "public"."sys_log" VALUES ('1939497738702675969', 2, 'online表单加载,表名:test_demo,操作成功', 1, 'admin', '管理员', '0:0:0:0:0:0:0:1', 'org.jeecg.modules.online.cgform.c.a.c()', NULL, '', NULL, 76, NULL, '2025-06-30 09:34:30', NULL, NULL, NULL, NULL); -INSERT INTO "public"."sys_log" VALUES ('1939497738702675970', 2, 'online表单加载,表名:test_demo,操作成功', 1, 'admin', '管理员', '0:0:0:0:0:0:0:1', 'org.jeecg.modules.online.cgform.c.a.c()', NULL, '', NULL, 79, NULL, '2025-06-30 09:34:30', NULL, NULL, NULL, NULL); -INSERT INTO "public"."sys_log" VALUES ('1939497738971111425', 2, 'online列表加载,表名:test_demo,操作成功', 1, 'admin', '管理员', '0:0:0:0:0:0:0:1', 'org.jeecg.modules.online.cgform.c.a.a()', NULL, '', NULL, 172, NULL, '2025-06-30 09:34:30', NULL, NULL, NULL, NULL); -INSERT INTO "public"."sys_log" VALUES ('1939497753202384899', 2, 'online表单加载,表名:test_demo,操作成功', 1, 'admin', '管理员', '0:0:0:0:0:0:0:1', 'org.jeecg.modules.online.cgform.c.a.c()', NULL, '', NULL, 9, NULL, '2025-06-30 09:34:33', NULL, NULL, NULL, NULL); -INSERT INTO "public"."sys_log" VALUES ('1939497753202384898', 2, 'online表单加载,表名:test_demo,操作成功', 1, 'admin', '管理员', '0:0:0:0:0:0:0:1', 'org.jeecg.modules.online.cgform.c.a.c()', NULL, '', NULL, 13, NULL, '2025-06-30 09:34:33', NULL, NULL, NULL, NULL); -INSERT INTO "public"."sys_log" VALUES ('1939497753332408322', 2, 'online列表加载,表名:test_demo,操作成功', 1, 'admin', '管理员', '0:0:0:0:0:0:0:1', 'org.jeecg.modules.online.cgform.c.a.a()', NULL, '', NULL, 46, NULL, '2025-06-30 09:34:33', NULL, NULL, NULL, NULL); -INSERT INTO "public"."sys_log" VALUES ('1939860490830999553', 2, '编码校验规则-分页列表查询', 1, 'admin', '管理员', '0:0:0:0:0:0:0:1', 'org.jeecg.modules.system.controller.SysCheckRuleController.queryPageList()', NULL, ' sysCheckRule: SysCheckRule(id=null, ruleName=null, ruleCode=null, ruleJson=null, ruleDescription=null, updateBy=null, updateTime=null, createBy=null, createTime=null) pageNo: 1 pageSize: 10 request: org.apache.shiro.web.servlet.ShiroHttpServletRequest@7e6d0283', NULL, 109, NULL, '2025-07-01 09:35:57', NULL, NULL, NULL, NULL); -INSERT INTO "public"."sys_log" VALUES ('1944738930561699842', 1, '用户名: 管理员,退出成功!', NULL, 'admin', '管理员', '127.0.0.1', NULL, NULL, NULL, NULL, NULL, NULL, '2025-07-14 20:41:07.207', NULL, NULL, NULL, 'pc'); -INSERT INTO "public"."sys_log" VALUES ('1944738937889148929', 1, '用户名: admin,登录成功!', NULL, 'admin', '管理员', '127.0.0.1', NULL, NULL, NULL, NULL, NULL, NULL, '2025-07-14 20:41:08.953', NULL, NULL, NULL, 'pc'); -INSERT INTO "public"."sys_log" VALUES ('1944739346485661698', 2, '职务表-分页列表查询', 1, 'admin', '管理员', '127.0.0.1', 'org.jeecg.modules.system.controller.SysPositionController.queryPageList()', NULL, ' sysPosition: SysPosition(id=1185040064792571906, code=null, name=null, postRank=null, companyId=null, createBy=null, createTime=null, updateBy=null, updateTime=null, sysOrgCode=null, tenantId=null) pageNo: 1 pageSize: 1 req: org.springframework.web.servlet.resource.ResourceUrlEncodingFilter$ResourceUrlEncodingRequestWrapper@49e29971', NULL, 18, NULL, '2025-07-14 20:42:46.369', NULL, NULL, NULL, NULL); -INSERT INTO "public"."sys_log" VALUES ('1944739351602712578', 2, '编辑用户,username: ceshi', 2, 'admin', '管理员', '127.0.0.1', NULL, NULL, NULL, NULL, NULL, NULL, '2025-07-14 20:42:47.591', NULL, NULL, NULL, 'pc'); -INSERT INTO "public"."sys_log" VALUES ('1944739473921200130', 2, '编辑用户,username: jeecg', 2, 'admin', '管理员', '127.0.0.1', NULL, NULL, NULL, NULL, NULL, NULL, '2025-07-14 20:43:16.753', NULL, NULL, NULL, 'pc'); -INSERT INTO "public"."sys_log" VALUES ('1944739491327561729', 2, '修改角色ID: 1501570619841810433 的权限配置,操作人: admin', 2, 'admin', '管理员', '127.0.0.1', NULL, NULL, NULL, NULL, NULL, NULL, '2025-07-14 20:43:20.903', NULL, NULL, NULL, 'pc'); -INSERT INTO "public"."sys_log" VALUES ('1944739637062848514', 2, '职务表-分页列表查询', 1, 'admin', '管理员', '127.0.0.1', 'org.jeecg.modules.system.controller.SysPositionController.queryPageList()', NULL, ' sysPosition: SysPosition(id=null, code=null, name=null, postRank=null, companyId=null, createBy=null, createTime=null, updateBy=null, updateTime=null, sysOrgCode=null, tenantId=null) pageNo: 1 pageSize: 10 req: org.springframework.web.servlet.resource.ResourceUrlEncodingFilter$ResourceUrlEncodingRequestWrapper@1a29889f', NULL, 12, NULL, '2025-07-14 20:43:55.648', NULL, NULL, NULL, NULL); -INSERT INTO "public"."sys_log" VALUES ('1944739640971939841', 4, 'org.springframework.web.servlet.resource.NoResourceFoundException:No static resource sys/tenant/list.', NULL, 'admin', '管理员', '127.0.0.1', '_t=1752497036552&pageNo=1&column=createTime&pageSize=10&order=desc', '/jeecg-boot/sys/tenant/list', 'org.springframework.web.servlet.resource.NoResourceFoundException: No static resource sys/tenant/list. - at org.springframework.web.servlet.resource.ResourceHttpRequestHandler.handleRequest(ResourceHttpRequestHandler.java:585) - at org.springframework.web.servlet.mvc.HttpRequestHandlerAdapter.handle(HttpRequestHandlerAdapter.java:52) - at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1089) - at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:979) - at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1014) - at org.springframework.web.servlet.FrameworkServlet.doGet(FrameworkServlet.java:903) - at jakarta.servlet.http.HttpServlet.service(HttpServlet.java:527) - at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:885) - at jakarta.servlet.http.HttpServlet.service(HttpServlet.java:614) - at io.undertow.servlet.handlers.ServletHandler.handleRequest(ServletHandler.java:74) - at io.undertow.servlet.handlers.FilterHandler$FilterChainImpl.doFilter(FilterHandler.java:129) - at io.undertow.websockets.jsr.JsrWebSocketFilter.doFilter(JsrWebSocketFilter.java:172) - at io.undertow.servlet.core.ManagedFilter.doFilter(ManagedFilter.java:67) - at io.undertow.servlet.handlers.FilterHandler$FilterChainImpl.doFilter(FilterHandler.java:131) - at org.springframework.web.filter.CorsFilter.doFilterInternal(CorsFilter.java:91) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116) - at io.undertow.servlet.core.ManagedFilter.doFilter(ManagedFilter.java:67) - at io.undertow.servlet.handlers.FilterHandler$FilterChainImpl.doFilter(FilterHandler.java:131) - at org.jeecg.config.security.RedisTokenValidationFilter.doFilterInternal(RedisTokenValidationFilter.java:47) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116) - at io.undertow.servlet.core.ManagedFilter.doFilter(ManagedFilter.java:67) - at io.undertow.servlet.handlers.FilterHandler$FilterChainImpl.doFilter(FilterHandler.java:131) - at org.springframework.web.servlet.resource.ResourceUrlEncodingFilter.doFilter(ResourceUrlEncodingFilter.java:66) - at io.undertow.servlet.core.ManagedFilter.doFilter(ManagedFilter.java:67) - at io.undertow.servlet.handlers.FilterHandler$FilterChainImpl.doFilter(FilterHandler.java:131) - at com.alibaba.druid.support.jakarta.WebStatFilter.doFilter(WebStatFilter.java:113) - at io.undertow.servlet.core.ManagedFilter.doFilter(ManagedFilter.java:67) - at io.undertow.servlet.handlers.FilterHandler$FilterChainImpl.doFilter(FilterHandler.java:131) - at org.springframework.boot.actuate.web.exchanges.servlet.HttpExchangesFilter.doFilterInternal(HttpExchangesFilter.java:89) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116) - at io.undertow.servlet.core.ManagedFilter.doFilter(ManagedFilter.java:67) - at io.undertow.servlet.handlers.FilterHandler$FilterChainImpl.doFilter(FilterHandler.java:131) - at org.springframework.web.filter.CompositeFilter$VirtualFilterChain.doFilter(CompositeFilter.java:108) - at org.springframework.security.web.FilterChainProxy.lambda$doFilterInternal$3(FilterChainProxy.java:231) - at org.springframework.security.web.ObservationFilterChainDecorator$FilterObservation$SimpleFilterObservation.lambda$wrap$1(ObservationFilterChainDecorator.java:479) - at org.springframework.security.web.ObservationFilterChainDecorator$AroundFilterObservation$SimpleAroundFilterObservation.lambda$wrap$1(ObservationFilterChainDecorator.java:340) - at org.springframework.security.web.ObservationFilterChainDecorator.lambda$wrapSecured$0(ObservationFilterChainDecorator.java:82) - at org.springframework.security.web.ObservationFilterChainDecorator$VirtualFilterChain.doFilter(ObservationFilterChainDecorator.java:128) - at org.springframework.security.web.access.intercept.AuthorizationFilter.doFilter(AuthorizationFilter.java:101) - at org.springframework.security.web.ObservationFilterChainDecorator$ObservationFilter.wrapFilter(ObservationFilterChainDecorator.java:240) - at org.springframework.security.web.ObservationFilterChainDecorator$ObservationFilter.doFilter(ObservationFilterChainDecorator.java:227) - at org.springframework.security.web.ObservationFilterChainDecorator$VirtualFilterChain.doFilter(ObservationFilterChainDecorator.java:137) - at org.springframework.security.web.access.ExceptionTranslationFilter.doFilter(ExceptionTranslationFilter.java:126) - at org.springframework.security.web.access.ExceptionTranslationFilter.doFilter(ExceptionTranslationFilter.java:120) - at org.springframework.security.web.ObservationFilterChainDecorator$ObservationFilter.wrapFilter(ObservationFilterChainDecorator.java:240) - at org.springframework.security.web.ObservationFilterChainDecorator$ObservationFilter.doFilter(ObservationFilterChainDecorator.java:227) - at org.springframework.security.web.ObservationFilterChainDecorator$VirtualFilterChain.doFilter(ObservationFilterChainDecorator.java:137) - at org.springframework.security.web.authentication.AnonymousAuthenticationFilter.doFilter(AnonymousAuthenticationFilter.java:100) - at org.springframework.security.web.ObservationFilterChainDecorator$ObservationFilter.wrapFilter(ObservationFilterChainDecorator.java:240) - at org.springframework.security.web.ObservationFilterChainDecorator$ObservationFilter.doFilter(ObservationFilterChainDecorator.java:227) - at org.springframework.security.web.ObservationFilterChainDecorator$VirtualFilterChain.doFilter(ObservationFilterChainDecorator.java:137) - at org.springframework.security.web.servletapi.SecurityContextHolderAwareRequestFilter.doFilter(SecurityContextHolderAwareRequestFilter.java:179) - at org.springframework.security.web.ObservationFilterChainDecorator$ObservationFilter.wrapFilter(ObservationFilterChainDecorator.java:240) - at org.springframework.security.web.ObservationFilterChainDecorator$ObservationFilter.doFilter(ObservationFilterChainDecorator.java:227) - at org.springframework.security.web.ObservationFilterChainDecorator$VirtualFilterChain.doFilter(ObservationFilterChainDecorator.java:137) - at org.springframework.security.web.savedrequest.RequestCacheAwareFilter.doFilter(RequestCacheAwareFilter.java:63) - at org.springframework.security.web.ObservationFilterChainDecorator$ObservationFilter.wrapFilter(ObservationFilterChainDecorator.java:240) - at org.springframework.security.web.ObservationFilterChainDecorator$ObservationFilter.doFilter(ObservationFilterChainDecorator.java:227) - at org.springframework.security.web.ObservationFilterChainDecorator$VirtualFilterChain.doFilter(ObservationFilterChainDecorator.java:137) - at org.springframework.security.oauth2.server.resource.web.authentication.BearerTokenAuthenticationFilter.doFilterInternal(BearerTokenAuthenticationFilter.java:145) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116) - at org.springframework.security.web.ObservationFilterChainDecorator$ObservationFilter.wrapFilter(ObservationFilterChainDecorator.java:240) - at org.springframework.security.web.ObservationFilterChainDecorator$ObservationFilter.doFilter(ObservationFilterChainDecorator.java:227) - at org.springframework.security.web.ObservationFilterChainDecorator$VirtualFilterChain.doFilter(ObservationFilterChainDecorator.java:137) - at org.springframework.security.web.authentication.logout.LogoutFilter.doFilter(LogoutFilter.java:107) - at org.springframework.security.web.authentication.logout.LogoutFilter.doFilter(LogoutFilter.java:93) - at org.springframework.security.web.ObservationFilterChainDecorator$ObservationFilter.wrapFilter(ObservationFilterChainDecorator.java:240) - at org.springframework.security.web.ObservationFilterChainDecorator$ObservationFilter.doFilter(ObservationFilterChainDecorator.java:227) - at org.springframework.security.web.ObservationFilterChainDecorator$VirtualFilterChain.doFilter(ObservationFilterChainDecorator.java:137) - at org.springframework.web.filter.CorsFilter.doFilterInternal(CorsFilter.java:91) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116) - at org.springframework.security.web.ObservationFilterChainDecorator$ObservationFilter.wrapFilter(ObservationFilterChainDecorator.java:240) - at org.springframework.security.web.ObservationFilterChainDecorator$ObservationFilter.doFilter(ObservationFilterChainDecorator.java:227) - at org.springframework.security.web.ObservationFilterChainDecorator$VirtualFilterChain.doFilter(ObservationFilterChainDecorator.java:137) - at org.springframework.security.web.header.HeaderWriterFilter.doHeadersAfter(HeaderWriterFilter.java:90) - at org.springframework.security.web.header.HeaderWriterFilter.doFilterInternal(HeaderWriterFilter.java:75) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116) - at org.springframework.security.web.ObservationFilterChainDecorator$ObservationFilter.wrapFilter(ObservationFilterChainDecorator.java:240) - at org.springframework.security.web.ObservationFilterChainDecorator$ObservationFilter.doFilter(ObservationFilterChainDecorator.java:227) - at org.springframework.security.web.ObservationFilterChainDecorator$VirtualFilterChain.doFilter(ObservationFilterChainDecorator.java:137) - at org.springframework.security.web.context.SecurityContextHolderFilter.doFilter(SecurityContextHolderFilter.java:82) - at org.springframework.security.web.context.SecurityContextHolderFilter.doFilter(SecurityContextHolderFilter.java:69) - at org.springframework.security.web.ObservationFilterChainDecorator$ObservationFilter.wrapFilter(ObservationFilterChainDecorator.java:240) - at org.springframework.security.web.ObservationFilterChainDecorator$ObservationFilter.doFilter(ObservationFilterChainDecorator.java:227) - at org.springframework.security.web.ObservationFilterChainDecorator$VirtualFilterChain.doFilter(ObservationFilterChainDecorator.java:137) - at org.springframework.security.web.context.request.async.WebAsyncManagerIntegrationFilter.doFilterInternal(WebAsyncManagerIntegrationFilter.java:62) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116) - at org.springframework.security.web.ObservationFilterChainDecorator$ObservationFilter.wrapFilter(ObservationFilterChainDecorator.java:240) - at org.springframework.security.web.ObservationFilterChainDecorator$ObservationFilter.doFilter(ObservationFilterChainDecorator.java:227) - at org.springframework.security.web.ObservationFilterChainDecorator$VirtualFilterChain.doFilter(ObservationFilterChainDecorator.java:137) - at org.springframework.security.web.session.DisableEncodeUrlFilter.doFilterInternal(DisableEncodeUrlFilter.java:42) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116) - at org.springframework.security.web.ObservationFilterChainDecorator$ObservationFilter.wrapFilter(ObservationFilterChainDecorator.java:240) - at org.springframework.security.web.ObservationFilterChainDecorator$AroundFilterObservation$SimpleAroundFilterObservation.lambda$wrap$0(ObservationFilterChainDecorator.java:323) - at org.springframework.security.web.ObservationFilterChainDecorator$ObservationFilter.doFilter(ObservationFilterChainDecorator.java:224) - at org.springframework.security.web.ObservationFilterChainDecorator$VirtualFilterChain.doFilter(ObservationFilterChainDecorator.java:137) - at org.springframework.security.web.FilterChainProxy.doFilterInternal(FilterChainProxy.java:233) - at org.springframework.security.web.FilterChainProxy.doFilter(FilterChainProxy.java:191) - at org.springframework.web.filter.CompositeFilter$VirtualFilterChain.doFilter(CompositeFilter.java:113) - at org.springframework.web.servlet.handler.HandlerMappingIntrospector.lambda$createCacheFilter$3(HandlerMappingIntrospector.java:243) - at org.springframework.web.filter.CompositeFilter$VirtualFilterChain.doFilter(CompositeFilter.java:113) - at org.springframework.web.filter.CompositeFilter.doFilter(CompositeFilter.java:74) - at org.springframework.security.config.annotation.web.configuration.WebMvcSecurityConfiguration$CompositeFilterChainProxy.doFilter(WebMvcSecurityConfiguration.java:238) - at org.springframework.web.filter.DelegatingFilterProxy.invokeDelegate(DelegatingFilterProxy.java:362) - at org.springframework.web.filter.DelegatingFilterProxy.doFilter(DelegatingFilterProxy.java:278) - at io.undertow.servlet.core.ManagedFilter.doFilter(ManagedFilter.java:67) - at io.undertow.servlet.handlers.FilterHandler$FilterChainImpl.doFilter(FilterHandler.java:131) - at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116) - at io.undertow.servlet.core.ManagedFilter.doFilter(ManagedFilter.java:67) - at io.undertow.servlet.handlers.FilterHandler$FilterChainImpl.doFilter(FilterHandler.java:131) - at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116) - at io.undertow.servlet.core.ManagedFilter.doFilter(ManagedFilter.java:67) - at io.undertow.servlet.handlers.FilterHandler$FilterChainImpl.doFilter(FilterHandler.java:131) - at org.springframework.web.filter.ServerHttpObservationFilter.doFilterInternal(ServerHttpObservationFilter.java:114) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116) - at io.undertow.servlet.core.ManagedFilter.doFilter(ManagedFilter.java:67) - at io.undertow.servlet.handlers.FilterHandler$FilterChainImpl.doFilter(FilterHandler.java:131) - at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116) - at io.undertow.servlet.core.ManagedFilter.doFilter(ManagedFilter.java:67) - at io.undertow.servlet.handlers.FilterHandler$FilterChainImpl.doFilter(FilterHandler.java:131) - at org.jeecg.config.security.CopyTokenFilter.doFilterInternal(CopyTokenFilter.java:41) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116) - at io.undertow.servlet.core.ManagedFilter.doFilter(ManagedFilter.java:67) - at io.undertow.servlet.handlers.FilterHandler$FilterChainImpl.doFilter(FilterHandler.java:131) - at io.undertow.servlet.handlers.FilterHandler.handleRequest(FilterHandler.java:84) - at io.undertow.servlet.handlers.security.ServletSecurityRoleHandler.handleRequest(ServletSecurityRoleHandler.java:62) - at io.undertow.servlet.handlers.ServletChain$1.handleRequest(ServletChain.java:68) - at io.undertow.servlet.handlers.ServletDispatchingHandler.handleRequest(ServletDispatchingHandler.java:36) - at io.undertow.servlet.handlers.RedirectDirHandler.handleRequest(RedirectDirHandler.java:68) - at io.undertow.servlet.handlers.security.SSLInformationAssociationHandler.handleRequest(SSLInformationAssociationHandler.java:117) - at io.undertow.servlet.handlers.security.ServletAuthenticationCallHandler.handleRequest(ServletAuthenticationCallHandler.java:57) - at io.undertow.server.handlers.PredicateHandler.handleRequest(PredicateHandler.java:43) - at io.undertow.security.handlers.AbstractConfidentialityHandler.handleRequest(AbstractConfidentialityHandler.java:46) - at io.undertow.servlet.handlers.security.ServletConfidentialityConstraintHandler.handleRequest(ServletConfidentialityConstraintHandler.java:64) - at io.undertow.security.handlers.AuthenticationMechanismsHandler.handleRequest(AuthenticationMechanismsHandler.java:60) - at io.undertow.servlet.handlers.security.CachedAuthenticatedSessionHandler.handleRequest(CachedAuthenticatedSessionHandler.java:77) - at io.undertow.security.handlers.AbstractSecurityContextAssociationHandler.handleRequest(AbstractSecurityContextAssociationHandler.java:43) - at io.undertow.server.handlers.PredicateHandler.handleRequest(PredicateHandler.java:43) - at io.undertow.servlet.handlers.SendErrorPageHandler.handleRequest(SendErrorPageHandler.java:52) - at io.undertow.server.handlers.PredicateHandler.handleRequest(PredicateHandler.java:43) - at io.undertow.servlet.handlers.ServletInitialHandler.handleFirstRequest(ServletInitialHandler.java:276) - at io.undertow.servlet.handlers.ServletInitialHandler$2.call(ServletInitialHandler.java:135) - at io.undertow.servlet.handlers.ServletInitialHandler$2.call(ServletInitialHandler.java:132) - at io.undertow.servlet.core.ServletRequestContextThreadSetupAction$1.call(ServletRequestContextThreadSetupAction.java:48) - at io.undertow.servlet.core.ContextClassLoaderSetupAction$1.call(ContextClassLoaderSetupAction.java:43) - at io.undertow.servlet.handlers.ServletInitialHandler.dispatchRequest(ServletInitialHandler.java:256) - at io.undertow.servlet.handlers.ServletInitialHandler.handleRequest(ServletInitialHandler.java:176) - at org.jeecg.modules.monitor.actuator.undertow.CustomUndertowMetricsHandler.lambda$wrap$0(CustomUndertowMetricsHandler.java:87) - at io.undertow.server.Connectors.executeRootHandler(Connectors.java:395) - at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:861) - at org.jboss.threads.ContextHandler$1.runWith(ContextHandler.java:18) - at org.jboss.threads.EnhancedQueueExecutor$Task.run(EnhancedQueueExecutor.java:2513) - at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1538) - at org.xnio.XnioWorker$WorkerThreadFactory$1$1.run(XnioWorker.java:1282) - at java.base/java.lang.Thread.run(Thread.java:842) -', NULL, NULL, NULL, '2025-07-14 20:43:56.58', NULL, NULL, NULL, 'pc'); -INSERT INTO "public"."sys_log" VALUES ('1944739814985224195', 4, 'org.springframework.web.servlet.resource.NoResourceFoundException:No static resource sys/thirdApp/getThirdConfigByTenantId.', NULL, 'admin', '管理员', '127.0.0.1', '_t=1752497078053&tenantId=0&thirdType=wechat_enterprise', '/jeecg-boot/sys/thirdApp/getThirdConfigByTenantId', 'org.springframework.web.servlet.resource.NoResourceFoundException: No static resource sys/thirdApp/getThirdConfigByTenantId. - at org.springframework.web.servlet.resource.ResourceHttpRequestHandler.handleRequest(ResourceHttpRequestHandler.java:585) - at org.springframework.web.servlet.mvc.HttpRequestHandlerAdapter.handle(HttpRequestHandlerAdapter.java:52) - at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1089) - at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:979) - at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1014) - at org.springframework.web.servlet.FrameworkServlet.doGet(FrameworkServlet.java:903) - at jakarta.servlet.http.HttpServlet.service(HttpServlet.java:527) - at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:885) - at jakarta.servlet.http.HttpServlet.service(HttpServlet.java:614) - at io.undertow.servlet.handlers.ServletHandler.handleRequest(ServletHandler.java:74) - at io.undertow.servlet.handlers.FilterHandler$FilterChainImpl.doFilter(FilterHandler.java:129) - at io.undertow.websockets.jsr.JsrWebSocketFilter.doFilter(JsrWebSocketFilter.java:172) - at io.undertow.servlet.core.ManagedFilter.doFilter(ManagedFilter.java:67) - at io.undertow.servlet.handlers.FilterHandler$FilterChainImpl.doFilter(FilterHandler.java:131) - at org.springframework.web.filter.CorsFilter.doFilterInternal(CorsFilter.java:91) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116) - at io.undertow.servlet.core.ManagedFilter.doFilter(ManagedFilter.java:67) - at io.undertow.servlet.handlers.FilterHandler$FilterChainImpl.doFilter(FilterHandler.java:131) - at org.jeecg.config.security.RedisTokenValidationFilter.doFilterInternal(RedisTokenValidationFilter.java:47) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116) - at io.undertow.servlet.core.ManagedFilter.doFilter(ManagedFilter.java:67) - at io.undertow.servlet.handlers.FilterHandler$FilterChainImpl.doFilter(FilterHandler.java:131) - at org.springframework.web.servlet.resource.ResourceUrlEncodingFilter.doFilter(ResourceUrlEncodingFilter.java:66) - at io.undertow.servlet.core.ManagedFilter.doFilter(ManagedFilter.java:67) - at io.undertow.servlet.handlers.FilterHandler$FilterChainImpl.doFilter(FilterHandler.java:131) - at com.alibaba.druid.support.jakarta.WebStatFilter.doFilter(WebStatFilter.java:113) - at io.undertow.servlet.core.ManagedFilter.doFilter(ManagedFilter.java:67) - at io.undertow.servlet.handlers.FilterHandler$FilterChainImpl.doFilter(FilterHandler.java:131) - at org.springframework.boot.actuate.web.exchanges.servlet.HttpExchangesFilter.doFilterInternal(HttpExchangesFilter.java:89) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116) - at io.undertow.servlet.core.ManagedFilter.doFilter(ManagedFilter.java:67) - at io.undertow.servlet.handlers.FilterHandler$FilterChainImpl.doFilter(FilterHandler.java:131) - at org.springframework.web.filter.CompositeFilter$VirtualFilterChain.doFilter(CompositeFilter.java:108) - at org.springframework.security.web.FilterChainProxy.lambda$doFilterInternal$3(FilterChainProxy.java:231) - at org.springframework.security.web.ObservationFilterChainDecorator$FilterObservation$SimpleFilterObservation.lambda$wrap$1(ObservationFilterChainDecorator.java:479) - at org.springframework.security.web.ObservationFilterChainDecorator$AroundFilterObservation$SimpleAroundFilterObservation.lambda$wrap$1(ObservationFilterChainDecorator.java:340) - at org.springframework.security.web.ObservationFilterChainDecorator.lambda$wrapSecured$0(ObservationFilterChainDecorator.java:82) - at org.springframework.security.web.ObservationFilterChainDecorator$VirtualFilterChain.doFilter(ObservationFilterChainDecorator.java:128) - at org.springframework.security.web.access.intercept.AuthorizationFilter.doFilter(AuthorizationFilter.java:101) - at org.springframework.security.web.ObservationFilterChainDecorator$ObservationFilter.wrapFilter(ObservationFilterChainDecorator.java:240) - at org.springframework.security.web.ObservationFilterChainDecorator$ObservationFilter.doFilter(ObservationFilterChainDecorator.java:227) - at org.springframework.security.web.ObservationFilterChainDecorator$VirtualFilterChain.doFilter(ObservationFilterChainDecorator.java:137) - at org.springframework.security.web.access.ExceptionTranslationFilter.doFilter(ExceptionTranslationFilter.java:126) - at org.springframework.security.web.access.ExceptionTranslationFilter.doFilter(ExceptionTranslationFilter.java:120) - at org.springframework.security.web.ObservationFilterChainDecorator$ObservationFilter.wrapFilter(ObservationFilterChainDecorator.java:240) - at org.springframework.security.web.ObservationFilterChainDecorator$ObservationFilter.doFilter(ObservationFilterChainDecorator.java:227) - at org.springframework.security.web.ObservationFilterChainDecorator$VirtualFilterChain.doFilter(ObservationFilterChainDecorator.java:137) - at org.springframework.security.web.authentication.AnonymousAuthenticationFilter.doFilter(AnonymousAuthenticationFilter.java:100) - at org.springframework.security.web.ObservationFilterChainDecorator$ObservationFilter.wrapFilter(ObservationFilterChainDecorator.java:240) - at org.springframework.security.web.ObservationFilterChainDecorator$ObservationFilter.doFilter(ObservationFilterChainDecorator.java:227) - at org.springframework.security.web.ObservationFilterChainDecorator$VirtualFilterChain.doFilter(ObservationFilterChainDecorator.java:137) - at org.springframework.security.web.servletapi.SecurityContextHolderAwareRequestFilter.doFilter(SecurityContextHolderAwareRequestFilter.java:179) - at org.springframework.security.web.ObservationFilterChainDecorator$ObservationFilter.wrapFilter(ObservationFilterChainDecorator.java:240) - at org.springframework.security.web.ObservationFilterChainDecorator$ObservationFilter.doFilter(ObservationFilterChainDecorator.java:227) - at org.springframework.security.web.ObservationFilterChainDecorator$VirtualFilterChain.doFilter(ObservationFilterChainDecorator.java:137) - at org.springframework.security.web.savedrequest.RequestCacheAwareFilter.doFilter(RequestCacheAwareFilter.java:63) - at org.springframework.security.web.ObservationFilterChainDecorator$ObservationFilter.wrapFilter(ObservationFilterChainDecorator.java:240) - at org.springframework.security.web.ObservationFilterChainDecorator$ObservationFilter.doFilter(ObservationFilterChainDecorator.java:227) - at org.springframework.security.web.ObservationFilterChainDecorator$VirtualFilterChain.doFilter(ObservationFilterChainDecorator.java:137) - at org.springframework.security.oauth2.server.resource.web.authentication.BearerTokenAuthenticationFilter.doFilterInternal(BearerTokenAuthenticationFilter.java:145) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116) - at org.springframework.security.web.ObservationFilterChainDecorator$ObservationFilter.wrapFilter(ObservationFilterChainDecorator.java:240) - at org.springframework.security.web.ObservationFilterChainDecorator$ObservationFilter.doFilter(ObservationFilterChainDecorator.java:227) - at org.springframework.security.web.ObservationFilterChainDecorator$VirtualFilterChain.doFilter(ObservationFilterChainDecorator.java:137) - at org.springframework.security.web.authentication.logout.LogoutFilter.doFilter(LogoutFilter.java:107) - at org.springframework.security.web.authentication.logout.LogoutFilter.doFilter(LogoutFilter.java:93) - at org.springframework.security.web.ObservationFilterChainDecorator$ObservationFilter.wrapFilter(ObservationFilterChainDecorator.java:240) - at org.springframework.security.web.ObservationFilterChainDecorator$ObservationFilter.doFilter(ObservationFilterChainDecorator.java:227) - at org.springframework.security.web.ObservationFilterChainDecorator$VirtualFilterChain.doFilter(ObservationFilterChainDecorator.java:137) - at org.springframework.web.filter.CorsFilter.doFilterInternal(CorsFilter.java:91) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116) - at org.springframework.security.web.ObservationFilterChainDecorator$ObservationFilter.wrapFilter(ObservationFilterChainDecorator.java:240) - at org.springframework.security.web.ObservationFilterChainDecorator$ObservationFilter.doFilter(ObservationFilterChainDecorator.java:227) - at org.springframework.security.web.ObservationFilterChainDecorator$VirtualFilterChain.doFilter(ObservationFilterChainDecorator.java:137) - at org.springframework.security.web.header.HeaderWriterFilter.doHeadersAfter(HeaderWriterFilter.java:90) - at org.springframework.security.web.header.HeaderWriterFilter.doFilterInternal(HeaderWriterFilter.java:75) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116) - at org.springframework.security.web.ObservationFilterChainDecorator$ObservationFilter.wrapFilter(ObservationFilterChainDecorator.java:240) - at org.springframework.security.web.ObservationFilterChainDecorator$ObservationFilter.doFilter(ObservationFilterChainDecorator.java:227) - at org.springframework.security.web.ObservationFilterChainDecorator$VirtualFilterChain.doFilter(ObservationFilterChainDecorator.java:137) - at org.springframework.security.web.context.SecurityContextHolderFilter.doFilter(SecurityContextHolderFilter.java:82) - at org.springframework.security.web.context.SecurityContextHolderFilter.doFilter(SecurityContextHolderFilter.java:69) - at org.springframework.security.web.ObservationFilterChainDecorator$ObservationFilter.wrapFilter(ObservationFilterChainDecorator.java:240) - at org.springframework.security.web.ObservationFilterChainDecorator$ObservationFilter.doFilter(ObservationFilterChainDecorator.java:227) - at org.springframework.security.web.ObservationFilterChainDecorator$VirtualFilterChain.doFilter(ObservationFilterChainDecorator.java:137) - at org.springframework.security.web.context.request.async.WebAsyncManagerIntegrationFilter.doFilterInternal(WebAsyncManagerIntegrationFilter.java:62) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116) - at org.springframework.security.web.ObservationFilterChainDecorator$ObservationFilter.wrapFilter(ObservationFilterChainDecorator.java:240) - at org.springframework.security.web.ObservationFilterChainDecorator$ObservationFilter.doFilter(ObservationFilterChainDecorator.java:227) - at org.springframework.security.web.ObservationFilterChainDecorator$VirtualFilterChain.doFilter(ObservationFilterChainDecorator.java:137) - at org.springframework.security.web.session.DisableEncodeUrlFilter.doFilterInternal(DisableEncodeUrlFilter.java:42) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116) - at org.springframework.security.web.ObservationFilterChainDecorator$ObservationFilter.wrapFilter(ObservationFilterChainDecorator.java:240) - at org.springframework.security.web.ObservationFilterChainDecorator$AroundFilterObservation$SimpleAroundFilterObservation.lambda$wrap$0(ObservationFilterChainDecorator.java:323) - at org.springframework.security.web.ObservationFilterChainDecorator$ObservationFilter.doFilter(ObservationFilterChainDecorator.java:224) - at org.springframework.security.web.ObservationFilterChainDecorator$VirtualFilterChain.doFilter(ObservationFilterChainDecorator.java:137) - at org.springframework.security.web.FilterChainProxy.doFilterInternal(FilterChainProxy.java:233) - at org.springframework.security.web.FilterChainProxy.doFilter(FilterChainProxy.java:191) - at org.springframework.web.filter.CompositeFilter$VirtualFilterChain.doFilter(CompositeFilter.java:113) - at org.springframework.web.servlet.handler.HandlerMappingIntrospector.lambda$createCacheFilter$3(HandlerMappingIntrospector.java:243) - at org.springframework.web.filter.CompositeFilter$VirtualFilterChain.doFilter(CompositeFilter.java:113) - at org.springframework.web.filter.CompositeFilter.doFilter(CompositeFilter.java:74) - at org.springframework.security.config.annotation.web.configuration.WebMvcSecurityConfiguration$CompositeFilterChainProxy.doFilter(WebMvcSecurityConfiguration.java:238) - at org.springframework.web.filter.DelegatingFilterProxy.invokeDelegate(DelegatingFilterProxy.java:362) - at org.springframework.web.filter.DelegatingFilterProxy.doFilter(DelegatingFilterProxy.java:278) - at io.undertow.servlet.core.ManagedFilter.doFilter(ManagedFilter.java:67) - at io.undertow.servlet.handlers.FilterHandler$FilterChainImpl.doFilter(FilterHandler.java:131) - at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116) - at io.undertow.servlet.core.ManagedFilter.doFilter(ManagedFilter.java:67) - at io.undertow.servlet.handlers.FilterHandler$FilterChainImpl.doFilter(FilterHandler.java:131) - at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116) - at io.undertow.servlet.core.ManagedFilter.doFilter(ManagedFilter.java:67) - at io.undertow.servlet.handlers.FilterHandler$FilterChainImpl.doFilter(FilterHandler.java:131) - at org.springframework.web.filter.ServerHttpObservationFilter.doFilterInternal(ServerHttpObservationFilter.java:114) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116) - at io.undertow.servlet.core.ManagedFilter.doFilter(ManagedFilter.java:67) - at io.undertow.servlet.handlers.FilterHandler$FilterChainImpl.doFilter(FilterHandler.java:131) - at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116) - at io.undertow.servlet.core.ManagedFilter.doFilter(ManagedFilter.java:67) - at io.undertow.servlet.handlers.FilterHandler$FilterChainImpl.doFilter(FilterHandler.java:131) - at org.jeecg.config.security.CopyTokenFilter.doFilterInternal(CopyTokenFilter.java:41) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116) - at io.undertow.servlet.core.ManagedFilter.doFilter(ManagedFilter.java:67) - at io.undertow.servlet.handlers.FilterHandler$FilterChainImpl.doFilter(FilterHandler.java:131) - at io.undertow.servlet.handlers.FilterHandler.handleRequest(FilterHandler.java:84) - at io.undertow.servlet.handlers.security.ServletSecurityRoleHandler.handleRequest(ServletSecurityRoleHandler.java:62) - at io.undertow.servlet.handlers.ServletChain$1.handleRequest(ServletChain.java:68) - at io.undertow.servlet.handlers.ServletDispatchingHandler.handleRequest(ServletDispatchingHandler.java:36) - at io.undertow.servlet.handlers.RedirectDirHandler.handleRequest(RedirectDirHandler.java:68) - at io.undertow.servlet.handlers.security.SSLInformationAssociationHandler.handleRequest(SSLInformationAssociationHandler.java:117) - at io.undertow.servlet.handlers.security.ServletAuthenticationCallHandler.handleRequest(ServletAuthenticationCallHandler.java:57) - at io.undertow.server.handlers.PredicateHandler.handleRequest(PredicateHandler.java:43) - at io.undertow.security.handlers.AbstractConfidentialityHandler.handleRequest(AbstractConfidentialityHandler.java:46) - at io.undertow.servlet.handlers.security.ServletConfidentialityConstraintHandler.handleRequest(ServletConfidentialityConstraintHandler.java:64) - at io.undertow.security.handlers.AuthenticationMechanismsHandler.handleRequest(AuthenticationMechanismsHandler.java:60) - at io.undertow.servlet.handlers.security.CachedAuthenticatedSessionHandler.handleRequest(CachedAuthenticatedSessionHandler.java:77) - at io.undertow.security.handlers.AbstractSecurityContextAssociationHandler.handleRequest(AbstractSecurityContextAssociationHandler.java:43) - at io.undertow.server.handlers.PredicateHandler.handleRequest(PredicateHandler.java:43) - at io.undertow.servlet.handlers.SendErrorPageHandler.handleRequest(SendErrorPageHandler.java:52) - at io.undertow.server.handlers.PredicateHandler.handleRequest(PredicateHandler.java:43) - at io.undertow.servlet.handlers.ServletInitialHandler.handleFirstRequest(ServletInitialHandler.java:276) - at io.undertow.servlet.handlers.ServletInitialHandler$2.call(ServletInitialHandler.java:135) - at io.undertow.servlet.handlers.ServletInitialHandler$2.call(ServletInitialHandler.java:132) - at io.undertow.servlet.core.ServletRequestContextThreadSetupAction$1.call(ServletRequestContextThreadSetupAction.java:48) - at io.undertow.servlet.core.ContextClassLoaderSetupAction$1.call(ContextClassLoaderSetupAction.java:43) - at io.undertow.servlet.handlers.ServletInitialHandler.dispatchRequest(ServletInitialHandler.java:256) - at io.undertow.servlet.handlers.ServletInitialHandler.handleRequest(ServletInitialHandler.java:176) - at org.jeecg.modules.monitor.actuator.undertow.CustomUndertowMetricsHandler.lambda$wrap$0(CustomUndertowMetricsHandler.java:87) - at io.undertow.server.Connectors.executeRootHandler(Connectors.java:395) - at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:861) - at org.jboss.threads.ContextHandler$1.runWith(ContextHandler.java:18) - at org.jboss.threads.EnhancedQueueExecutor$Task.run(EnhancedQueueExecutor.java:2513) - at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1538) - at org.xnio.XnioWorker$WorkerThreadFactory$1$1.run(XnioWorker.java:1282) - at java.base/java.lang.Thread.run(Thread.java:842) -', NULL, NULL, NULL, '2025-07-14 20:44:38.069', NULL, NULL, NULL, 'pc'); -INSERT INTO "public"."sys_log" VALUES ('1944739814985224194', 4, 'org.springframework.web.servlet.resource.NoResourceFoundException:No static resource sys/thirdApp/getThirdConfigByTenantId.', NULL, 'admin', '管理员', '127.0.0.1', '_t=1752497078052&tenantId=0&thirdType=dingtalk', '/jeecg-boot/sys/thirdApp/getThirdConfigByTenantId', 'org.springframework.web.servlet.resource.NoResourceFoundException: No static resource sys/thirdApp/getThirdConfigByTenantId. - at org.springframework.web.servlet.resource.ResourceHttpRequestHandler.handleRequest(ResourceHttpRequestHandler.java:585) - at org.springframework.web.servlet.mvc.HttpRequestHandlerAdapter.handle(HttpRequestHandlerAdapter.java:52) - at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1089) - at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:979) - at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1014) - at org.springframework.web.servlet.FrameworkServlet.doGet(FrameworkServlet.java:903) - at jakarta.servlet.http.HttpServlet.service(HttpServlet.java:527) - at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:885) - at jakarta.servlet.http.HttpServlet.service(HttpServlet.java:614) - at io.undertow.servlet.handlers.ServletHandler.handleRequest(ServletHandler.java:74) - at io.undertow.servlet.handlers.FilterHandler$FilterChainImpl.doFilter(FilterHandler.java:129) - at io.undertow.websockets.jsr.JsrWebSocketFilter.doFilter(JsrWebSocketFilter.java:172) - at io.undertow.servlet.core.ManagedFilter.doFilter(ManagedFilter.java:67) - at io.undertow.servlet.handlers.FilterHandler$FilterChainImpl.doFilter(FilterHandler.java:131) - at org.springframework.web.filter.CorsFilter.doFilterInternal(CorsFilter.java:91) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116) - at io.undertow.servlet.core.ManagedFilter.doFilter(ManagedFilter.java:67) - at io.undertow.servlet.handlers.FilterHandler$FilterChainImpl.doFilter(FilterHandler.java:131) - at org.jeecg.config.security.RedisTokenValidationFilter.doFilterInternal(RedisTokenValidationFilter.java:47) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116) - at io.undertow.servlet.core.ManagedFilter.doFilter(ManagedFilter.java:67) - at io.undertow.servlet.handlers.FilterHandler$FilterChainImpl.doFilter(FilterHandler.java:131) - at org.springframework.web.servlet.resource.ResourceUrlEncodingFilter.doFilter(ResourceUrlEncodingFilter.java:66) - at io.undertow.servlet.core.ManagedFilter.doFilter(ManagedFilter.java:67) - at io.undertow.servlet.handlers.FilterHandler$FilterChainImpl.doFilter(FilterHandler.java:131) - at com.alibaba.druid.support.jakarta.WebStatFilter.doFilter(WebStatFilter.java:113) - at io.undertow.servlet.core.ManagedFilter.doFilter(ManagedFilter.java:67) - at io.undertow.servlet.handlers.FilterHandler$FilterChainImpl.doFilter(FilterHandler.java:131) - at org.springframework.boot.actuate.web.exchanges.servlet.HttpExchangesFilter.doFilterInternal(HttpExchangesFilter.java:89) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116) - at io.undertow.servlet.core.ManagedFilter.doFilter(ManagedFilter.java:67) - at io.undertow.servlet.handlers.FilterHandler$FilterChainImpl.doFilter(FilterHandler.java:131) - at org.springframework.web.filter.CompositeFilter$VirtualFilterChain.doFilter(CompositeFilter.java:108) - at org.springframework.security.web.FilterChainProxy.lambda$doFilterInternal$3(FilterChainProxy.java:231) - at org.springframework.security.web.ObservationFilterChainDecorator$FilterObservation$SimpleFilterObservation.lambda$wrap$1(ObservationFilterChainDecorator.java:479) - at org.springframework.security.web.ObservationFilterChainDecorator$AroundFilterObservation$SimpleAroundFilterObservation.lambda$wrap$1(ObservationFilterChainDecorator.java:340) - at org.springframework.security.web.ObservationFilterChainDecorator.lambda$wrapSecured$0(ObservationFilterChainDecorator.java:82) - at org.springframework.security.web.ObservationFilterChainDecorator$VirtualFilterChain.doFilter(ObservationFilterChainDecorator.java:128) - at org.springframework.security.web.access.intercept.AuthorizationFilter.doFilter(AuthorizationFilter.java:101) - at org.springframework.security.web.ObservationFilterChainDecorator$ObservationFilter.wrapFilter(ObservationFilterChainDecorator.java:240) - at org.springframework.security.web.ObservationFilterChainDecorator$ObservationFilter.doFilter(ObservationFilterChainDecorator.java:227) - at org.springframework.security.web.ObservationFilterChainDecorator$VirtualFilterChain.doFilter(ObservationFilterChainDecorator.java:137) - at org.springframework.security.web.access.ExceptionTranslationFilter.doFilter(ExceptionTranslationFilter.java:126) - at org.springframework.security.web.access.ExceptionTranslationFilter.doFilter(ExceptionTranslationFilter.java:120) - at org.springframework.security.web.ObservationFilterChainDecorator$ObservationFilter.wrapFilter(ObservationFilterChainDecorator.java:240) - at org.springframework.security.web.ObservationFilterChainDecorator$ObservationFilter.doFilter(ObservationFilterChainDecorator.java:227) - at org.springframework.security.web.ObservationFilterChainDecorator$VirtualFilterChain.doFilter(ObservationFilterChainDecorator.java:137) - at org.springframework.security.web.authentication.AnonymousAuthenticationFilter.doFilter(AnonymousAuthenticationFilter.java:100) - at org.springframework.security.web.ObservationFilterChainDecorator$ObservationFilter.wrapFilter(ObservationFilterChainDecorator.java:240) - at org.springframework.security.web.ObservationFilterChainDecorator$ObservationFilter.doFilter(ObservationFilterChainDecorator.java:227) - at org.springframework.security.web.ObservationFilterChainDecorator$VirtualFilterChain.doFilter(ObservationFilterChainDecorator.java:137) - at org.springframework.security.web.servletapi.SecurityContextHolderAwareRequestFilter.doFilter(SecurityContextHolderAwareRequestFilter.java:179) - at org.springframework.security.web.ObservationFilterChainDecorator$ObservationFilter.wrapFilter(ObservationFilterChainDecorator.java:240) - at org.springframework.security.web.ObservationFilterChainDecorator$ObservationFilter.doFilter(ObservationFilterChainDecorator.java:227) - at org.springframework.security.web.ObservationFilterChainDecorator$VirtualFilterChain.doFilter(ObservationFilterChainDecorator.java:137) - at org.springframework.security.web.savedrequest.RequestCacheAwareFilter.doFilter(RequestCacheAwareFilter.java:63) - at org.springframework.security.web.ObservationFilterChainDecorator$ObservationFilter.wrapFilter(ObservationFilterChainDecorator.java:240) - at org.springframework.security.web.ObservationFilterChainDecorator$ObservationFilter.doFilter(ObservationFilterChainDecorator.java:227) - at org.springframework.security.web.ObservationFilterChainDecorator$VirtualFilterChain.doFilter(ObservationFilterChainDecorator.java:137) - at org.springframework.security.oauth2.server.resource.web.authentication.BearerTokenAuthenticationFilter.doFilterInternal(BearerTokenAuthenticationFilter.java:145) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116) - at org.springframework.security.web.ObservationFilterChainDecorator$ObservationFilter.wrapFilter(ObservationFilterChainDecorator.java:240) - at org.springframework.security.web.ObservationFilterChainDecorator$ObservationFilter.doFilter(ObservationFilterChainDecorator.java:227) - at org.springframework.security.web.ObservationFilterChainDecorator$VirtualFilterChain.doFilter(ObservationFilterChainDecorator.java:137) - at org.springframework.security.web.authentication.logout.LogoutFilter.doFilter(LogoutFilter.java:107) - at org.springframework.security.web.authentication.logout.LogoutFilter.doFilter(LogoutFilter.java:93) - at org.springframework.security.web.ObservationFilterChainDecorator$ObservationFilter.wrapFilter(ObservationFilterChainDecorator.java:240) - at org.springframework.security.web.ObservationFilterChainDecorator$ObservationFilter.doFilter(ObservationFilterChainDecorator.java:227) - at org.springframework.security.web.ObservationFilterChainDecorator$VirtualFilterChain.doFilter(ObservationFilterChainDecorator.java:137) - at org.springframework.web.filter.CorsFilter.doFilterInternal(CorsFilter.java:91) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116) - at org.springframework.security.web.ObservationFilterChainDecorator$ObservationFilter.wrapFilter(ObservationFilterChainDecorator.java:240) - at org.springframework.security.web.ObservationFilterChainDecorator$ObservationFilter.doFilter(ObservationFilterChainDecorator.java:227) - at org.springframework.security.web.ObservationFilterChainDecorator$VirtualFilterChain.doFilter(ObservationFilterChainDecorator.java:137) - at org.springframework.security.web.header.HeaderWriterFilter.doHeadersAfter(HeaderWriterFilter.java:90) - at org.springframework.security.web.header.HeaderWriterFilter.doFilterInternal(HeaderWriterFilter.java:75) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116) - at org.springframework.security.web.ObservationFilterChainDecorator$ObservationFilter.wrapFilter(ObservationFilterChainDecorator.java:240) - at org.springframework.security.web.ObservationFilterChainDecorator$ObservationFilter.doFilter(ObservationFilterChainDecorator.java:227) - at org.springframework.security.web.ObservationFilterChainDecorator$VirtualFilterChain.doFilter(ObservationFilterChainDecorator.java:137) - at org.springframework.security.web.context.SecurityContextHolderFilter.doFilter(SecurityContextHolderFilter.java:82) - at org.springframework.security.web.context.SecurityContextHolderFilter.doFilter(SecurityContextHolderFilter.java:69) - at org.springframework.security.web.ObservationFilterChainDecorator$ObservationFilter.wrapFilter(ObservationFilterChainDecorator.java:240) - at org.springframework.security.web.ObservationFilterChainDecorator$ObservationFilter.doFilter(ObservationFilterChainDecorator.java:227) - at org.springframework.security.web.ObservationFilterChainDecorator$VirtualFilterChain.doFilter(ObservationFilterChainDecorator.java:137) - at org.springframework.security.web.context.request.async.WebAsyncManagerIntegrationFilter.doFilterInternal(WebAsyncManagerIntegrationFilter.java:62) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116) - at org.springframework.security.web.ObservationFilterChainDecorator$ObservationFilter.wrapFilter(ObservationFilterChainDecorator.java:240) - at org.springframework.security.web.ObservationFilterChainDecorator$ObservationFilter.doFilter(ObservationFilterChainDecorator.java:227) - at org.springframework.security.web.ObservationFilterChainDecorator$VirtualFilterChain.doFilter(ObservationFilterChainDecorator.java:137) - at org.springframework.security.web.session.DisableEncodeUrlFilter.doFilterInternal(DisableEncodeUrlFilter.java:42) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116) - at org.springframework.security.web.ObservationFilterChainDecorator$ObservationFilter.wrapFilter(ObservationFilterChainDecorator.java:240) - at org.springframework.security.web.ObservationFilterChainDecorator$AroundFilterObservation$SimpleAroundFilterObservation.lambda$wrap$0(ObservationFilterChainDecorator.java:323) - at org.springframework.security.web.ObservationFilterChainDecorator$ObservationFilter.doFilter(ObservationFilterChainDecorator.java:224) - at org.springframework.security.web.ObservationFilterChainDecorator$VirtualFilterChain.doFilter(ObservationFilterChainDecorator.java:137) - at org.springframework.security.web.FilterChainProxy.doFilterInternal(FilterChainProxy.java:233) - at org.springframework.security.web.FilterChainProxy.doFilter(FilterChainProxy.java:191) - at org.springframework.web.filter.CompositeFilter$VirtualFilterChain.doFilter(CompositeFilter.java:113) - at org.springframework.web.servlet.handler.HandlerMappingIntrospector.lambda$createCacheFilter$3(HandlerMappingIntrospector.java:243) - at org.springframework.web.filter.CompositeFilter$VirtualFilterChain.doFilter(CompositeFilter.java:113) - at org.springframework.web.filter.CompositeFilter.doFilter(CompositeFilter.java:74) - at org.springframework.security.config.annotation.web.configuration.WebMvcSecurityConfiguration$CompositeFilterChainProxy.doFilter(WebMvcSecurityConfiguration.java:238) - at org.springframework.web.filter.DelegatingFilterProxy.invokeDelegate(DelegatingFilterProxy.java:362) - at org.springframework.web.filter.DelegatingFilterProxy.doFilter(DelegatingFilterProxy.java:278) - at io.undertow.servlet.core.ManagedFilter.doFilter(ManagedFilter.java:67) - at io.undertow.servlet.handlers.FilterHandler$FilterChainImpl.doFilter(FilterHandler.java:131) - at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116) - at io.undertow.servlet.core.ManagedFilter.doFilter(ManagedFilter.java:67) - at io.undertow.servlet.handlers.FilterHandler$FilterChainImpl.doFilter(FilterHandler.java:131) - at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116) - at io.undertow.servlet.core.ManagedFilter.doFilter(ManagedFilter.java:67) - at io.undertow.servlet.handlers.FilterHandler$FilterChainImpl.doFilter(FilterHandler.java:131) - at org.springframework.web.filter.ServerHttpObservationFilter.doFilterInternal(ServerHttpObservationFilter.java:114) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116) - at io.undertow.servlet.core.ManagedFilter.doFilter(ManagedFilter.java:67) - at io.undertow.servlet.handlers.FilterHandler$FilterChainImpl.doFilter(FilterHandler.java:131) - at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116) - at io.undertow.servlet.core.ManagedFilter.doFilter(ManagedFilter.java:67) - at io.undertow.servlet.handlers.FilterHandler$FilterChainImpl.doFilter(FilterHandler.java:131) - at org.jeecg.config.security.CopyTokenFilter.doFilterInternal(CopyTokenFilter.java:41) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116) - at io.undertow.servlet.core.ManagedFilter.doFilter(ManagedFilter.java:67) - at io.undertow.servlet.handlers.FilterHandler$FilterChainImpl.doFilter(FilterHandler.java:131) - at io.undertow.servlet.handlers.FilterHandler.handleRequest(FilterHandler.java:84) - at io.undertow.servlet.handlers.security.ServletSecurityRoleHandler.handleRequest(ServletSecurityRoleHandler.java:62) - at io.undertow.servlet.handlers.ServletChain$1.handleRequest(ServletChain.java:68) - at io.undertow.servlet.handlers.ServletDispatchingHandler.handleRequest(ServletDispatchingHandler.java:36) - at io.undertow.servlet.handlers.RedirectDirHandler.handleRequest(RedirectDirHandler.java:68) - at io.undertow.servlet.handlers.security.SSLInformationAssociationHandler.handleRequest(SSLInformationAssociationHandler.java:117) - at io.undertow.servlet.handlers.security.ServletAuthenticationCallHandler.handleRequest(ServletAuthenticationCallHandler.java:57) - at io.undertow.server.handlers.PredicateHandler.handleRequest(PredicateHandler.java:43) - at io.undertow.security.handlers.AbstractConfidentialityHandler.handleRequest(AbstractConfidentialityHandler.java:46) - at io.undertow.servlet.handlers.security.ServletConfidentialityConstraintHandler.handleRequest(ServletConfidentialityConstraintHandler.java:64) - at io.undertow.security.handlers.AuthenticationMechanismsHandler.handleRequest(AuthenticationMechanismsHandler.java:60) - at io.undertow.servlet.handlers.security.CachedAuthenticatedSessionHandler.handleRequest(CachedAuthenticatedSessionHandler.java:77) - at io.undertow.security.handlers.AbstractSecurityContextAssociationHandler.handleRequest(AbstractSecurityContextAssociationHandler.java:43) - at io.undertow.server.handlers.PredicateHandler.handleRequest(PredicateHandler.java:43) - at io.undertow.servlet.handlers.SendErrorPageHandler.handleRequest(SendErrorPageHandler.java:52) - at io.undertow.server.handlers.PredicateHandler.handleRequest(PredicateHandler.java:43) - at io.undertow.servlet.handlers.ServletInitialHandler.handleFirstRequest(ServletInitialHandler.java:276) - at io.undertow.servlet.handlers.ServletInitialHandler$2.call(ServletInitialHandler.java:135) - at io.undertow.servlet.handlers.ServletInitialHandler$2.call(ServletInitialHandler.java:132) - at io.undertow.servlet.core.ServletRequestContextThreadSetupAction$1.call(ServletRequestContextThreadSetupAction.java:48) - at io.undertow.servlet.core.ContextClassLoaderSetupAction$1.call(ContextClassLoaderSetupAction.java:43) - at io.undertow.servlet.handlers.ServletInitialHandler.dispatchRequest(ServletInitialHandler.java:256) - at io.undertow.servlet.handlers.ServletInitialHandler.handleRequest(ServletInitialHandler.java:176) - at org.jeecg.modules.monitor.actuator.undertow.CustomUndertowMetricsHandler.lambda$wrap$0(CustomUndertowMetricsHandler.java:87) - at io.undertow.server.Connectors.executeRootHandler(Connectors.java:395) - at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:861) - at org.jboss.threads.ContextHandler$1.runWith(ContextHandler.java:18) - at org.jboss.threads.EnhancedQueueExecutor$Task.run(EnhancedQueueExecutor.java:2513) - at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1538) - at org.xnio.XnioWorker$WorkerThreadFactory$1$1.run(XnioWorker.java:1282) - at java.base/java.lang.Thread.run(Thread.java:842) -', NULL, NULL, NULL, '2025-07-14 20:44:38.068', NULL, NULL, NULL, 'pc'); -INSERT INTO "public"."sys_log" VALUES ('1944740252245684226', 1, '用户名: 管理员,退出成功!', NULL, 'admin', '管理员', '127.0.0.1', NULL, NULL, NULL, NULL, NULL, NULL, '2025-07-14 20:46:22.323', NULL, NULL, NULL, 'pc'); -INSERT INTO "public"."sys_log" VALUES ('1944740257094299649', 1, '用户名: admin,登录成功!', NULL, 'admin', '管理员', '127.0.0.1', NULL, NULL, NULL, NULL, NULL, NULL, '2025-07-14 20:46:23.475', NULL, NULL, NULL, 'pc'); -- ---------------------------- -- Table structure for sys_permission @@ -13905,7 +10149,7 @@ CREATE TABLE "public"."sys_permission" ( "rule_flag" int4, "status" varchar(2) COLLATE "pg_catalog"."default", "internal_or_external" int2 -)TABLESPACE "stas" +) ; COMMENT ON COLUMN "public"."sys_permission"."id" IS '主键id'; COMMENT ON COLUMN "public"."sys_permission"."parent_id" IS '父id'; @@ -14345,7 +10589,7 @@ CREATE TABLE "public"."sys_permission_data_rule" ( "create_by" varchar(32) COLLATE "pg_catalog"."default", "update_time" timestamp(6), "update_by" varchar(32) COLLATE "pg_catalog"."default" -)TABLESPACE "stas" +) ; COMMENT ON COLUMN "public"."sys_permission_data_rule"."id" IS 'ID'; COMMENT ON COLUMN "public"."sys_permission_data_rule"."permission_id" IS '菜单ID'; @@ -14387,41 +10631,6 @@ INSERT INTO "public"."sys_permission_data_rule" VALUES ('4028ef815595a881015595b INSERT INTO "public"."sys_permission_data_rule" VALUES ('4028ef81574ae99701574aed26530005', '4028ef81574ae99701574aeb97bd0003', '用户名', 'userName', '!=', 'admin', '1', '2016-09-21 12:07:18', 'admin', NULL, NULL); INSERT INTO "public"."sys_permission_data_rule" VALUES ('f852d85d47f224990147f2284c0c0005', NULL, '小于', 'test', '<=', '11', '1', '2014-08-20 14:43:52', '8a8ab0b246dc81120146dc8181950052', NULL, NULL); --- ---------------------------- --- Table structure for sys_position --- ---------------------------- -DROP TABLE IF EXISTS "public"."sys_position"; -CREATE TABLE "public"."sys_position" ( - "id" varchar(32) COLLATE "pg_catalog"."default" NOT NULL, - "code" varchar(100) COLLATE "pg_catalog"."default", - "name" varchar(100) COLLATE "pg_catalog"."default", - "post_rank" varchar(2) COLLATE "pg_catalog"."default", - "company_id" varchar(255) COLLATE "pg_catalog"."default", - "create_by" varchar(50) COLLATE "pg_catalog"."default", - "create_time" timestamp(6), - "update_by" varchar(50) COLLATE "pg_catalog"."default", - "update_time" timestamp(6), - "sys_org_code" varchar(50) COLLATE "pg_catalog"."default", - "tenant_id" int4 -)TABLESPACE "stas" -; -COMMENT ON COLUMN "public"."sys_position"."code" IS '职务编码'; -COMMENT ON COLUMN "public"."sys_position"."name" IS '职务名称'; -COMMENT ON COLUMN "public"."sys_position"."post_rank" IS '职级'; -COMMENT ON COLUMN "public"."sys_position"."company_id" IS '公司id'; -COMMENT ON COLUMN "public"."sys_position"."create_by" IS '创建人'; -COMMENT ON COLUMN "public"."sys_position"."create_time" IS '创建时间'; -COMMENT ON COLUMN "public"."sys_position"."update_by" IS '修改人'; -COMMENT ON COLUMN "public"."sys_position"."update_time" IS '修改时间'; -COMMENT ON COLUMN "public"."sys_position"."sys_org_code" IS '组织机构编码'; -COMMENT ON COLUMN "public"."sys_position"."tenant_id" IS '租户ID'; - --- ---------------------------- --- Records of sys_position --- ---------------------------- -INSERT INTO "public"."sys_position" VALUES ('1185040064792571906', 'devleader', '研发部经理', '2', NULL, 'admin', '2019-10-18 11:49:03', 'admin', '2022-10-25 11:09:06', 'A01', 0); -INSERT INTO "public"."sys_position" VALUES ('1256485574212153345', '总经理', '总经理', '5', NULL, 'admin', '2020-05-02 15:28:00', 'admin', '2024-03-18 14:21:59', '北京国炬公司', 0); - -- ---------------------------- -- Table structure for sys_quartz_job -- ---------------------------- @@ -14438,7 +10647,7 @@ CREATE TABLE "public"."sys_quartz_job" ( "parameter" varchar(255) COLLATE "pg_catalog"."default", "description" varchar(255) COLLATE "pg_catalog"."default", "status" int4 -)TABLESPACE "stas" +) ; COMMENT ON COLUMN "public"."sys_quartz_job"."create_by" IS '创建人'; COMMENT ON COLUMN "public"."sys_quartz_job"."create_time" IS '创建时间'; @@ -14472,7 +10681,7 @@ CREATE TABLE "public"."sys_role" ( "update_by" varchar(32) COLLATE "pg_catalog"."default", "update_time" timestamp(6), "tenant_id" int4 -)TABLESPACE "stas" +) ; COMMENT ON COLUMN "public"."sys_role"."id" IS '主键id'; COMMENT ON COLUMN "public"."sys_role"."role_name" IS '角色名称'; @@ -14511,7 +10720,7 @@ CREATE TABLE "public"."sys_role_index" ( "update_by" varchar(50) COLLATE "pg_catalog"."default", "update_time" timestamp(6), "sys_org_code" varchar(64) COLLATE "pg_catalog"."default" -)TABLESPACE "stas" +) ; COMMENT ON COLUMN "public"."sys_role_index"."role_code" IS '角色编码'; COMMENT ON COLUMN "public"."sys_role_index"."url" IS '路由地址'; @@ -14543,7 +10752,7 @@ CREATE TABLE "public"."sys_role_permission" ( "data_rule_ids" varchar(1000) COLLATE "pg_catalog"."default", "operate_date" timestamp(6), "operate_ip" varchar(100) COLLATE "pg_catalog"."default" -)TABLESPACE "stas" +) ; COMMENT ON COLUMN "public"."sys_role_permission"."role_id" IS '角色id'; COMMENT ON COLUMN "public"."sys_role_permission"."permission_id" IS '权限id'; @@ -15570,7 +11779,7 @@ CREATE TABLE "public"."sys_sms" ( "create_time" timestamp(6), "update_by" varchar(32) COLLATE "pg_catalog"."default", "update_time" timestamp(6) -)TABLESPACE "stas" +) ; COMMENT ON COLUMN "public"."sys_sms"."id" IS 'ID'; COMMENT ON COLUMN "public"."sys_sms"."es_title" IS '消息标题'; @@ -15625,7 +11834,7 @@ CREATE TABLE "public"."sys_sms_template" ( "update_time" timestamp(6), "update_by" varchar(32) COLLATE "pg_catalog"."default", "use_status" varchar(1) COLLATE "pg_catalog"."default" -)TABLESPACE "stas" +) ; COMMENT ON COLUMN "public"."sys_sms_template"."id" IS '主键'; COMMENT ON COLUMN "public"."sys_sms_template"."template_name" IS '模板标题'; @@ -15685,7 +11894,7 @@ CREATE TABLE "public"."sys_table_white_list" ( "create_time" timestamp(6), "update_by" varchar(32) COLLATE "pg_catalog"."default", "update_time" timestamp(6) -)TABLESPACE "stas" +) ; COMMENT ON COLUMN "public"."sys_table_white_list"."id" IS '主键id'; COMMENT ON COLUMN "public"."sys_table_white_list"."table_name" IS '允许的表名'; @@ -15749,7 +11958,7 @@ CREATE TABLE "public"."sys_tenant" ( "update_by" varchar(32) COLLATE "pg_catalog"."default", "update_time" timestamp(6), "apply_status" int4 -)TABLESPACE "stas" +) ; COMMENT ON COLUMN "public"."sys_tenant"."id" IS '租户编码'; COMMENT ON COLUMN "public"."sys_tenant"."name" IS '租户名称'; @@ -15797,7 +12006,7 @@ CREATE TABLE "public"."sys_tenant_pack" ( "update_time" date, "pack_code" varchar(50) COLLATE "pg_catalog"."default", "pack_type" varchar(10) COLLATE "pg_catalog"."default" -)TABLESPACE "stas" +) ; COMMENT ON COLUMN "public"."sys_tenant_pack"."id" IS '主键id'; COMMENT ON COLUMN "public"."sys_tenant_pack"."tenant_id" IS '租户id'; @@ -15831,7 +12040,7 @@ CREATE TABLE "public"."sys_tenant_pack_perms" ( "create_time" date, "update_by" varchar(32) COLLATE "pg_catalog"."default", "update_time" date -)TABLESPACE "stas" +) ; COMMENT ON COLUMN "public"."sys_tenant_pack_perms"."id" IS '主键编号'; COMMENT ON COLUMN "public"."sys_tenant_pack_perms"."pack_id" IS '租户产品包名称'; @@ -15872,7 +12081,7 @@ CREATE TABLE "public"."sys_tenant_pack_user" ( "update_by" varchar(50) COLLATE "pg_catalog"."default", "update_time" timestamp(6), "status" int4 -)TABLESPACE "stas" +) ; COMMENT ON COLUMN "public"."sys_tenant_pack_user"."pack_id" IS '租户产品包ID'; COMMENT ON COLUMN "public"."sys_tenant_pack_user"."user_id" IS '用户ID'; @@ -15908,7 +12117,7 @@ CREATE TABLE "public"."sys_third_account" ( "update_by" varchar(32) COLLATE "pg_catalog"."default", "update_time" timestamp(6), "third_type" varchar(50) COLLATE "pg_catalog"."default" -)TABLESPACE "stas" +) ; COMMENT ON COLUMN "public"."sys_third_account"."id" IS '编号'; COMMENT ON COLUMN "public"."sys_third_account"."sys_user_id" IS '第三方登录id'; @@ -15944,7 +12153,7 @@ CREATE TABLE "public"."sys_third_app_config" ( "status" int4, "create_time" timestamp(6), "update_time" timestamp(6) -)TABLESPACE "stas" +) ; COMMENT ON COLUMN "public"."sys_third_app_config"."tenant_id" IS '租户id'; COMMENT ON COLUMN "public"."sys_third_app_config"."agent_id" IS '钉钉/企业微信应用id'; @@ -15962,6 +12171,77 @@ COMMENT ON TABLE "public"."sys_third_app_config" IS '租户第三方配置表'; -- ---------------------------- INSERT INTO "public"."sys_third_app_config" VALUES ('1714477134884085762', 0, '1', '1', '1', NULL, 'dingtalk', 1, '2023-10-18 11:02:57', NULL); +-- ---------------------------- +-- Table structure for sys_user2 +-- ---------------------------- +DROP TABLE IF EXISTS "public"."sys_user2"; +CREATE TABLE "public"."sys_user2" ( + "id" varchar(32) COLLATE "pg_catalog"."default" NOT NULL, + "username" varchar(100) COLLATE "pg_catalog"."default", + "realname" varchar(100) COLLATE "pg_catalog"."default", + "password" varchar(255) COLLATE "pg_catalog"."default", + "salt" varchar(45) COLLATE "pg_catalog"."default", + "avatar" varchar(255) COLLATE "pg_catalog"."default", + "birthday" date, + "sex" int2, + "email" varchar(45) COLLATE "pg_catalog"."default", + "phone" varchar(45) COLLATE "pg_catalog"."default", + "org_code" varchar(64) COLLATE "pg_catalog"."default", + "status" int2, + "del_flag" int2, + "third_id" varchar(100) COLLATE "pg_catalog"."default", + "third_type" varchar(100) COLLATE "pg_catalog"."default", + "activiti_sync" int2, + "work_no" varchar(100) COLLATE "pg_catalog"."default", + "telephone" varchar(45) COLLATE "pg_catalog"."default", + "create_by" varchar(32) COLLATE "pg_catalog"."default", + "create_time" timestamp(6), + "update_by" varchar(32) COLLATE "pg_catalog"."default", + "update_time" timestamp(6), + "user_identity" int2, + "depart_ids" varchar(1000) COLLATE "pg_catalog"."default", + "client_id" varchar(64) COLLATE "pg_catalog"."default", + "login_tenant_id" int4, + "bpm_status" varchar(2) COLLATE "pg_catalog"."default" +) +; +COMMENT ON COLUMN "public"."sys_user2"."id" IS '主键id'; +COMMENT ON COLUMN "public"."sys_user2"."username" IS '登录账号'; +COMMENT ON COLUMN "public"."sys_user2"."realname" IS '真实姓名'; +COMMENT ON COLUMN "public"."sys_user2"."password" IS '密码'; +COMMENT ON COLUMN "public"."sys_user2"."salt" IS 'md5密码盐'; +COMMENT ON COLUMN "public"."sys_user2"."avatar" IS '头像'; +COMMENT ON COLUMN "public"."sys_user2"."birthday" IS '生日'; +COMMENT ON COLUMN "public"."sys_user2"."sex" IS '性别(0-默认未知,1-男,2-女)'; +COMMENT ON COLUMN "public"."sys_user2"."email" IS '电子邮件'; +COMMENT ON COLUMN "public"."sys_user2"."phone" IS '电话'; +COMMENT ON COLUMN "public"."sys_user2"."org_code" IS '登录会话的机构编码'; +COMMENT ON COLUMN "public"."sys_user2"."status" IS '性别(1-正常,2-冻结)'; +COMMENT ON COLUMN "public"."sys_user2"."del_flag" IS '删除状态(0-正常,1-已删除)'; +COMMENT ON COLUMN "public"."sys_user2"."third_id" IS '第三方登录的唯一标识'; +COMMENT ON COLUMN "public"."sys_user2"."third_type" IS '第三方类型'; +COMMENT ON COLUMN "public"."sys_user2"."activiti_sync" IS '同步工作流引擎(1-同步,0-不同步)'; +COMMENT ON COLUMN "public"."sys_user2"."work_no" IS '工号,唯一键'; +COMMENT ON COLUMN "public"."sys_user2"."telephone" IS '座机号'; +COMMENT ON COLUMN "public"."sys_user2"."create_by" IS '创建人'; +COMMENT ON COLUMN "public"."sys_user2"."create_time" IS '创建时间'; +COMMENT ON COLUMN "public"."sys_user2"."update_by" IS '更新人'; +COMMENT ON COLUMN "public"."sys_user2"."update_time" IS '更新时间'; +COMMENT ON COLUMN "public"."sys_user2"."user_identity" IS '身份(1普通成员 2上级)'; +COMMENT ON COLUMN "public"."sys_user2"."depart_ids" IS '负责部门'; +COMMENT ON COLUMN "public"."sys_user2"."client_id" IS '设备ID'; +COMMENT ON COLUMN "public"."sys_user2"."login_tenant_id" IS '上次登录选择租户ID'; +COMMENT ON COLUMN "public"."sys_user2"."bpm_status" IS '流程入职离职状态'; +COMMENT ON TABLE "public"."sys_user2" IS '用户表'; + +-- ---------------------------- +-- Records of sys_user2 +-- ---------------------------- +INSERT INTO "public"."sys_user2" VALUES ('3d464b4ea0d2491aab8a7bde74c57e95', 'zhangsan', '张三', '02ea098224c7d0d2077c14b9a3a1ed16', 'x5xRdeKB', 'https://static.jeecg.com/temp/jmlogo_1606575041993.png', '2024-04-11', NULL, '111@1.com', '13426411111', '财务部', 1, 0, NULL, NULL, 1, '0005', NULL, 'admin', '2020-05-14 21:26:24', 'admin', '2024-04-26 13:25:37', 1, '', NULL, NULL, NULL); +INSERT INTO "public"."sys_user2" VALUES ('e9ca23d68d884d4ebb19d07889727dae', 'admin', '管理员', 'cb362cfeefbf3d8d', 'RCGTeGiH', 'https://static.jeecg.com/temp/国炬软件logo_1606575029126.png', '1986-02-01', 1, 'jeecg@163.com', '18611111111', 'A01', 1, 0, NULL, NULL, 1, '00001', NULL, NULL, '2019-06-21 17:54:10', 'admin', '2025-05-19 16:06:43', 2, '', NULL, 0, NULL); +INSERT INTO "public"."sys_user2" VALUES ('1714471285016895490', 'ceshi', '测试用户', 'a9932bb12d2cbc5a', 'AF4vhXUz', NULL, '2024-04-11', NULL, 'winter@jeecg.org', '15201111112', NULL, 1, 0, NULL, NULL, 1, '123', NULL, 'admin', '2023-10-18 10:39:42', 'admin', '2025-07-14 20:42:47.603', 1, '', NULL, 0, NULL); +INSERT INTO "public"."sys_user2" VALUES ('a75d45a015c44384a04449ee80dc3503', 'jeecg', 'jeecg', 'eee378a1258530cb', 'mIgiYJow', 'https://static.jeecg.com/temp/国炬软件logo_1606575029126.png', NULL, 1, '418799587@qq.com', '18611788525', 'A02A01', 1, 0, NULL, NULL, 1, '00002', NULL, 'admin', '2019-02-13 16:02:36', 'admin', '2025-07-14 20:43:16.755', 1, '', NULL, 1001, NULL); + -- ---------------------------- -- Table structure for sys_user_agent -- ---------------------------- @@ -15981,7 +12261,7 @@ CREATE TABLE "public"."sys_user_agent" ( "update_time" timestamp(6), "sys_org_code" varchar(50) COLLATE "pg_catalog"."default", "sys_company_code" varchar(50) COLLATE "pg_catalog"."default" -)TABLESPACE "stas" +) ; COMMENT ON COLUMN "public"."sys_user_agent"."id" IS '序号'; COMMENT ON COLUMN "public"."sys_user_agent"."user_name" IS '用户名'; @@ -16013,7 +12293,7 @@ CREATE TABLE "public"."sys_user_depart" ( "id" varchar(32) COLLATE "pg_catalog"."default" NOT NULL, "user_id" varchar(32) COLLATE "pg_catalog"."default", "dep_id" varchar(32) COLLATE "pg_catalog"."default" -)TABLESPACE "stas" +) ; COMMENT ON COLUMN "public"."sys_user_depart"."id" IS 'id'; COMMENT ON COLUMN "public"."sys_user_depart"."user_id" IS '用户id'; @@ -16026,33 +12306,6 @@ INSERT INTO "public"."sys_user_depart" VALUES ('1783729121915510785', '3d464b4ea INSERT INTO "public"."sys_user_depart" VALUES ('1f3a0267811327b9eca86b0cc2b956f3', 'bcbe1290783a469a83ae3bd8effe15d4', '5159cde220114246b045e574adceafe9'); INSERT INTO "public"."sys_user_depart" VALUES ('1944739474005086209', 'a75d45a015c44384a04449ee80dc3503', 'a7d7e77e06c84325a40932163adcdaa6'); --- ---------------------------- --- Table structure for sys_user_position --- ---------------------------- -DROP TABLE IF EXISTS "public"."sys_user_position"; -CREATE TABLE "public"."sys_user_position" ( - "id" varchar(32) COLLATE "pg_catalog"."default" NOT NULL, - "user_id" varchar(32) COLLATE "pg_catalog"."default", - "position_id" varchar(32) COLLATE "pg_catalog"."default", - "create_by" varchar(50) COLLATE "pg_catalog"."default", - "create_time" timestamp(6), - "update_by" varchar(50) COLLATE "pg_catalog"."default", - "update_time" timestamp(6) -)TABLESPACE "stas" -; -COMMENT ON COLUMN "public"."sys_user_position"."id" IS '主键'; -COMMENT ON COLUMN "public"."sys_user_position"."user_id" IS '用户id'; -COMMENT ON COLUMN "public"."sys_user_position"."position_id" IS '职位id'; -COMMENT ON COLUMN "public"."sys_user_position"."create_by" IS '创建人'; -COMMENT ON COLUMN "public"."sys_user_position"."create_time" IS '创建时间'; -COMMENT ON COLUMN "public"."sys_user_position"."update_by" IS '修改人'; -COMMENT ON COLUMN "public"."sys_user_position"."update_time" IS '修改时间'; - --- ---------------------------- --- Records of sys_user_position --- ---------------------------- -INSERT INTO "public"."sys_user_position" VALUES ('1944739351753707521', '1714471285016895490', '1185040064792571906', 'admin', '2025-07-14 20:42:47.624', NULL, NULL); - -- ---------------------------- -- Table structure for sys_user_role -- ---------------------------- @@ -16062,7 +12315,7 @@ CREATE TABLE "public"."sys_user_role" ( "user_id" varchar(32) COLLATE "pg_catalog"."default", "role_id" varchar(32) COLLATE "pg_catalog"."default", "tenant_id" int4 -)TABLESPACE "stas" +) ; COMMENT ON COLUMN "public"."sys_user_role"."id" IS '主键id'; COMMENT ON COLUMN "public"."sys_user_role"."user_id" IS '用户id'; @@ -16103,7 +12356,7 @@ CREATE TABLE "public"."sys_user_tenant" ( "create_time" timestamp(6), "update_by" varchar(32) COLLATE "pg_catalog"."default", "update_time" timestamp(6) -)TABLESPACE "stas" +) ; COMMENT ON COLUMN "public"."sys_user_tenant"."id" IS '主键id'; COMMENT ON COLUMN "public"."sys_user_tenant"."user_id" IS '用户id'; @@ -16121,481 +12374,21 @@ COMMENT ON TABLE "public"."sys_user_tenant" IS '用户租户关系表'; INSERT INTO "public"."sys_user_tenant" VALUES ('1714517525209489409', 'a75d45a015c44384a04449ee80dc3503', 1001, '1', 'ceshi', '2023-10-18 13:43:27', NULL, NULL); -- ---------------------------- --- Table structure for sys_user2 +-- Alter sequences owned by -- ---------------------------- -DROP TABLE IF EXISTS "public"."sys_user2"; -CREATE TABLE "public"."sys_user2" ( - "id" varchar(32) COLLATE "pg_catalog"."default" NOT NULL, - "username" varchar(100) COLLATE "pg_catalog"."default", - "realname" varchar(100) COLLATE "pg_catalog"."default", - "password" varchar(255) COLLATE "pg_catalog"."default", - "salt" varchar(45) COLLATE "pg_catalog"."default", - "avatar" varchar(255) COLLATE "pg_catalog"."default", - "birthday" date, - "sex" int2, - "email" varchar(45) COLLATE "pg_catalog"."default", - "phone" varchar(45) COLLATE "pg_catalog"."default", - "org_code" varchar(64) COLLATE "pg_catalog"."default", - "status" int2, - "del_flag" int2, - "third_id" varchar(100) COLLATE "pg_catalog"."default", - "third_type" varchar(100) COLLATE "pg_catalog"."default", - "activiti_sync" int2, - "work_no" varchar(100) COLLATE "pg_catalog"."default", - "telephone" varchar(45) COLLATE "pg_catalog"."default", - "create_by" varchar(32) COLLATE "pg_catalog"."default", - "create_time" timestamp(6), - "update_by" varchar(32) COLLATE "pg_catalog"."default", - "update_time" timestamp(6), - "user_identity" int2, - "depart_ids" varchar(1000) COLLATE "pg_catalog"."default", - "client_id" varchar(64) COLLATE "pg_catalog"."default", - "login_tenant_id" int4, - "bpm_status" varchar(2) COLLATE "pg_catalog"."default" -)TABLESPACE "stas" -; -COMMENT ON COLUMN "public"."sys_user2"."id" IS '主键id'; -COMMENT ON COLUMN "public"."sys_user2"."username" IS '登录账号'; -COMMENT ON COLUMN "public"."sys_user2"."realname" IS '真实姓名'; -COMMENT ON COLUMN "public"."sys_user2"."password" IS '密码'; -COMMENT ON COLUMN "public"."sys_user2"."salt" IS 'md5密码盐'; -COMMENT ON COLUMN "public"."sys_user2"."avatar" IS '头像'; -COMMENT ON COLUMN "public"."sys_user2"."birthday" IS '生日'; -COMMENT ON COLUMN "public"."sys_user2"."sex" IS '性别(0-默认未知,1-男,2-女)'; -COMMENT ON COLUMN "public"."sys_user2"."email" IS '电子邮件'; -COMMENT ON COLUMN "public"."sys_user2"."phone" IS '电话'; -COMMENT ON COLUMN "public"."sys_user2"."org_code" IS '登录会话的机构编码'; -COMMENT ON COLUMN "public"."sys_user2"."status" IS '性别(1-正常,2-冻结)'; -COMMENT ON COLUMN "public"."sys_user2"."del_flag" IS '删除状态(0-正常,1-已删除)'; -COMMENT ON COLUMN "public"."sys_user2"."third_id" IS '第三方登录的唯一标识'; -COMMENT ON COLUMN "public"."sys_user2"."third_type" IS '第三方类型'; -COMMENT ON COLUMN "public"."sys_user2"."activiti_sync" IS '同步工作流引擎(1-同步,0-不同步)'; -COMMENT ON COLUMN "public"."sys_user2"."work_no" IS '工号,唯一键'; -COMMENT ON COLUMN "public"."sys_user2"."telephone" IS '座机号'; -COMMENT ON COLUMN "public"."sys_user2"."create_by" IS '创建人'; -COMMENT ON COLUMN "public"."sys_user2"."create_time" IS '创建时间'; -COMMENT ON COLUMN "public"."sys_user2"."update_by" IS '更新人'; -COMMENT ON COLUMN "public"."sys_user2"."update_time" IS '更新时间'; -COMMENT ON COLUMN "public"."sys_user2"."user_identity" IS '身份(1普通成员 2上级)'; -COMMENT ON COLUMN "public"."sys_user2"."depart_ids" IS '负责部门'; -COMMENT ON COLUMN "public"."sys_user2"."client_id" IS '设备ID'; -COMMENT ON COLUMN "public"."sys_user2"."login_tenant_id" IS '上次登录选择租户ID'; -COMMENT ON COLUMN "public"."sys_user2"."bpm_status" IS '流程入职离职状态'; -COMMENT ON TABLE "public"."sys_user2" IS '用户表'; +SELECT setval('"public"."rep_demo_gongsi_id_seq"', 2, false); -- ---------------------------- --- Records of sys_user2 +-- Alter sequences owned by -- ---------------------------- -INSERT INTO "public"."sys_user2" VALUES ('3d464b4ea0d2491aab8a7bde74c57e95', 'zhangsan', '张三', '02ea098224c7d0d2077c14b9a3a1ed16', 'x5xRdeKB', 'https://static.jeecg.com/temp/jmlogo_1606575041993.png', '2024-04-11', NULL, '111@1.com', '13426411111', '财务部', 1, 0, NULL, NULL, 1, '0005', NULL, 'admin', '2020-05-14 21:26:24', 'admin', '2024-04-26 13:25:37', 1, '', NULL, NULL, NULL); -INSERT INTO "public"."sys_user2" VALUES ('e9ca23d68d884d4ebb19d07889727dae', 'admin', '管理员', 'cb362cfeefbf3d8d', 'RCGTeGiH', 'https://static.jeecg.com/temp/国炬软件logo_1606575029126.png', '1986-02-01', 1, 'jeecg@163.com', '18611111111', 'A01', 1, 0, NULL, NULL, 1, '00001', NULL, NULL, '2019-06-21 17:54:10', 'admin', '2025-05-19 16:06:43', 2, '', NULL, 0, NULL); -INSERT INTO "public"."sys_user2" VALUES ('1714471285016895490', 'ceshi', '测试用户', 'a9932bb12d2cbc5a', 'AF4vhXUz', NULL, '2024-04-11', NULL, 'winter@jeecg.org', '15201111112', NULL, 1, 0, NULL, NULL, 1, '123', NULL, 'admin', '2023-10-18 10:39:42', 'admin', '2025-07-14 20:42:47.603', 1, '', NULL, 0, NULL); -INSERT INTO "public"."sys_user2" VALUES ('a75d45a015c44384a04449ee80dc3503', 'jeecg', 'jeecg', 'eee378a1258530cb', 'mIgiYJow', 'https://static.jeecg.com/temp/国炬软件logo_1606575029126.png', NULL, 1, '418799587@qq.com', '18611788525', 'A02A01', 1, 0, NULL, NULL, 1, '00002', NULL, 'admin', '2019-02-13 16:02:36', 'admin', '2025-07-14 20:43:16.755', 1, '', NULL, 1001, NULL); +SELECT setval('"public"."rep_demo_jianpiao_id_seq"', 2, false); -- ---------------------------- --- Table structure for test_demo +-- Alter sequences owned by -- ---------------------------- -DROP TABLE IF EXISTS "public"."test_demo"; -CREATE TABLE "public"."test_demo" ( - "id" varchar(36) COLLATE "pg_catalog"."default" NOT NULL, - "create_by" varchar(50) COLLATE "pg_catalog"."default", - "create_time" timestamp(6), - "update_by" varchar(50) COLLATE "pg_catalog"."default", - "update_time" timestamp(6), - "name" varchar(200) COLLATE "pg_catalog"."default", - "sex" varchar(32) COLLATE "pg_catalog"."default", - "age" int4, - "descc" varchar(500) COLLATE "pg_catalog"."default", - "birthday" timestamp(6), - "user_code" varchar(32) COLLATE "pg_catalog"."default", - "file_kk" varchar(500) COLLATE "pg_catalog"."default", - "top_pic" varchar(500) COLLATE "pg_catalog"."default", - "chegnshi" varchar(300) COLLATE "pg_catalog"."default", - "ceck" varchar(32) COLLATE "pg_catalog"."default", - "xiamuti" varchar(100) COLLATE "pg_catalog"."default", - "search_sel" varchar(100) COLLATE "pg_catalog"."default", - "pop" varchar(32) COLLATE "pg_catalog"."default", - "sel_table" varchar(32) COLLATE "pg_catalog"."default" -)TABLESPACE "stas" -; -COMMENT ON COLUMN "public"."test_demo"."id" IS '主键'; -COMMENT ON COLUMN "public"."test_demo"."create_by" IS '创建人登录名称'; -COMMENT ON COLUMN "public"."test_demo"."create_time" IS '创建日期'; -COMMENT ON COLUMN "public"."test_demo"."update_by" IS '更新人登录名称'; -COMMENT ON COLUMN "public"."test_demo"."update_time" IS '更新日期'; -COMMENT ON COLUMN "public"."test_demo"."name" IS '用户名'; -COMMENT ON COLUMN "public"."test_demo"."sex" IS '性别'; -COMMENT ON COLUMN "public"."test_demo"."age" IS '年龄'; -COMMENT ON COLUMN "public"."test_demo"."descc" IS '描述'; -COMMENT ON COLUMN "public"."test_demo"."birthday" IS '生日'; -COMMENT ON COLUMN "public"."test_demo"."user_code" IS '用户编码'; -COMMENT ON COLUMN "public"."test_demo"."file_kk" IS '附件'; -COMMENT ON COLUMN "public"."test_demo"."top_pic" IS '头像'; -COMMENT ON COLUMN "public"."test_demo"."chegnshi" IS '城市'; -COMMENT ON COLUMN "public"."test_demo"."ceck" IS 'checkbox'; -COMMENT ON COLUMN "public"."test_demo"."xiamuti" IS '下拉多选'; -COMMENT ON COLUMN "public"."test_demo"."search_sel" IS '搜索下拉'; -COMMENT ON COLUMN "public"."test_demo"."pop" IS '弹窗'; -COMMENT ON COLUMN "public"."test_demo"."sel_table" IS '下拉字典表'; +SELECT setval('"public"."stas_weather_task_id_seq"', 2, false); -- ---------------------------- --- Records of test_demo +-- Primary Key structure for table stas_weather_task -- ---------------------------- -INSERT INTO "public"."test_demo" VALUES ('11', 'admin', '2024-06-23 16:51:45', NULL, NULL, '111', '1', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL); -INSERT INTO "public"."test_demo" VALUES ('1331884149004910593', 'admin', '2020-11-26 16:55:01', NULL, NULL, '张三', '1', NULL, NULL, NULL, NULL, '', '', '130304', NULL, NULL, NULL, NULL, NULL); -INSERT INTO "public"."test_demo" VALUES ('1331901553776869377', 'admin', '2020-11-26 18:04:10', 'admin', '2020-11-26 18:04:24', '张三', '2', NULL, '', NULL, '', '', '', '', '1', '1,2', 'hr', '', NULL); -INSERT INTO "public"."test_demo" VALUES ('1533107308342210561', 'admin', '2022-06-04 23:24:00', NULL, NULL, '11', '1', 111, '

111

', '2022-06-24 00:00:00', NULL, 'temp/11_1654356225072.jpg', 'temp/11_1654356229294.jpg', '210603', '2', '2,1', 'hr', NULL, 'admin'); -INSERT INTO "public"."test_demo" VALUES ('1899062356047814658', 'admin', '2025-03-10 19:38:43', NULL, NULL, '哈喽', '1', NULL, NULL, '2015-01-01 00:00:00', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL); -INSERT INTO "public"."test_demo" VALUES ('4028810c6aed99e1016aed9b31b40002', NULL, NULL, 'admin', '2019-10-19 15:37:27', 'jeecg', '2', 55, '5', '2019-05-15 00:00:00', NULL, '', '', NULL, NULL, NULL, NULL, NULL, NULL); -INSERT INTO "public"."test_demo" VALUES ('4028810c6b02cba2016b02cba21f0000', 'admin', '2019-05-29 16:53:48', 'admin', '2022-11-07 22:09:46', '张小红', '1', 8222, '8', '2019-04-01 00:00:00', '', '', '', '120101', '2', '', '', '', ''); - --- ---------------------------- --- Table structure for test_enhance_select --- ---------------------------- -DROP TABLE IF EXISTS "public"."test_enhance_select"; -CREATE TABLE "public"."test_enhance_select" ( - "id" varchar(36) COLLATE "pg_catalog"."default" NOT NULL, - "province" varchar(100) COLLATE "pg_catalog"."default", - "city" varchar(100) COLLATE "pg_catalog"."default", - "area" varchar(100) COLLATE "pg_catalog"."default", - "create_time" timestamp(6), - "create_by" varchar(50) COLLATE "pg_catalog"."default" -)TABLESPACE "stas" -; -COMMENT ON COLUMN "public"."test_enhance_select"."province" IS '省份'; -COMMENT ON COLUMN "public"."test_enhance_select"."city" IS '市'; -COMMENT ON COLUMN "public"."test_enhance_select"."area" IS '区'; -COMMENT ON COLUMN "public"."test_enhance_select"."create_time" IS '创建日期'; -COMMENT ON COLUMN "public"."test_enhance_select"."create_by" IS '创建人'; - --- ---------------------------- --- Records of test_enhance_select --- ---------------------------- -INSERT INTO "public"."test_enhance_select" VALUES ('1256614575282958338', '1230769290609725441', '1230769470889299970', '1230769620021972993', '2020-05-03 00:00:36', 'admin'); -INSERT INTO "public"."test_enhance_select" VALUES ('1427183594647195649', '1230769253267836929', '1230769769930592257', '1230769855347593217', '2021-08-16 16:20:59', 'admin'); -INSERT INTO "public"."test_enhance_select" VALUES ('1427184250225299457', '1230769290609725441', '1230769470889299970', '1230769620021972993', '2021-08-16 16:23:35', 'admin'); -INSERT INTO "public"."test_enhance_select" VALUES ('1427900912506630146', '1230769253267836929', '1230769769930592257', '1230769855347593217', '2021-08-18 15:51:21', 'admin'); -INSERT INTO "public"."test_enhance_select" VALUES ('402880e570801ffe01708053743c002e', '1230769253267836929', '1230769769930592257', '1230769855347593217', '2020-02-26 15:08:37', 'admin'); -INSERT INTO "public"."test_enhance_select" VALUES ('402880e570801ffe017080538b24002f', '1230769253267836929', '1230769769930592257', '1230769855347593217', '2020-02-26 15:08:43', 'admin'); -INSERT INTO "public"."test_enhance_select" VALUES ('402880e570801ffe01708053b2b10030', '1230769290609725441', '1230769470889299970', '1230769620021972993', '2020-02-26 15:08:53', 'admin'); - --- ---------------------------- --- Table structure for test_note --- ---------------------------- -DROP TABLE IF EXISTS "public"."test_note"; -CREATE TABLE "public"."test_note" ( - "id" varchar(36) COLLATE "pg_catalog"."default" NOT NULL, - "create_by" varchar(50) COLLATE "pg_catalog"."default", - "create_time" timestamp(6), - "update_by" varchar(50) COLLATE "pg_catalog"."default", - "update_time" timestamp(6), - "sys_org_code" varchar(64) COLLATE "pg_catalog"."default", - "name" varchar(32) COLLATE "pg_catalog"."default", - "age" int4, - "sex" varchar(32) COLLATE "pg_catalog"."default", - "birthday" timestamp(6), - "contents" varchar(500) COLLATE "pg_catalog"."default", - "year" date, - "sheng" varchar(32) COLLATE "pg_catalog"."default", - "month" date, - "begin_time" date -)TABLESPACE "stas" -; -COMMENT ON COLUMN "public"."test_note"."id" IS '主键'; -COMMENT ON COLUMN "public"."test_note"."create_by" IS '创建人'; -COMMENT ON COLUMN "public"."test_note"."create_time" IS '创建日期'; -COMMENT ON COLUMN "public"."test_note"."update_by" IS '更新人'; -COMMENT ON COLUMN "public"."test_note"."update_time" IS '更新日期'; -COMMENT ON COLUMN "public"."test_note"."sys_org_code" IS '所属部门'; -COMMENT ON COLUMN "public"."test_note"."name" IS '用户名'; -COMMENT ON COLUMN "public"."test_note"."age" IS '年龄'; -COMMENT ON COLUMN "public"."test_note"."sex" IS '性别'; -COMMENT ON COLUMN "public"."test_note"."birthday" IS '生日'; -COMMENT ON COLUMN "public"."test_note"."contents" IS '请假原因'; -COMMENT ON COLUMN "public"."test_note"."year" IS '年'; -COMMENT ON COLUMN "public"."test_note"."sheng" IS '地区'; -COMMENT ON COLUMN "public"."test_note"."month" IS '月'; -COMMENT ON COLUMN "public"."test_note"."begin_time" IS '开始时间'; - --- ---------------------------- --- Records of test_note --- ---------------------------- -INSERT INTO "public"."test_note" VALUES ('1257876639515222017', 'admin', '2020-05-06 11:35:35', NULL, NULL, 'A01', '不同意', 20, '1', '2020-05-06 00:00:00', '999', NULL, NULL, NULL, NULL); -INSERT INTO "public"."test_note" VALUES ('1304309860578455553', 'admin', '2020-09-11 14:44:38', 'admin', '2025-06-25 17:51:19', 'A01', 'zhangsan', 18, '1', '2020-09-11 00:00:00', '

2223333

', NULL, '', NULL, NULL); -INSERT INTO "public"."test_note" VALUES ('1923203898831777793', 'admin', '2025-05-16 10:28:35', 'admin', '2025-06-25 15:10:43', 'A01', 'admin', 10, '2', NULL, '', NULL, '', NULL, NULL); - --- ---------------------------- --- Table structure for test_online_link --- ---------------------------- -DROP TABLE IF EXISTS "public"."test_online_link"; -CREATE TABLE "public"."test_online_link" ( - "id" varchar(32) COLLATE "pg_catalog"."default" NOT NULL, - "pid" varchar(32) COLLATE "pg_catalog"."default", - "name" varchar(255) COLLATE "pg_catalog"."default" -)TABLESPACE "stas" -; -COMMENT ON COLUMN "public"."test_online_link"."pid" IS 'pid'; -COMMENT ON COLUMN "public"."test_online_link"."name" IS 'name'; - --- ---------------------------- --- Records of test_online_link --- ---------------------------- -INSERT INTO "public"."test_online_link" VALUES ('1', NULL, '中国'); -INSERT INTO "public"."test_online_link" VALUES ('10', '8', '庐阳区'); -INSERT INTO "public"."test_online_link" VALUES ('11', '7', '黄山市'); -INSERT INTO "public"."test_online_link" VALUES ('2', '1', '山东省'); -INSERT INTO "public"."test_online_link" VALUES ('3', '2', '济南市'); -INSERT INTO "public"."test_online_link" VALUES ('4', '3', '历城区'); -INSERT INTO "public"."test_online_link" VALUES ('5', '3', '长青区'); -INSERT INTO "public"."test_online_link" VALUES ('6', '2', '青岛市'); -INSERT INTO "public"."test_online_link" VALUES ('7', '1', '安徽省'); -INSERT INTO "public"."test_online_link" VALUES ('8', '7', '合肥市'); -INSERT INTO "public"."test_online_link" VALUES ('9', '8', '包河区'); - --- ---------------------------- --- Table structure for test_order_customer --- ---------------------------- -DROP TABLE IF EXISTS "public"."test_order_customer"; -CREATE TABLE "public"."test_order_customer" ( - "id" varchar(36) COLLATE "pg_catalog"."default" NOT NULL, - "create_by" varchar(50) COLLATE "pg_catalog"."default", - "create_time" timestamp(6), - "update_by" varchar(50) COLLATE "pg_catalog"."default", - "update_time" timestamp(6), - "sys_org_code" varchar(64) COLLATE "pg_catalog"."default", - "name" varchar(32) COLLATE "pg_catalog"."default", - "sex" varchar(32) COLLATE "pg_catalog"."default", - "age" int4, - "birthday" date, - "order_id" varchar(32) COLLATE "pg_catalog"."default", - "address" varchar(300) COLLATE "pg_catalog"."default" -)TABLESPACE "stas" -; -COMMENT ON COLUMN "public"."test_order_customer"."create_by" IS '创建人'; -COMMENT ON COLUMN "public"."test_order_customer"."create_time" IS '创建日期'; -COMMENT ON COLUMN "public"."test_order_customer"."update_by" IS '更新人'; -COMMENT ON COLUMN "public"."test_order_customer"."update_time" IS '更新日期'; -COMMENT ON COLUMN "public"."test_order_customer"."sys_org_code" IS '所属部门'; -COMMENT ON COLUMN "public"."test_order_customer"."name" IS '客户名字'; -COMMENT ON COLUMN "public"."test_order_customer"."sex" IS '性别'; -COMMENT ON COLUMN "public"."test_order_customer"."age" IS '年龄'; -COMMENT ON COLUMN "public"."test_order_customer"."birthday" IS '生日'; -COMMENT ON COLUMN "public"."test_order_customer"."order_id" IS '订单id'; -COMMENT ON COLUMN "public"."test_order_customer"."address" IS '地址'; - --- ---------------------------- --- Records of test_order_customer --- ---------------------------- -INSERT INTO "public"."test_order_customer" VALUES ('1586285823409205250', 'admin', '2022-10-29 17:16:26', NULL, NULL, 'A01', '90', '1', 90, '2022-09-28', '1551943088862896130', NULL); -INSERT INTO "public"."test_order_customer" VALUES ('1586557969578553345', 'admin', '2022-10-30 11:20:31', NULL, NULL, 'A01', '小王', '1', 33, '2022-09-29', '1586557968995545089', NULL); -INSERT INTO "public"."test_order_customer" VALUES ('1586557969578553346', 'admin', '2022-10-30 11:17:51', NULL, NULL, 'A01', '效力', '2', 333, '2022-10-16', '1586557968995545089', NULL); -INSERT INTO "public"."test_order_customer" VALUES ('1589514956528386050', 'admin', '2022-11-07 15:07:52', NULL, NULL, 'A01', '1111', '1', 22, '2022-11-02', '1589514956490637313', NULL); -INSERT INTO "public"."test_order_customer" VALUES ('1589516804559699969', 'admin', '2022-11-23 17:20:56', NULL, NULL, 'A01', '444', NULL, NULL, NULL, '1589516804530339842', '110101'); -INSERT INTO "public"."test_order_customer" VALUES ('1589516804559699970', 'admin', '2022-11-07 15:15:13', NULL, NULL, 'A01', '33', NULL, NULL, NULL, '1589516804530339842', '120101'); -INSERT INTO "public"."test_order_customer" VALUES ('1589516832699285506', 'admin', '2022-11-07 15:15:19', NULL, NULL, 'A01', '4434', NULL, NULL, NULL, '1589516804530339842', NULL); -INSERT INTO "public"."test_order_customer" VALUES ('1597149156416937985', 'admin', '2022-11-28 16:43:27', NULL, NULL, 'A01', '33', '1', 33, '2022-11-03', '1597149156089782273', NULL); -INSERT INTO "public"."test_order_customer" VALUES ('1683074969947033601', 'admin', '2024-09-10 19:47:29', NULL, NULL, 'A01', '于美欣', '1', 22, '2023-07-06', '1683074969561157634', NULL); - --- ---------------------------- --- Table structure for test_order_main --- ---------------------------- -DROP TABLE IF EXISTS "public"."test_order_main"; -CREATE TABLE "public"."test_order_main" ( - "id" varchar(36) COLLATE "pg_catalog"."default" NOT NULL, - "create_by" varchar(50) COLLATE "pg_catalog"."default", - "create_time" timestamp(6), - "update_by" varchar(50) COLLATE "pg_catalog"."default", - "update_time" timestamp(6), - "order_code" varchar(32) COLLATE "pg_catalog"."default", - "order_date" timestamp(6), - "descc" varchar(100) COLLATE "pg_catalog"."default", - "xiala" varchar(32) COLLATE "pg_catalog"."default" -)TABLESPACE "stas" -; -COMMENT ON COLUMN "public"."test_order_main"."id" IS '主键'; -COMMENT ON COLUMN "public"."test_order_main"."create_by" IS '创建人'; -COMMENT ON COLUMN "public"."test_order_main"."create_time" IS '创建日期'; -COMMENT ON COLUMN "public"."test_order_main"."update_by" IS '更新人'; -COMMENT ON COLUMN "public"."test_order_main"."update_time" IS '更新日期'; -COMMENT ON COLUMN "public"."test_order_main"."order_code" IS '订单编码'; -COMMENT ON COLUMN "public"."test_order_main"."order_date" IS '下单时间'; -COMMENT ON COLUMN "public"."test_order_main"."descc" IS '描述'; -COMMENT ON COLUMN "public"."test_order_main"."xiala" IS '下拉多选'; - --- ---------------------------- --- Records of test_order_main --- ---------------------------- -INSERT INTO "public"."test_order_main" VALUES ('1256629667445714946', 'admin', '2020-05-03 01:00:34', 'admin', '2020-11-26 15:22:35', '鼠标', '2020-05-03 00:00:00', '15', NULL); -INSERT INTO "public"."test_order_main" VALUES ('1551943088862896130', 'admin', '2022-07-26 22:50:40', 'admin', '2022-10-29 17:16:26', 'CN2022', NULL, '', ''); -INSERT INTO "public"."test_order_main" VALUES ('1586557968995545089', 'admin', '2022-10-30 11:17:51', 'admin', '2022-11-07 15:07:24', 'CN2022103011170844', NULL, '111', ''); -INSERT INTO "public"."test_order_main" VALUES ('1589514956490637313', 'admin', '2022-11-07 15:07:52', 'admin', '2022-11-07 15:14:50', '顾平', '2022-11-07 00:00:00', NULL, '1,2'); -INSERT INTO "public"."test_order_main" VALUES ('1589516804530339842', 'admin', '2022-11-07 15:15:13', 'admin', '2022-11-23 17:20:56', '顾平2', '2022-11-07 00:00:00', '222', '1,2'); -INSERT INTO "public"."test_order_main" VALUES ('1597149156089782273', 'admin', '2022-11-28 16:43:27', NULL, NULL, 'CN2022112816431596', NULL, NULL, NULL); -INSERT INTO "public"."test_order_main" VALUES ('1683074969561157634', 'admin', '2023-07-23 19:21:57', 'admin', '2024-09-10 19:47:29', 'CN2023072319214115', NULL, '111', '1,2'); -INSERT INTO "public"."test_order_main" VALUES ('1833472350097121281', 'admin', '2024-09-10 19:47:27', 'admin', '2025-06-25 15:05:15', 'CN2024091019472568', NULL, '', ''); -INSERT INTO "public"."test_order_main" VALUES ('1907441973318082561', 'admin', '2025-04-02 22:36:19', NULL, NULL, 'CN2025040222361836', NULL, NULL, NULL); - --- ---------------------------- --- Table structure for test_order_product --- ---------------------------- -DROP TABLE IF EXISTS "public"."test_order_product"; -CREATE TABLE "public"."test_order_product" ( - "id" varchar(36) COLLATE "pg_catalog"."default" NOT NULL, - "create_by" varchar(50) COLLATE "pg_catalog"."default", - "create_time" timestamp(6), - "update_by" varchar(50) COLLATE "pg_catalog"."default", - "update_time" timestamp(6), - "product_name" varchar(32) COLLATE "pg_catalog"."default", - "price" float8, - "num" int4, - "descc" varchar(32) COLLATE "pg_catalog"."default", - "order_fk_id" varchar(32) COLLATE "pg_catalog"."default" NOT NULL, - "pro_type" varchar(32) COLLATE "pg_catalog"."default" -)TABLESPACE "stas" -; -COMMENT ON COLUMN "public"."test_order_product"."id" IS '主键'; -COMMENT ON COLUMN "public"."test_order_product"."create_by" IS '创建人'; -COMMENT ON COLUMN "public"."test_order_product"."create_time" IS '创建日期'; -COMMENT ON COLUMN "public"."test_order_product"."update_by" IS '更新人'; -COMMENT ON COLUMN "public"."test_order_product"."update_time" IS '更新日期'; -COMMENT ON COLUMN "public"."test_order_product"."product_name" IS '产品名字'; -COMMENT ON COLUMN "public"."test_order_product"."price" IS '价格'; -COMMENT ON COLUMN "public"."test_order_product"."num" IS '数量'; -COMMENT ON COLUMN "public"."test_order_product"."descc" IS '描述'; -COMMENT ON COLUMN "public"."test_order_product"."order_fk_id" IS '订单外键ID'; -COMMENT ON COLUMN "public"."test_order_product"."pro_type" IS '产品类型'; - --- ---------------------------- --- Records of test_order_product --- ---------------------------- -INSERT INTO "public"."test_order_product" VALUES ('1331860890813284353', 'admin', '2020-11-26 15:22:35', NULL, NULL, '44', 44, 44, '', '1256629667445714946', '1'); -INSERT INTO "public"."test_order_product" VALUES ('1551943088930004994', 'admin', '2022-10-29 17:16:26', NULL, NULL, '11', 11, 11, '11', '1551943088862896130', '1'); -INSERT INTO "public"."test_order_product" VALUES ('1551943088930004995', 'admin', '2022-07-26 22:50:40', NULL, NULL, '2', 2, 2, '2', '1551943088862896130', '2'); -INSERT INTO "public"."test_order_product" VALUES ('15665749948861', 'admin', '2020-02-24 02:05:38', NULL, NULL, '333', 33, NULL, '', '402831816a38e7fd016a38e825c90003', ''); -INSERT INTO "public"."test_order_product" VALUES ('1586557969318506498', 'admin', '2022-10-30 11:20:31', NULL, NULL, '小米手机3', 20003, 33, '3', '1586557968995545089', '2'); -INSERT INTO "public"."test_order_product" VALUES ('1586557969381421058', 'admin', '2022-10-30 11:17:51', NULL, NULL, '华为手机1', 80001, 31, '11', '1586557968995545089', '2'); -INSERT INTO "public"."test_order_product" VALUES ('15884388229280883233', 'admin', '2020-11-26 15:22:35', NULL, NULL, '华为手机', 25, 35, '345', '1256629667445714946', '1'); -INSERT INTO "public"."test_order_product" VALUES ('15884388231401967996', 'admin', '2020-07-11 11:36:36', NULL, NULL, '低代码平台', 25, 35, '445', '1256629667445714946', '1'); -INSERT INTO "public"."test_order_product" VALUES ('15884388463052345317', 'admin', '2020-07-11 11:36:36', NULL, NULL, '表单设计器', 55, 55, '55', '1256629667445714946', '2'); -INSERT INTO "public"."test_order_product" VALUES ('1589514837779251202', 'admin', '2022-11-07 15:07:24', NULL, NULL, '2323', 2323, 2323, '', '1586557968995545089', '1'); -INSERT INTO "public"."test_order_product" VALUES ('1589514956499025921', 'admin', '2022-11-07 15:07:52', NULL, NULL, '111', 222, 222, '222', '1589514956490637313', '1'); -INSERT INTO "public"."test_order_product" VALUES ('1589514956515803137', 'admin', '2022-11-07 15:07:52', NULL, NULL, '333', NULL, NULL, '', '1589514956490637313', ''); -INSERT INTO "public"."test_order_product" VALUES ('1589516804542922753', 'admin', '2022-11-23 17:20:56', NULL, NULL, '1133', NULL, NULL, NULL, '1589516804530339842', NULL); -INSERT INTO "public"."test_order_product" VALUES ('1589516804551311361', 'admin', '2022-11-07 15:15:13', NULL, NULL, '222', NULL, NULL, NULL, '1589516804530339842', NULL); -INSERT INTO "public"."test_order_product" VALUES ('1597149156278525953', 'admin', '2022-11-28 16:43:27', NULL, NULL, '22', 2, 2, '22', '1597149156089782273', '1'); -INSERT INTO "public"."test_order_product" VALUES ('1683074969716346881', 'admin', '2024-09-10 19:47:29', NULL, NULL, '电脑', 5000, 21, '121', '1683074969561157634', '1'); -INSERT INTO "public"."test_order_product" VALUES ('1714472725034704898', 'admin', '2024-09-10 19:47:29', NULL, NULL, '办公椅子', 50, 100, NULL, '1683074969561157634', '1'); -INSERT INTO "public"."test_order_product" VALUES ('1732300515406647298', 'admin', '2024-09-10 19:47:29', NULL, NULL, '3', 3, 3, NULL, '1683074969561157634', NULL); -INSERT INTO "public"."test_order_product" VALUES ('1907442008848031746', 'admin', '2025-04-02 22:36:28', 'admin', '2025-04-02 22:36:32', '1', 1, 22, '', '1833472350097121281', '1'); -INSERT INTO "public"."test_order_product" VALUES ('402831816a38e7fd016a38e7fdeb0001', 'admin', '2019-04-20 12:01:29', NULL, NULL, '笔记本', 100, 10, NULL, '402831816a38e7fd016a38e7fddf0000', NULL); -INSERT INTO "public"."test_order_product" VALUES ('402831816a38e7fd016a38e7fdf10002', 'admin', '2019-04-20 12:01:29', NULL, NULL, '显示器', 300, 1, NULL, '402831816a38e7fd016a38e7fddf0000', NULL); -INSERT INTO "public"."test_order_product" VALUES ('4028810c6b40244b016b406884080005', 'admin', '2020-02-24 02:05:38', NULL, NULL, '333', NULL, 33, '', '402831816a38e7fd016a38e825c90003', ''); - --- ---------------------------- --- Table structure for test_person --- ---------------------------- -DROP TABLE IF EXISTS "public"."test_person"; -CREATE TABLE "public"."test_person" ( - "id" varchar(36) COLLATE "pg_catalog"."default" NOT NULL, - "create_by" varchar(50) COLLATE "pg_catalog"."default", - "create_time" timestamp(6), - "update_by" varchar(50) COLLATE "pg_catalog"."default", - "update_time" timestamp(6), - "sex" varchar(32) COLLATE "pg_catalog"."default", - "name" varchar(200) COLLATE "pg_catalog"."default", - "content" text COLLATE "pg_catalog"."default", - "be_date" timestamp(6), - "qj_days" int4 -)TABLESPACE "stas" -; -COMMENT ON COLUMN "public"."test_person"."create_by" IS '创建人'; -COMMENT ON COLUMN "public"."test_person"."create_time" IS '创建日期'; -COMMENT ON COLUMN "public"."test_person"."update_by" IS '更新人'; -COMMENT ON COLUMN "public"."test_person"."update_time" IS '更新日期'; -COMMENT ON COLUMN "public"."test_person"."sex" IS '性别'; -COMMENT ON COLUMN "public"."test_person"."name" IS '用户名'; -COMMENT ON COLUMN "public"."test_person"."content" IS '请假原因'; -COMMENT ON COLUMN "public"."test_person"."be_date" IS '请假时间'; -COMMENT ON COLUMN "public"."test_person"."qj_days" IS '请假天数'; - --- ---------------------------- --- Records of test_person --- ---------------------------- -INSERT INTO "public"."test_person" VALUES ('8ca668defdae47df8649a5477ae08b05', 'admin', '2019-04-12 09:51:37', NULL, NULL, '1', 'zhangdaiscott', 'dsdsd', '2019-04-12 00:00:00', 2); - --- ---------------------------- --- Table structure for test_shoptype_tree --- ---------------------------- -DROP TABLE IF EXISTS "public"."test_shoptype_tree"; -CREATE TABLE "public"."test_shoptype_tree" ( - "id" varchar(36) COLLATE "pg_catalog"."default" NOT NULL, - "create_by" varchar(50) COLLATE "pg_catalog"."default", - "create_time" timestamp(6), - "update_by" varchar(50) COLLATE "pg_catalog"."default", - "update_time" timestamp(6), - "sys_org_code" varchar(64) COLLATE "pg_catalog"."default", - "type_name" varchar(32) COLLATE "pg_catalog"."default", - "pic" varchar(500) COLLATE "pg_catalog"."default", - "pid" varchar(32) COLLATE "pg_catalog"."default", - "has_child" varchar(3) COLLATE "pg_catalog"."default" -)TABLESPACE "stas" -; -COMMENT ON COLUMN "public"."test_shoptype_tree"."id" IS '主键'; -COMMENT ON COLUMN "public"."test_shoptype_tree"."create_by" IS '创建人'; -COMMENT ON COLUMN "public"."test_shoptype_tree"."create_time" IS '创建日期'; -COMMENT ON COLUMN "public"."test_shoptype_tree"."update_by" IS '更新人'; -COMMENT ON COLUMN "public"."test_shoptype_tree"."update_time" IS '更新日期'; -COMMENT ON COLUMN "public"."test_shoptype_tree"."sys_org_code" IS '所属部门'; -COMMENT ON COLUMN "public"."test_shoptype_tree"."type_name" IS '商品分类'; -COMMENT ON COLUMN "public"."test_shoptype_tree"."pic" IS '分类图片'; -COMMENT ON COLUMN "public"."test_shoptype_tree"."pid" IS '父级节点'; -COMMENT ON COLUMN "public"."test_shoptype_tree"."has_child" IS '是否有子节点'; - --- ---------------------------- --- Records of test_shoptype_tree --- ---------------------------- -INSERT INTO "public"."test_shoptype_tree" VALUES ('1256629035921944577', 'admin', '2020-05-03 00:58:03', NULL, NULL, 'A01', '三星显示器', 'gh_f28e66390fc9_344 (shop)_1588438682583.jpg', '1256628864848867329', '0'); -INSERT INTO "public"."test_shoptype_tree" VALUES ('1833472226709086209', 'admin', '2024-09-10 19:46:57', NULL, NULL, 'A01', '笔记本', NULL, '0', '0'); -INSERT INTO "public"."test_shoptype_tree" VALUES ('1923190583678107649', 'admin', '2025-05-16 09:35:40', NULL, NULL, 'A01', '水果', NULL, '0', '1'); -INSERT INTO "public"."test_shoptype_tree" VALUES ('1923190611448594433', 'admin', '2025-05-16 09:35:47', NULL, NULL, 'A01', '苹果', NULL, '1923190583678107649', '0'); - --- ---------------------------- --- Primary Key structure for table airag_app --- ---------------------------- -ALTER TABLE "public"."airag_app" ADD CONSTRAINT "airag_app_pkey" PRIMARY KEY ("id"); - --- ---------------------------- --- Primary Key structure for table airag_flow --- ---------------------------- -ALTER TABLE "public"."airag_flow" ADD CONSTRAINT "airag_flow_pkey" PRIMARY KEY ("id"); - --- ---------------------------- --- Primary Key structure for table airag_knowledge --- ---------------------------- -ALTER TABLE "public"."airag_knowledge" ADD CONSTRAINT "airag_knowledge_pkey" PRIMARY KEY ("id"); - --- ---------------------------- --- Primary Key structure for table airag_knowledge_doc --- ---------------------------- -ALTER TABLE "public"."airag_knowledge_doc" ADD CONSTRAINT "airag_knowledge_doc_pkey" PRIMARY KEY ("id"); - --- ---------------------------- --- Primary Key structure for table airag_model --- ---------------------------- -ALTER TABLE "public"."airag_model" ADD CONSTRAINT "airag_model_pkey" PRIMARY KEY ("id"); - --- ---------------------------- --- Primary Key structure for table demo --- ---------------------------- -ALTER TABLE "public"."demo" ADD CONSTRAINT "demo_pkey" PRIMARY KEY ("id"); - --- ---------------------------- --- Indexes structure for table flyway_schema_history --- ---------------------------- -CREATE INDEX "flyway_schema_history_s_idx" ON "public"."flyway_schema_history" USING btree ( - "success" "pg_catalog"."int2_ops" ASC NULLS LAST -)TABLESPACE "stas"; - --- ---------------------------- --- Primary Key structure for table flyway_schema_history --- ---------------------------- -ALTER TABLE "public"."flyway_schema_history" ADD CONSTRAINT "flyway_schema_history_pkey" PRIMARY KEY ("installed_rank"); +ALTER TABLE "public"."stas_weather_task" ADD CONSTRAINT "stas_weather_task_pkey" PRIMARY KEY ("id"); diff --git a/jeecg-boot-base-core/pom.xml b/jeecg-boot-base-core/pom.xml index 5ab037c..b76eb1d 100644 --- a/jeecg-boot-base-core/pom.xml +++ b/jeecg-boot-base-core/pom.xml @@ -38,6 +38,11 @@ + + + 4.5.5 + 4.5.5 + @@ -320,5 +325,16 @@ org.jeecgframework.boot3 minidao-spring-boot-starter-jsqlparser-4.9 + + + edu.ucar + netcdf4 + ${netcdf.version} + + + edu.ucar + grib + ${grib.version} + \ No newline at end of file diff --git a/jeecg-boot-base-core/src/main/java/org/jeecg/common/constant/ServiceNameConstants.java b/jeecg-boot-base-core/src/main/java/org/jeecg/common/constant/ServiceNameConstants.java index e4a1e8c..5d9517d 100644 --- a/jeecg-boot-base-core/src/main/java/org/jeecg/common/constant/ServiceNameConstants.java +++ b/jeecg-boot-base-core/src/main/java/org/jeecg/common/constant/ServiceNameConstants.java @@ -33,23 +33,6 @@ public interface ServiceNameConstants { * 微服务名: demo模块 */ String SERVICE_DEMO = "jeecg-demo"; - /** - * 微服务名:joa模块 - */ - String SERVICE_JOA = "jeecg-joa"; - -// /** -// * 微服务名:online在线模块 -// */ -// String SERVICE_ONLINE = "jeecg-online"; -// /** -// * 微服务名:OA模块 -// */ -// String SERVICE_EOA = "jeecg-eoa"; -// /** -// * 微服务名:表单设计模块 -// */ -// String SERVICE_FORM = "jeecg-desform"; /** * gateway通过header传递根路径 basePath diff --git a/jeecg-boot-base-core/src/main/java/org/jeecg/common/constant/enums/WeatherDataSourceEnum.java b/jeecg-boot-base-core/src/main/java/org/jeecg/common/constant/enums/WeatherDataSourceEnum.java new file mode 100644 index 0000000..68bbe57 --- /dev/null +++ b/jeecg-boot-base-core/src/main/java/org/jeecg/common/constant/enums/WeatherDataSourceEnum.java @@ -0,0 +1,30 @@ +package org.jeecg.common.constant.enums; + +/** + * 气象数据来源说明枚举 + */ +public enum WeatherDataSourceEnum { + + /** + * 盘古模型 + */ + PANGU(1), + /** + * Graphcast + */ + GRAPHCAST(2), + /** + * 再分析数据 + */ + RE_ANALYSIS(3); + + private Integer key; + + WeatherDataSourceEnum(Integer key) { + this.key = key; + } + + public Integer getKey(){ + return this.key; + } +} diff --git a/jeecg-boot-base-core/src/main/java/org/jeecg/common/constant/enums/WeatherFilePrefixEnum.java b/jeecg-boot-base-core/src/main/java/org/jeecg/common/constant/enums/WeatherFilePrefixEnum.java new file mode 100644 index 0000000..fc6c1a9 --- /dev/null +++ b/jeecg-boot-base-core/src/main/java/org/jeecg/common/constant/enums/WeatherFilePrefixEnum.java @@ -0,0 +1,37 @@ +package org.jeecg.common.constant.enums; + +/** + * 文件类型说明枚举 + */ +public enum WeatherFilePrefixEnum { + + + FORECAST(0, "panguweather_"); + + private Integer key; + + private String value; + + WeatherFilePrefixEnum(Integer key, String value) { + this.key = key; + this.value = value; + } + + public Integer getKey(){ + return this.key; + } + + public String getValue(){ + return this.value; + } + + public static String getValueByKey(int key) { + for (WeatherFilePrefixEnum prefix : WeatherFilePrefixEnum.values()) { + if (prefix.getKey() == key) { + return prefix.getValue(); + } + } + return null; + } + +} diff --git a/jeecg-boot-base-core/src/main/java/org/jeecg/common/constant/enums/WeatherFileSuffixEnum.java b/jeecg-boot-base-core/src/main/java/org/jeecg/common/constant/enums/WeatherFileSuffixEnum.java new file mode 100644 index 0000000..c73297c --- /dev/null +++ b/jeecg-boot-base-core/src/main/java/org/jeecg/common/constant/enums/WeatherFileSuffixEnum.java @@ -0,0 +1,21 @@ +package org.jeecg.common.constant.enums; + +/** + * 文件类型说明枚举 + */ +public enum WeatherFileSuffixEnum { + + + GRIB("grib"),GRIB2("grib2");; + + private String value; + + WeatherFileSuffixEnum(String value) { + this.value = value; + } + + public String getValue(){ + return this.value; + } + +} diff --git a/jeecg-boot-base-core/src/main/java/org/jeecg/common/constant/enums/WeatherModelEnum.java b/jeecg-boot-base-core/src/main/java/org/jeecg/common/constant/enums/WeatherModelEnum.java new file mode 100644 index 0000000..eb13f54 --- /dev/null +++ b/jeecg-boot-base-core/src/main/java/org/jeecg/common/constant/enums/WeatherModelEnum.java @@ -0,0 +1,26 @@ +package org.jeecg.common.constant.enums; + +/** + * 预测模型说明枚举 + */ +public enum WeatherModelEnum { + + /** + * 盘古模型 + */ + PANGU(1), + /** + * Graphcast + */ + GRAPHCAST(2); + + private Integer key; + + WeatherModelEnum(Integer key) { + this.key = key; + } + + public Integer getKey(){ + return this.key; + } +} diff --git a/jeecg-boot-base-core/src/main/java/org/jeecg/common/constant/enums/WeatherTaskStatusEnum.java b/jeecg-boot-base-core/src/main/java/org/jeecg/common/constant/enums/WeatherTaskStatusEnum.java new file mode 100644 index 0000000..0948617 --- /dev/null +++ b/jeecg-boot-base-core/src/main/java/org/jeecg/common/constant/enums/WeatherTaskStatusEnum.java @@ -0,0 +1,30 @@ +package org.jeecg.common.constant.enums; + +/** + * 预测任务状态说明枚举 + */ +public enum WeatherTaskStatusEnum { + + /** + * 未开始 + */ + NOT_STARTED(0), + /** + * 未开始 + */ + IN_OPERATION(1), + /** + * 已完成 + */ + COMPLETED(2); + + private Integer key; + + WeatherTaskStatusEnum(Integer key) { + this.key = key; + } + + public Integer getKey(){ + return this.key; + } +} diff --git a/jeecg-boot-base-core/src/main/java/org/jeecg/common/constant/enums/WeatherTypeEnum.java b/jeecg-boot-base-core/src/main/java/org/jeecg/common/constant/enums/WeatherTypeEnum.java new file mode 100644 index 0000000..0d4b8e7 --- /dev/null +++ b/jeecg-boot-base-core/src/main/java/org/jeecg/common/constant/enums/WeatherTypeEnum.java @@ -0,0 +1,32 @@ +package org.jeecg.common.constant.enums; + +/** + * 文件类型说明枚举 + */ +public enum WeatherTypeEnum { + + + TEMPERATURE(0, "panguweather_"), + PRESSURE(1, "PRESSURE"), + HUMIDITY(2, "HUMIDITY"), + WIND(3, "WIND"), + PRECIPITATION(4, "PRECIPITATION"); + + private Integer key; + + private String value; + + WeatherTypeEnum(Integer key, String value) { + this.key = key; + this.value = value; + } + + public Integer getKey(){ + return this.key; + } + + public String getValue(){ + return this.value; + } + +} diff --git a/jeecg-boot-base-core/src/main/java/org/jeecg/common/properties/SystemStorageProperties.java b/jeecg-boot-base-core/src/main/java/org/jeecg/common/properties/SystemStorageProperties.java new file mode 100644 index 0000000..ab9448d --- /dev/null +++ b/jeecg-boot-base-core/src/main/java/org/jeecg/common/properties/SystemStorageProperties.java @@ -0,0 +1,31 @@ +package org.jeecg.common.properties; + +import lombok.Data; +import org.springframework.boot.context.properties.ConfigurationProperties; +import org.springframework.stereotype.Component; + +@Data +@Component +@ConfigurationProperties(prefix = "filesystem") +public class SystemStorageProperties { + + /** + * 系统存储根路径 + */ + private String rootPath; + + /** + * 盘古模型预测数据存储路径 + */ + private String pangu; + + /** + * graphcast模型预测数据存储路径 + */ + private String graphcast; + + /** + * 再分析数据存储路径 + */ + private String reAnalysis; +} diff --git a/jeecg-boot-base-core/src/main/java/org/jeecg/common/system/base/entity/JeecgEntity.java b/jeecg-boot-base-core/src/main/java/org/jeecg/common/system/base/entity/BaseEntity.java similarity index 82% rename from jeecg-boot-base-core/src/main/java/org/jeecg/common/system/base/entity/JeecgEntity.java rename to jeecg-boot-base-core/src/main/java/org/jeecg/common/system/base/entity/BaseEntity.java index 4d49cf7..ea4e48b 100644 --- a/jeecg-boot-base-core/src/main/java/org/jeecg/common/system/base/entity/JeecgEntity.java +++ b/jeecg-boot-base-core/src/main/java/org/jeecg/common/system/base/entity/BaseEntity.java @@ -3,6 +3,10 @@ package org.jeecg.common.system.base.entity; import java.io.Serializable; import io.swagger.v3.oas.annotations.media.Schema; +import jakarta.validation.constraints.NotNull; +import jakarta.validation.constraints.Null; +import org.jeecg.common.validgroup.InsertGroup; +import org.jeecg.common.validgroup.UpdateGroup; import org.jeecgframework.poi.excel.annotation.Excel; import org.springframework.format.annotation.DateTimeFormat; @@ -23,12 +27,14 @@ import lombok.experimental.Accessors; @Data @EqualsAndHashCode(callSuper = false) @Accessors(chain = true) -public class JeecgEntity implements Serializable { +public class BaseEntity implements Serializable { private static final long serialVersionUID = 1L; /** * ID */ + @Null(message = "ID必须为空",groups = { InsertGroup.class}) + @NotNull(message = "ID不能为空",groups = { UpdateGroup.class}) @TableId(type = IdType.ASSIGN_ID) @Schema(description = "ID") private java.lang.String id; diff --git a/jeecg-boot-base-core/src/main/java/org/jeecg/common/system/base/service/impl/JeecgServiceImpl.java b/jeecg-boot-base-core/src/main/java/org/jeecg/common/system/base/service/impl/JeecgServiceImpl.java index f19ba84..e769f6a 100644 --- a/jeecg-boot-base-core/src/main/java/org/jeecg/common/system/base/service/impl/JeecgServiceImpl.java +++ b/jeecg-boot-base-core/src/main/java/org/jeecg/common/system/base/service/impl/JeecgServiceImpl.java @@ -1,6 +1,6 @@ package org.jeecg.common.system.base.service.impl; -import org.jeecg.common.system.base.entity.JeecgEntity; +import org.jeecg.common.system.base.entity.BaseEntity; import org.jeecg.common.system.base.service.JeecgService; import com.baomidou.mybatisplus.core.mapper.BaseMapper; @@ -14,6 +14,6 @@ import lombok.extern.slf4j.Slf4j; * @Version: 1.0 */ @Slf4j -public class JeecgServiceImpl, T extends JeecgEntity> extends ServiceImpl implements JeecgService { +public class JeecgServiceImpl, T extends BaseEntity> extends ServiceImpl implements JeecgService { } diff --git a/jeecg-boot-base-core/src/main/java/org/jeecg/common/system/query/PageRequest.java b/jeecg-boot-base-core/src/main/java/org/jeecg/common/system/query/PageRequest.java new file mode 100644 index 0000000..f6a0b40 --- /dev/null +++ b/jeecg-boot-base-core/src/main/java/org/jeecg/common/system/query/PageRequest.java @@ -0,0 +1,67 @@ +package org.jeecg.common.system.query; + +import cn.hutool.core.util.StrUtil; + +public class PageRequest { + + /** 当前记录起始索引 */ + private Integer pageNum; + + /** 每页显示记录数 */ + private Integer pageSize; + + /** 排序列 */ + private String orderByColumn; + + /** 排序的方向desc或者asc */ + private String isAsc = "asc"; + + public PageRequest() { + this.pageNum = 1; + this.pageSize = 10; + } + + public Integer getPageNum() { + return pageNum; + } + + public void setPageNum(Integer pageNum) { + this.pageNum = pageNum; + } + + public Integer getPageSize() { + return pageSize; + } + + public void setPageSize(Integer pageSize) { + this.pageSize = pageSize; + } + + public String getOrderByColumn() { + return orderByColumn; + } + + public void setOrderByColumn(String orderByColumn) { + this.orderByColumn = orderByColumn; + } + + public String getIsAsc() { + return isAsc; + } + + public void setIsAsc(String isAsc) { + if (StrUtil.isNotEmpty(isAsc)) + { + // 兼容前端排序类型 + if ("ascending".equals(isAsc)) + { + isAsc = "asc"; + } + else if ("descending".equals(isAsc)) + { + isAsc = "desc"; + } + this.isAsc = isAsc; + } + } +} diff --git a/jeecg-boot-base-core/src/main/java/org/jeecg/common/util/NcUtil.java b/jeecg-boot-base-core/src/main/java/org/jeecg/common/util/NcUtil.java new file mode 100644 index 0000000..2b6a392 --- /dev/null +++ b/jeecg-boot-base-core/src/main/java/org/jeecg/common/util/NcUtil.java @@ -0,0 +1,254 @@ +package org.jeecg.common.util; + +import ucar.ma2.Array; +import ucar.ma2.ArrayDouble; +import ucar.ma2.DataType; +import ucar.ma2.Index; +import ucar.nc2.Attribute; +import ucar.nc2.NetcdfFile; +import ucar.nc2.NetcdfFileWriter; +import ucar.nc2.Variable; +import org.slf4j.Logger; +import org.slf4j.LoggerFactory; + +import java.io.File; +import java.io.IOException; +import java.util.ArrayList; +import java.util.List; +import java.util.Objects; + +public final class NcUtil { + private static final Logger logger = LoggerFactory.getLogger(NcUtil.class); + private static final List SPECIAL_VARS = List.of("CO", "ASIJ"); + private static final double ROUNDING_FACTOR = 1000d; + + private NcUtil() { + throw new IllegalStateException("Utility class"); + } + + /** + * 读取三维数据,如果为四维数据,层级固定读取第一层数据,降为三维数据 + */ + public static List>> getNCByName(NetcdfFile ncfile, String name, int layer) { + Objects.requireNonNull(ncfile, "NetcdfFile cannot be null"); + Objects.requireNonNull(name, "Variable name cannot be null"); + + try { + Variable variable = ncfile.findVariable(name); + Array data = variable.read(); + int[] shape = data.getShape(); + Index index = data.getIndex(); + + List>> resultAll = new ArrayList<>(shape[0]); + + if (shape.length == 3) { + process3DData(data, index, shape, name, resultAll); + } else { + process4DData(data, index, shape, name, layer, resultAll); + } + + return resultAll; + } catch (IOException e) { + logger.error("Error reading variable {} from NetCDF file", name, e); + throw new RuntimeException("Failed to read NetCDF data", e); + } + } + + /** + * 获取一维NC数据 + */ + public static List getNCList(NetcdfFile ncFile, String name) { + Objects.requireNonNull(ncFile, "NetcdfFile cannot be null"); + Objects.requireNonNull(name, "Variable name cannot be null"); + + try { + Variable variable = ncFile.findVariable(name); + Array data = variable.read(); + int[] shape = data.getShape(); + Index index = data.getIndex(); + + List resultAll = new ArrayList<>(shape[0]); + for (int k = 0; k < shape[0]; k++) { + resultAll.add(processValue(data.getDouble(index.set(k)), name)); + } + return resultAll; + } catch (IOException e) { + logger.error("Error reading variable {} from NetCDF file", name, e); + throw new RuntimeException("Failed to read NetCDF data", e); + } + } + + private static void process3DData(Array data, Index index, int[] shape, String name, + List>> resultAll) { + for (int i = 0; i < shape[0]; i++) { + List> resultPiece = new ArrayList<>(shape[1]); + for (int j = 0; j < shape[1]; j++) { + List strings = new ArrayList<>(shape[2]); + for (int k = 0; k < shape[2]; k++) { + strings.add(processValue(data.getDouble(index.set(i, j, k)), name)); + } + resultPiece.add(strings); + } + resultAll.add(resultPiece); + } + } + + private static void process4DData(Array data, Index index, int[] shape, String name, + int layer, List>> resultAll) { + for (int i = 0; i < shape[0]; i++) { + List> resultPiece = new ArrayList<>(shape[2]); + for (int j = 0; j < shape[2]; j++) { + List strings = new ArrayList<>(shape[3]); + for (int k = 0; k < shape[3]; k++) { + strings.add(processValue(data.getDouble(index.set(i, layer, j, k)), name)); + } + resultPiece.add(strings); + } + resultAll.add(resultPiece); + } + } + + /** + * 特殊处理,最多读取24小时,14层数据四维数据 + */ + public static List>>> getNCByName(NetcdfFile ncFile, String name) { + return getNCDataWithFullLayers(ncFile, name, false); + } + + /** + * 完整读取所有四维数据 + */ + public static List>>> getNCAllTimeByName(NetcdfFile ncFile, String name) { + return getNCDataWithFullLayers(ncFile, name, true); + } + + private static List>>> getNCDataWithFullLayers(NetcdfFile ncFile, + String name, + boolean allTime) { + Objects.requireNonNull(ncFile, "NetcdfFile cannot be null"); + Objects.requireNonNull(name, "Variable name cannot be null"); + + try { + Variable variable = ncFile.findVariable(name); + Array data = variable.read(); + int[] shape = data.getShape(); + Index index = data.getIndex(); + + List>>> resultAll = new ArrayList<>(shape[0]); + + for (int i = 0; i < shape[0]; i++) { + List>> resultLayer = new ArrayList<>(shape[1]); + for (int l = 0; l < shape[1]; l++) { + List> resultPiece = new ArrayList<>(shape[2]); + for (int j = 0; j < shape[2]; j++) { + List strings = new ArrayList<>(shape[3]); + for (int k = 0; k < shape[3]; k++) { + strings.add(processValue(data.getDouble(index.set(i, l, j, k)), name)); + } + resultPiece.add(strings); + } + resultLayer.add(resultPiece); + } + resultAll.add(resultLayer); + } + + return resultAll; + } catch (IOException e) { + logger.error("Error reading variable {} from NetCDF file", name, e); + throw new RuntimeException("Failed to read NetCDF data", e); + } + } + + /** + * 获取NC文件维度信息 + */ + public static int[] getShapeByName(NetcdfFile ncfile, String name) { + Objects.requireNonNull(ncfile, "NetcdfFile cannot be null"); + Objects.requireNonNull(name, "Variable name cannot be null"); + + try { + Variable variable = ncfile.findVariable(name); + Array data = variable.read(); + return data.getShape(); + } catch (IOException e) { + logger.error("Error getting shape for variable {} from NetCDF file", name, e); + throw new RuntimeException("Failed to get NetCDF shape", e); + } + } + + /** + * 生成NC文件,并支持持续写入文件 + */ + public static void genNcFile(List>>> dataList, + String newNcFilePath, + String variableName) { + Objects.requireNonNull(dataList, "Data list cannot be null"); + Objects.requireNonNull(newNcFilePath, "File path cannot be null"); + Objects.requireNonNull(variableName, "Variable name cannot be null"); + + try { + File file = new File(newNcFilePath); + boolean fileExists = file.exists(); + + // 数据维度 + int tstepNum = dataList.size(); + int layNum = dataList.get(0).size(); + int rowNum = dataList.get(0).get(0).size(); + int colNum = dataList.get(0).get(0).get(0).size(); + + NetcdfFileWriter ncWriter = fileExists ? + NetcdfFileWriter.openExisting(newNcFilePath) : + NetcdfFileWriter.createNew(NetcdfFileWriter.Version.netcdf3, newNcFilePath); + + if (fileExists) { + ncWriter.setRedefineMode(true); + } else { + // 定义维度 + ncWriter.addDimension(null, "TSTEP", tstepNum); + ncWriter.addDimension(null, "LAY", layNum); + ncWriter.addDimension(null, "ROW", rowNum); + ncWriter.addDimension(null, "COL", colNum); + ncWriter.addDimension(null, "LAYER", 1); + } + + Variable dataVar = ncWriter.addVariable(null, variableName, DataType.DOUBLE, + variableName.contains("AERDEP") ? "TSTEP LAYER ROW COL" : "TSTEP LAY ROW COL"); + + // 关联维度到变量 + ncWriter.addVariableAttribute(dataVar, new Attribute("units", "none")); + ncWriter.addVariableAttribute(dataVar, new Attribute("long_name", variableName)); + + if (fileExists) { + ncWriter.setRedefineMode(false); + } else { + ncWriter.create(); + } + + // 将数据转换为NetCDF数组 + ArrayDouble.D4 dataArray = new ArrayDouble.D4(tstepNum, layNum, rowNum, colNum); + for (int i = 0; i < tstepNum; i++) { + List>> layData = dataList.get(i); + for (int j = 0; j < layNum; j++) { + List> rowData = layData.get(j); + for (int r = 0; r < rowNum; r++) { + List colData = rowData.get(r); + for (int c = 0; c < colNum; c++) { + dataArray.set(dataArray.getIndex().set(i, j, r, c), colData.get(c)); + } + } + } + } + + ncWriter.write(dataVar, dataArray); + ncWriter.close(); + } catch (Exception e) { + logger.error("Error generating NetCDF file {}", newNcFilePath, e); + throw new RuntimeException("Failed to generate NetCDF file", e); + } + } + + private static double processValue(double value, String name) { + return SPECIAL_VARS.contains(name) ? value : + Math.ceil(value * ROUNDING_FACTOR) / ROUNDING_FACTOR; + } +} \ No newline at end of file diff --git a/jeecg-boot-base-core/src/main/java/org/jeecg/common/validgroup/InsertGroup.java b/jeecg-boot-base-core/src/main/java/org/jeecg/common/validgroup/InsertGroup.java new file mode 100644 index 0000000..c6b3f73 --- /dev/null +++ b/jeecg-boot-base-core/src/main/java/org/jeecg/common/validgroup/InsertGroup.java @@ -0,0 +1,7 @@ +package org.jeecg.common.validgroup; + +/** + * 新增验证组 + */ +public interface InsertGroup { +} diff --git a/jeecg-boot-base-core/src/main/java/org/jeecg/common/validgroup/UpdateGroup.java b/jeecg-boot-base-core/src/main/java/org/jeecg/common/validgroup/UpdateGroup.java new file mode 100644 index 0000000..9be3f4c --- /dev/null +++ b/jeecg-boot-base-core/src/main/java/org/jeecg/common/validgroup/UpdateGroup.java @@ -0,0 +1,4 @@ +package org.jeecg.common.validgroup; + +public interface UpdateGroup { +} diff --git a/jeecg-boot-base-core/src/main/java/org/jeecg/config/security/JeecgAuthenticationConvert.java b/jeecg-boot-base-core/src/main/java/org/jeecg/config/security/JeecgAuthenticationConvert.java index 321f215..31e6445 100644 --- a/jeecg-boot-base-core/src/main/java/org/jeecg/config/security/JeecgAuthenticationConvert.java +++ b/jeecg-boot-base-core/src/main/java/org/jeecg/config/security/JeecgAuthenticationConvert.java @@ -3,6 +3,7 @@ package org.jeecg.config.security; import org.jeecg.common.api.CommonAPI; import org.jeecg.common.system.vo.LoginUser; import org.springframework.beans.factory.annotation.Autowired; +import org.springframework.beans.factory.annotation.Qualifier; import org.springframework.context.annotation.Lazy; import org.springframework.core.convert.converter.Converter; import org.springframework.security.authentication.AbstractAuthenticationToken; diff --git a/jeecg-boot-base-core/src/main/java/org/jeecg/modules/base/entity/WeatherData.java b/jeecg-boot-base-core/src/main/java/org/jeecg/modules/base/entity/WeatherData.java new file mode 100644 index 0000000..7d30ad4 --- /dev/null +++ b/jeecg-boot-base-core/src/main/java/org/jeecg/modules/base/entity/WeatherData.java @@ -0,0 +1,99 @@ +package org.jeecg.modules.base.entity; + +import com.baomidou.mybatisplus.annotation.IdType; +import com.baomidou.mybatisplus.annotation.TableField; +import com.baomidou.mybatisplus.annotation.TableId; +import com.baomidou.mybatisplus.annotation.TableName; +import com.fasterxml.jackson.annotation.JsonFormat; +import io.swagger.v3.oas.annotations.media.Schema; +import lombok.Data; +import java.time.LocalDateTime; +import java.util.Date; + +/** + * 气象数据文件表 + */ +@Data +@TableName("stas_weather_data") +public class WeatherData { + + /** + * ID + */ + @TableId(type = IdType.ASSIGN_ID) + @Schema(description = "ID") + private String id; + + /** + * 文件名称 + */ + @TableField(value = "file_name") + private String fileName; + + /** + * 文件大小 + */ + @TableField(value = "file_size") + private Double fileSize; + + /** + * 文件类型 + */ + @TableField(value = "file_ext") + private String fileExt; + + /** + * 气象数据开始时间 + */ + @TableField(value = "data_start_time") + private LocalDateTime dataStartTime; + + /** + * 气象数据结束时间 + */ + @TableField(value = "data_end_time") + private LocalDateTime dataEndTime; + + /** + * 数据来源(1-盘古模型,2-graphcast,3-再分析数据) + */ + @TableField(value = "data_source") + private Integer dataSource; + + /** + * 文件存储路径 + */ + @TableField(value = "file_path") + private String filePath; + + /** + * 创建人 + */ + @TableField(value = "create_by") + private String createBy; + + /** + * 创建时间 + */ + @JsonFormat(timezone = "GMT+8", pattern = "yyyy-MM-dd HH:mm:ss") + @TableField(value = "create_time") + private Date createTime; + + /** + * 文件MD5值 + */ + @TableField(value = "md5_value") + private String md5Value; + + /** + * 总分片数 + */ + @TableField(value = "share_total") + private Integer shareTotal; + + /** + * 分片索引 + */ + @TableField(value = "share_index") + private Integer shareIndex; +} \ No newline at end of file diff --git a/jeecg-boot-base-core/src/main/java/org/jeecg/modules/base/entity/WeatherTask.java b/jeecg-boot-base-core/src/main/java/org/jeecg/modules/base/entity/WeatherTask.java new file mode 100644 index 0000000..aec56dc --- /dev/null +++ b/jeecg-boot-base-core/src/main/java/org/jeecg/modules/base/entity/WeatherTask.java @@ -0,0 +1,85 @@ +package org.jeecg.modules.base.entity; + +import com.baomidou.mybatisplus.annotation.TableField; +import com.baomidou.mybatisplus.annotation.TableName; +import com.fasterxml.jackson.annotation.JsonFormat; +import jakarta.validation.constraints.NotBlank; +import jakarta.validation.constraints.NotNull; +import jakarta.validation.constraints.Null; +import lombok.Data; +import org.jeecg.common.system.base.entity.BaseEntity; +import org.jeecg.common.validgroup.InsertGroup; +import org.jeecg.common.validgroup.UpdateGroup; +import java.time.LocalDate; + +/** + * 天气预测任务表 + */ +@Data +@TableName("stas_weather_task") +public class WeatherTask extends BaseEntity { + + /** + * 任务名称 + */ + @NotBlank(message = "任务名称不能为空",groups = {InsertGroup.class, UpdateGroup.class}) + @TableField(value = "task_name") + private String taskName; + + /** + * 任务状态(0-未开始,1-运行中,2-已完成) + */ + @Null(message = "任务状态必须为空",groups = {InsertGroup.class, UpdateGroup.class}) + @TableField(value = "task_status") + private Integer taskStatus; + + /** + * 耗时(小时),默认0 + */ + @Null(message = "耗时参数必须为空",groups = {InsertGroup.class, UpdateGroup.class}) + @TableField(value = "time_consuming") + private Integer timeConsuming; + + /** + * 预测模型(1-盘古、2-Graphcast) + */ + @NotNull(message = "预测模型不能为空",groups = {InsertGroup.class, UpdateGroup.class}) + @TableField(value = "prediction_model") + private Integer predictionModel; + + /** + * 开始预测日期 + */ + @NotNull(message = "预测开始日期不能为空",groups = {InsertGroup.class, UpdateGroup.class}) + @TableField(value = "start_date") + @JsonFormat(pattern = "yyyy-MM-dd") + private LocalDate startDate; + + /** + * 开始预测时间 + */ + @NotNull(message = "预测开始时间不能为空",groups = {InsertGroup.class, UpdateGroup.class}) + @TableField(value = "start_time") + private Integer startTime; + + /** + * 预测时长 + */ + @NotNull(message = "预测时长不能为空",groups = {InsertGroup.class, UpdateGroup.class}) + @TableField(value = "lead_time") + private Integer leadTime; + + /** + * 数据来源(1-cds,2-本地文件) + */ + @NotNull(message = "数据来源不能为空",groups = {InsertGroup.class, UpdateGroup.class}) + @TableField(value = "data_sources") + private Integer dataSources; + + /** + * 如果data_sources为2,则存储本地文件路径 + */ + @TableField(value = "input_file") + private String inputFile; + +} \ No newline at end of file diff --git a/jeecg-boot-base-core/src/main/java/org/jeecg/modules/base/entity/WeatherTaskLog.java b/jeecg-boot-base-core/src/main/java/org/jeecg/modules/base/entity/WeatherTaskLog.java new file mode 100644 index 0000000..8f38d86 --- /dev/null +++ b/jeecg-boot-base-core/src/main/java/org/jeecg/modules/base/entity/WeatherTaskLog.java @@ -0,0 +1,44 @@ +package org.jeecg.modules.base.entity; + +import com.baomidou.mybatisplus.annotation.IdType; +import com.baomidou.mybatisplus.annotation.TableField; +import com.baomidou.mybatisplus.annotation.TableId; +import com.baomidou.mybatisplus.annotation.TableName; +import com.fasterxml.jackson.annotation.JsonFormat; +import io.swagger.v3.oas.annotations.media.Schema; +import lombok.Data; +import java.time.LocalDateTime; + +/** + * 天气预测任务日志表 + */ +@Data +@TableName("stas_weather_task_log") +public class WeatherTaskLog{ + + /** + * ID + */ + @TableId(type = IdType.ASSIGN_ID) + @Schema(description = "ID") + private String id; + + /** + * 任务表主键 + */ + @TableField(value = "task_id") + private String taskId; + + /** + * 任务运行过程日志 + */ + @TableField(value = "log_content") + private String logContent; + + /** + * 创建时间 + */ + @JsonFormat(timezone = "GMT+8", pattern = "yyyy-MM-dd HH:mm:ss") + private LocalDateTime createTime; + +} \ No newline at end of file diff --git a/jeecg-boot-base-core/src/main/java/org/jeecg/modules/base/mapper/WeatherDataMapper.java b/jeecg-boot-base-core/src/main/java/org/jeecg/modules/base/mapper/WeatherDataMapper.java new file mode 100644 index 0000000..745d068 --- /dev/null +++ b/jeecg-boot-base-core/src/main/java/org/jeecg/modules/base/mapper/WeatherDataMapper.java @@ -0,0 +1,8 @@ +package org.jeecg.modules.base.mapper; + +import com.baomidou.mybatisplus.core.mapper.BaseMapper; +import org.jeecg.modules.base.entity.WeatherData; + +public interface WeatherDataMapper extends BaseMapper { + +} diff --git a/jeecg-boot-base-core/src/main/java/org/jeecg/modules/base/mapper/WeatherTaskLogMapper.java b/jeecg-boot-base-core/src/main/java/org/jeecg/modules/base/mapper/WeatherTaskLogMapper.java new file mode 100644 index 0000000..11f39a7 --- /dev/null +++ b/jeecg-boot-base-core/src/main/java/org/jeecg/modules/base/mapper/WeatherTaskLogMapper.java @@ -0,0 +1,8 @@ +package org.jeecg.modules.base.mapper; + +import com.baomidou.mybatisplus.core.mapper.BaseMapper; +import org.jeecg.modules.base.entity.WeatherTaskLog; + +public interface WeatherTaskLogMapper extends BaseMapper { + +} diff --git a/jeecg-boot-base-core/src/main/java/org/jeecg/modules/base/mapper/WeatherTaskMapper.java b/jeecg-boot-base-core/src/main/java/org/jeecg/modules/base/mapper/WeatherTaskMapper.java new file mode 100644 index 0000000..d833d9e --- /dev/null +++ b/jeecg-boot-base-core/src/main/java/org/jeecg/modules/base/mapper/WeatherTaskMapper.java @@ -0,0 +1,8 @@ +package org.jeecg.modules.base.mapper; + +import com.baomidou.mybatisplus.core.mapper.BaseMapper; +import org.jeecg.modules.base.entity.WeatherTask; + +public interface WeatherTaskMapper extends BaseMapper { + +} diff --git a/jeecg-boot-base-core/src/main/java/org/jeecg/modules/base/mapper/xml/WeatherDataMapper.xml b/jeecg-boot-base-core/src/main/java/org/jeecg/modules/base/mapper/xml/WeatherDataMapper.xml new file mode 100644 index 0000000..466129a --- /dev/null +++ b/jeecg-boot-base-core/src/main/java/org/jeecg/modules/base/mapper/xml/WeatherDataMapper.xml @@ -0,0 +1,5 @@ + + + + + \ No newline at end of file diff --git a/jeecg-boot-base-core/src/main/java/org/jeecg/modules/base/mapper/xml/WeatherTaskLogMapper.xml b/jeecg-boot-base-core/src/main/java/org/jeecg/modules/base/mapper/xml/WeatherTaskLogMapper.xml new file mode 100644 index 0000000..32501d0 --- /dev/null +++ b/jeecg-boot-base-core/src/main/java/org/jeecg/modules/base/mapper/xml/WeatherTaskLogMapper.xml @@ -0,0 +1,5 @@ + + + + + \ No newline at end of file diff --git a/jeecg-boot-base-core/src/main/java/org/jeecg/modules/base/mapper/xml/WeatherTaskMapper.xml b/jeecg-boot-base-core/src/main/java/org/jeecg/modules/base/mapper/xml/WeatherTaskMapper.xml new file mode 100644 index 0000000..d4dff02 --- /dev/null +++ b/jeecg-boot-base-core/src/main/java/org/jeecg/modules/base/mapper/xml/WeatherTaskMapper.xml @@ -0,0 +1,5 @@ + + + + + \ No newline at end of file diff --git a/jeecg-boot-base-core/src/main/java/org/jeecg/modules/base/service/BaseCommonService.java b/jeecg-boot-base-core/src/main/java/org/jeecg/modules/base/service/BaseCommonService.java index 6c1de28..f0eeafb 100644 --- a/jeecg-boot-base-core/src/main/java/org/jeecg/modules/base/service/BaseCommonService.java +++ b/jeecg-boot-base-core/src/main/java/org/jeecg/modules/base/service/BaseCommonService.java @@ -3,10 +3,6 @@ package org.jeecg.modules.base.service; import org.jeecg.common.api.dto.LogDTO; import org.jeecg.common.system.vo.LoginUser; -/** - * common接口 - * @author: jeecg-boot - */ public interface BaseCommonService { /** diff --git a/jeecg-boot-base-core/src/main/java/org/jeecg/modules/base/service/impl/BaseCommonServiceImpl.java b/jeecg-boot-base-core/src/main/java/org/jeecg/modules/base/service/impl/BaseCommonServiceImpl.java index 9b2e0e6..3ff443f 100644 --- a/jeecg-boot-base-core/src/main/java/org/jeecg/modules/base/service/impl/BaseCommonServiceImpl.java +++ b/jeecg-boot-base-core/src/main/java/org/jeecg/modules/base/service/impl/BaseCommonServiceImpl.java @@ -18,10 +18,6 @@ import jakarta.annotation.Resource; import jakarta.servlet.http.HttpServletRequest; import java.util.*; -/** - * @Description: common实现类 - * @author: jeecg-boot - */ @Service @Slf4j public class BaseCommonServiceImpl implements BaseCommonService { diff --git a/jeecg-module-system/jeecg-system-api/jeecg-system-cloud-api/src/main/java/org/jeecg/common/system/api/ISysBaseAPI.java b/jeecg-module-system/jeecg-system-api/jeecg-system-cloud-api/src/main/java/org/jeecg/common/system/api/ISysBaseAPI.java index 94c6ec1..f249899 100644 --- a/jeecg-module-system/jeecg-system-api/jeecg-system-cloud-api/src/main/java/org/jeecg/common/system/api/ISysBaseAPI.java +++ b/jeecg-module-system/jeecg-system-api/jeecg-system-cloud-api/src/main/java/org/jeecg/common/system/api/ISysBaseAPI.java @@ -10,6 +10,7 @@ import org.jeecg.common.constant.enums.EmailTemplateEnum; import org.jeecg.common.desensitization.annotation.SensitiveDecode; import org.jeecg.common.system.api.factory.SysBaseAPIFallbackFactory; import org.jeecg.common.system.vo.*; +import org.jeecg.config.FeignConfig; import org.springframework.boot.autoconfigure.condition.ConditionalOnMissingClass; import org.springframework.cloud.openfeign.FeignClient; import org.springframework.stereotype.Component; @@ -29,7 +30,7 @@ import java.util.Set; * @author: jeecg-boot */ @Component -@FeignClient(contextId = "sysBaseRemoteApi", value = ServiceNameConstants.SERVICE_SYSTEM, fallbackFactory = SysBaseAPIFallbackFactory.class) +@FeignClient(contextId = "sysBaseRemoteApi", value = ServiceNameConstants.SERVICE_SYSTEM, fallbackFactory = SysBaseAPIFallbackFactory.class,configuration = FeignConfig.class) @ConditionalOnMissingClass("org.jeecg.modules.system.service.impl.SysBaseApiImpl") public interface ISysBaseAPI extends CommonAPI { diff --git a/jeecg-module-system/jeecg-system-api/jeecg-system-cloud-api/src/main/java/org/jeecg/config/FeignConfig.java b/jeecg-module-system/jeecg-system-api/jeecg-system-cloud-api/src/main/java/org/jeecg/config/FeignConfig.java index 906b604..3e46323 100644 --- a/jeecg-module-system/jeecg-system-api/jeecg-system-cloud-api/src/main/java/org/jeecg/config/FeignConfig.java +++ b/jeecg-module-system/jeecg-system-api/jeecg-system-cloud-api/src/main/java/org/jeecg/config/FeignConfig.java @@ -1,180 +1,52 @@ -//package org.jeecg.config; -// -//import java.io.IOException; -//import java.util.ArrayList; -//import java.util.Arrays; -//import java.util.List; -//import java.util.SortedMap; -// -//import jakarta.servlet.http.HttpServletRequest; -// -//import org.jeecg.common.config.mqtoken.UserTokenContext; -//import org.jeecg.common.constant.CommonConstant; -//import org.jeecg.common.util.DateUtils; -//import org.jeecg.common.util.PathMatcherUtil; -//import org.jeecg.config.sign.interceptor.SignAuthConfiguration; -//import org.jeecg.config.sign.util.HttpUtils; -//import org.jeecg.config.sign.util.SignUtil; -//import org.springframework.beans.factory.ObjectFactory; -//import org.springframework.boot.autoconfigure.AutoConfigureBefore; -//import org.springframework.boot.autoconfigure.condition.ConditionalOnClass; -//import org.springframework.boot.autoconfigure.http.HttpMessageConverters; -//import org.springframework.cloud.openfeign.FeignAutoConfiguration; -//import org.springframework.cloud.openfeign.support.SpringDecoder; -//import org.springframework.cloud.openfeign.support.SpringEncoder; -//import org.springframework.context.annotation.Bean; -//import org.springframework.context.annotation.Configuration; -//import org.springframework.context.annotation.Primary; -//import org.springframework.context.annotation.Scope; -//import org.springframework.http.MediaType; -//import org.springframework.web.context.request.RequestContextHolder; -//import org.springframework.web.context.request.ServletRequestAttributes; -// -//import com.alibaba.fastjson.JSON; -//import com.alibaba.fastjson.serializer.SerializerFeature; -//import com.alibaba.fastjson.support.config.FastJsonConfig; -//import com.alibaba.fastjson.support.spring.FastJsonHttpMessageConverter; -//import com.alibaba.fastjson.support.springfox.SwaggerJsonSerializer; -// -//import feign.Feign; -//import feign.Logger; -//import feign.RequestInterceptor; -//import feign.codec.Decoder; -//import feign.codec.Encoder; -//import feign.form.spring.SpringFormEncoder; -//import lombok.extern.slf4j.Slf4j; -// -///** -// * @Description: FeignConfig -// * @author: JeecgBoot -// */ -//@ConditionalOnClass(Feign.class) -//@AutoConfigureBefore(FeignAutoConfiguration.class) -//@Slf4j -//@Configuration -//public class FeignConfig { -// +package org.jeecg.config; + +import feign.Feign; +import feign.RequestTemplate; +import jakarta.servlet.http.HttpServletRequest; +import org.apache.http.HttpHeaders; +import org.springframework.boot.autoconfigure.condition.ConditionalOnClass; +import org.springframework.boot.autoconfigure.condition.ConditionalOnMissingBean; +import org.springframework.context.annotation.Bean; +import org.springframework.context.annotation.Configuration; +import org.springframework.web.context.request.RequestContextHolder; +import org.springframework.web.context.request.ServletRequestAttributes; +import feign.Logger; +import feign.RequestInterceptor; +import lombok.extern.slf4j.Slf4j; + +@Slf4j +@Configuration +public class FeignConfig implements RequestInterceptor{ + + /** + * @param requestTemplate + */ + @Override + public void apply(RequestTemplate requestTemplate) { + ServletRequestAttributes attributes = (ServletRequestAttributes) RequestContextHolder.getRequestAttributes(); + HttpServletRequest request = attributes.getRequest(); + requestTemplate.header("Authorization", request.getHeader("Authorization")); + } + // /** // * 设置feign header参数 // * 【X_ACCESS_TOKEN】【X_SIGN】【X_TIMESTAMP】 // * @return // */ // @Bean +// @ConditionalOnMissingBean(RequestInterceptor.class) // public RequestInterceptor requestInterceptor() { -// return requestTemplate -> { +// return template -> { // ServletRequestAttributes attributes = (ServletRequestAttributes) RequestContextHolder.getRequestAttributes(); -// if (null != attributes) { +// if (attributes != null) { // HttpServletRequest request = attributes.getRequest(); // log.debug("Feign request: {}", request.getRequestURI()); // // 将token信息放入header中 -// String token = request.getHeader(CommonConstant.X_ACCESS_TOKEN); -// if(token==null || "".equals(token)){ -// token = request.getParameter("token"); -// } +// String token = request.getHeader(HttpHeaders.AUTHORIZATION); // log.info("Feign Login Request token: {}", token); -// requestTemplate.header(CommonConstant.X_ACCESS_TOKEN, token); -// }else{ -// //解决后台任务、MQ中调用feign接口,无会话token的问题 -// String token = UserTokenContext.getToken(); -// log.info("Feign No Login token: {}", token); -// requestTemplate.header(CommonConstant.X_ACCESS_TOKEN, token); +// template.header(HttpHeaders.AUTHORIZATION, token); // } -// -// //================================================================================================================ -// //针对特殊接口,进行加签验证 ——根据URL地址过滤请求 【字典表参数签名验证】 -// if (PathMatcherUtil.matches(Arrays.asList(SignAuthConfiguration.SIGN_URL_LIST),requestTemplate.path())) { -// try { -// log.info("============================ [begin] fegin api url ============================"); -// log.info(requestTemplate.path()); -// log.info(requestTemplate.method()); -// String queryLine = requestTemplate.queryLine(); -// String questionMark="?"; -// if(queryLine!=null && queryLine.startsWith(questionMark)){ -// queryLine = queryLine.substring(1); -// } -// log.info(queryLine); -// if(requestTemplate.body()!=null){ -// log.info(new String(requestTemplate.body())); -// } -// SortedMap allParams = HttpUtils.getAllParams(requestTemplate.path(),queryLine,requestTemplate.body(),requestTemplate.method()); -// String sign = SignUtil.getParamsSign(allParams); -// log.info(" Feign request params sign: {}",sign); -// log.info("============================ [end] fegin api url ============================"); -// requestTemplate.header(CommonConstant.X_SIGN, sign); -// requestTemplate.header(CommonConstant.X_TIMESTAMP, String.valueOf(System.currentTimeMillis())); -// } catch (IOException e) { -// e.printStackTrace(); -// } -// } -// //================================================================================================================ // }; // } -// -// -// -// /** -// * Feign 客户端的日志记录,默认级别为NONE -// * Logger.Level 的具体级别如下: -// * NONE:不记录任何信息 -// * BASIC:仅记录请求方法、URL以及响应状态码和执行时间 -// * HEADERS:除了记录 BASIC级别的信息外,还会记录请求和响应的头信息 -// * FULL:记录所有请求与响应的明细,包括头信息、请求体、元数据 -// */ -// @Bean -// Logger.Level feignLoggerLevel() { -// return Logger.Level.FULL; -// } -// -// /** -// * Feign支持文件上传 -// * @param messageConverters -// * @return -// */ -// @Bean -// @Primary -// @Scope("prototype") -// public Encoder multipartFormEncoder(ObjectFactory messageConverters) { -// return new SpringFormEncoder(new SpringEncoder(messageConverters)); -// } -// -// // update-begin--Author:sunjianlei Date:20210604 for: 给 Feign 添加 FastJson 的解析支持 ---------- -// /** -// * 给 Feign 添加 FastJson 的解析支持 -// */ -// @Bean -// public Encoder feignEncoder() { -// return new SpringEncoder(feignHttpMessageConverter()); -// } -// -// @Bean("apiFeignDecoder") -// public Decoder feignDecoder() { -// return new SpringDecoder(feignHttpMessageConverter()); -// } -// -// /** -// * 设置解码器为fastjson -// * -// * @return -// */ -// private ObjectFactory feignHttpMessageConverter() { -// final HttpMessageConverters httpMessageConverters = new HttpMessageConverters(this.getFastJsonConverter()); -// return () -> httpMessageConverters; -// } -// -// private FastJsonHttpMessageConverter getFastJsonConverter() { -// FastJsonHttpMessageConverter converter = new FastJsonHttpMessageConverter(); -// -// List supportedMediaTypes = new ArrayList<>(); -// MediaType mediaTypeJson = MediaType.valueOf(MediaType.APPLICATION_JSON_VALUE); -// supportedMediaTypes.add(mediaTypeJson); -// converter.setSupportedMediaTypes(supportedMediaTypes); -// FastJsonConfig config = new FastJsonConfig(); -// config.getSerializeConfig().put(JSON.class, new SwaggerJsonSerializer()); -// config.setSerializerFeatures(SerializerFeature.DisableCircularReferenceDetect); -// converter.setFastJsonConfig(config); -// -// return converter; -// } -// // update-end--Author:sunjianlei Date:20210604 for: 给 Feign 添加 FastJson 的解析支持 ---------- -// -//} + +} diff --git a/jeecg-module-system/jeecg-system-api/pom.xml b/jeecg-module-system/jeecg-system-api/pom.xml index 4d6a7cc..4c537be 100644 --- a/jeecg-module-system/jeecg-system-api/pom.xml +++ b/jeecg-module-system/jeecg-system-api/pom.xml @@ -21,6 +21,7 @@ org.jeecgframework.boot jeecg-boot-base-core + ${jeecgboot.version} \ No newline at end of file diff --git a/jeecg-module-system/jeecg-system-biz/pom.xml b/jeecg-module-system/jeecg-system-biz/pom.xml index 99d207f..cbc09c5 100644 --- a/jeecg-module-system/jeecg-system-biz/pom.xml +++ b/jeecg-module-system/jeecg-system-biz/pom.xml @@ -14,7 +14,7 @@ org.jeecgframework.boot jeecg-system-local-api - 3.8.1 + ${jeecgboot.version} org.hibernate diff --git a/jeecg-module-system/jeecg-system-biz/src/main/java/org/jeecg/modules/message/entity/SysMessage.java b/jeecg-module-system/jeecg-system-biz/src/main/java/org/jeecg/modules/message/entity/SysMessage.java index f3555e3..5bad5b2 100644 --- a/jeecg-module-system/jeecg-system-biz/src/main/java/org/jeecg/modules/message/entity/SysMessage.java +++ b/jeecg-module-system/jeecg-system-biz/src/main/java/org/jeecg/modules/message/entity/SysMessage.java @@ -1,13 +1,11 @@ package org.jeecg.modules.message.entity; import org.jeecg.common.aspect.annotation.Dict; -import org.jeecg.common.system.base.entity.JeecgEntity; +import org.jeecg.common.system.base.entity.BaseEntity; import org.jeecgframework.poi.excel.annotation.Excel; import org.springframework.format.annotation.DateTimeFormat; - import com.baomidou.mybatisplus.annotation.TableName; import com.fasterxml.jackson.annotation.JsonFormat; - import lombok.Data; import lombok.EqualsAndHashCode; import lombok.experimental.Accessors; @@ -22,7 +20,7 @@ import lombok.experimental.Accessors; @EqualsAndHashCode(callSuper = false) @Accessors(chain = true) @TableName("sys_sms") -public class SysMessage extends JeecgEntity { +public class SysMessage extends BaseEntity { /**推送内容*/ @Excel(name = "推送内容", width = 15) private java.lang.String esContent; diff --git a/jeecg-module-system/jeecg-system-biz/src/main/java/org/jeecg/modules/message/entity/SysMessageTemplate.java b/jeecg-module-system/jeecg-system-biz/src/main/java/org/jeecg/modules/message/entity/SysMessageTemplate.java index 1ea966e..0c98c81 100644 --- a/jeecg-module-system/jeecg-system-biz/src/main/java/org/jeecg/modules/message/entity/SysMessageTemplate.java +++ b/jeecg-module-system/jeecg-system-biz/src/main/java/org/jeecg/modules/message/entity/SysMessageTemplate.java @@ -1,6 +1,6 @@ package org.jeecg.modules.message.entity; -import org.jeecg.common.system.base.entity.JeecgEntity; +import org.jeecg.common.system.base.entity.BaseEntity; import org.jeecgframework.poi.excel.annotation.Excel; import com.baomidou.mybatisplus.annotation.TableName; @@ -19,7 +19,7 @@ import lombok.experimental.Accessors; @EqualsAndHashCode(callSuper = false) @Accessors(chain = true) @TableName("sys_sms_template") -public class SysMessageTemplate extends JeecgEntity{ +public class SysMessageTemplate extends BaseEntity{ /**模板CODE*/ @Excel(name = "模板CODE", width = 15) private java.lang.String templateCode; diff --git a/jeecg-module-system/jeecg-system-biz/src/main/java/org/jeecg/modules/oss/entity/OssFile.java b/jeecg-module-system/jeecg-system-biz/src/main/java/org/jeecg/modules/oss/entity/OssFile.java index ba4e073..bf8e7ee 100644 --- a/jeecg-module-system/jeecg-system-biz/src/main/java/org/jeecg/modules/oss/entity/OssFile.java +++ b/jeecg-module-system/jeecg-system-biz/src/main/java/org/jeecg/modules/oss/entity/OssFile.java @@ -4,7 +4,7 @@ import com.baomidou.mybatisplus.annotation.TableName; import lombok.Data; import lombok.EqualsAndHashCode; import lombok.experimental.Accessors; -import org.jeecg.common.system.base.entity.JeecgEntity; +import org.jeecg.common.system.base.entity.BaseEntity; import org.jeecgframework.poi.excel.annotation.Excel; /** @@ -15,7 +15,7 @@ import org.jeecgframework.poi.excel.annotation.Excel; @TableName("oss_file") @EqualsAndHashCode(callSuper = false) @Accessors(chain = true) -public class OssFile extends JeecgEntity { +public class OssFile extends BaseEntity { private static final long serialVersionUID = 1L; diff --git a/jeecg-module-weather/pom.xml b/jeecg-module-weather/pom.xml new file mode 100644 index 0000000..50892ba --- /dev/null +++ b/jeecg-module-weather/pom.xml @@ -0,0 +1,27 @@ + + + 4.0.0 + + org.jeecgframework.boot + jeecg-boot-parent + 3.8.1 + + + jeecg-module-weather + + + 17 + 17 + UTF-8 + + + + + org.jeecgframework.boot + jeecg-boot-base-core + ${jeecgboot.version} + + + \ No newline at end of file diff --git a/jeecg-module-weather/src/main/java/org/jeecg/controller/WeatherDataController.java b/jeecg-module-weather/src/main/java/org/jeecg/controller/WeatherDataController.java new file mode 100644 index 0000000..cb5c077 --- /dev/null +++ b/jeecg-module-weather/src/main/java/org/jeecg/controller/WeatherDataController.java @@ -0,0 +1,87 @@ +package org.jeecg.controller; + +import io.swagger.v3.oas.annotations.Operation; +import jakarta.validation.constraints.NotBlank; +import lombok.RequiredArgsConstructor; +import org.apache.commons.codec.digest.DigestUtils; +import org.jeecg.common.api.vo.Result; +import org.jeecg.common.aspect.annotation.AutoLog; +import org.jeecg.common.constant.enums.WeatherFileSuffixEnum; +import org.jeecg.service.WeatherDataService; +import org.jeecg.vo.FileExistVo; +import org.jeecg.vo.FileUploadResultVo; +import org.jeecg.vo.FileVo; +import org.jeecg.vo.WeatherResultVO; +import org.springframework.validation.annotation.Validated; +import org.springframework.web.bind.annotation.*; + +import java.io.FileInputStream; +import java.io.IOException; +import java.io.InputStream; +import java.time.LocalDateTime; +import java.util.List; + +@Validated +@RestController +@RequestMapping("weatherData") +@RequiredArgsConstructor +public class WeatherDataController { + + private final WeatherDataService weatherDataService; + + + @AutoLog(value = "验证文件是否存在") + @Operation(summary = "验证文件是否存在") + @GetMapping("verifyFileExist") + public FileExistVo verifyFileExist(@NotBlank(message = "文件MD5值不能为空") String fileMD5Value) { + FileExistVo fileExist = weatherDataService.verifyFileExist(fileMD5Value); + return fileExist; + } + + @AutoLog(value = "上传文件") + @Operation(summary = "上传文件") + @PostMapping("uploadFile") + public FileUploadResultVo uploadFile(FileVo fileVo){ + if (!fileVo.getFileExt().equals(WeatherFileSuffixEnum.GRIB.getValue()) && !fileVo.getFileExt().equals(WeatherFileSuffixEnum.GRIB2.getValue())){ + throw new RuntimeException("不支持当前上传的文件类型!"); + } + FileUploadResultVo resultVo = weatherDataService.uploadFile(fileVo); + return resultVo; + } + + /** + * 气象预测 + * @return + */ + @AutoLog(value = "气象预测-气象数据查询") + @Operation(summary = "气象预测-气象数据查询") + @GetMapping(value = "getWeatherData") + public Result getWeatherData(Integer type, + LocalDateTime startTime, + int hour) { + return Result.OK(weatherDataService.getWeatherData(type,startTime,hour)); + } + + @AutoLog(value = "删除气象数据") + @Operation(summary = "删除气象数据") + @DeleteMapping("delete") + public Result delete(@RequestBody List ids){ + weatherDataService.delete(ids); + return Result.OK(); + } + + public static String calculateMD5(String filePath) throws IOException { + try (InputStream is = new FileInputStream(filePath)) { + return DigestUtils.md5Hex(is); + } + } + + public static void main(String[] args) { + try { + String md5 = calculateMD5("F:\\工作\\五木\\放射性核素监测数据综合分析及氙本底源解析系统\\其他资料\\气象数据\\中国CRA40再分析数据\\CRA40\\20250523\\CRA40_AVO_2025052300_GLB_0P25_HOUR_V1_0_0.grib2"); + System.out.println("MD5: " + md5); + } catch (IOException e) { + e.printStackTrace(); + } + } +} diff --git a/jeecg-module-weather/src/main/java/org/jeecg/controller/WeatherTaskController.java b/jeecg-module-weather/src/main/java/org/jeecg/controller/WeatherTaskController.java new file mode 100644 index 0000000..92e76a5 --- /dev/null +++ b/jeecg-module-weather/src/main/java/org/jeecg/controller/WeatherTaskController.java @@ -0,0 +1,73 @@ +package org.jeecg.controller; + +import com.baomidou.mybatisplus.core.metadata.IPage; +import io.swagger.v3.oas.annotations.Operation; +import jakarta.validation.constraints.NotBlank; +import lombok.RequiredArgsConstructor; +import org.jeecg.common.api.vo.Result; +import org.jeecg.common.aspect.annotation.AutoLog; +import org.jeecg.common.system.query.PageRequest; +import org.jeecg.common.validgroup.InsertGroup; +import org.jeecg.common.validgroup.UpdateGroup; +import org.jeecg.modules.base.entity.WeatherTask; +import org.jeecg.service.WeatherTaskService; +import org.springframework.format.annotation.DateTimeFormat; +import org.springframework.validation.annotation.Validated; +import org.springframework.web.bind.annotation.*; +import java.time.LocalDate; +import java.util.HashMap; +import java.util.List; +import java.util.Map; + +@Validated +@RestController +@RequestMapping("weatherTask") +@RequiredArgsConstructor +public class WeatherTaskController { + + private final WeatherTaskService weatherTaskService; + + @AutoLog(value = "查询天气预测任务列表") + @Operation(summary = "查询天气预测任务列表") + @GetMapping(value = "page") + public Result page(PageRequest pageRequest, String taskName, Integer taskStatus, + @DateTimeFormat(iso = DateTimeFormat.ISO.DATE) LocalDate startDate, + @DateTimeFormat(iso = DateTimeFormat.ISO.DATE) LocalDate endDate) { + IPage page = weatherTaskService.page(pageRequest, taskName, taskStatus, startDate,endDate); + Map rspData = new HashMap<>(); + rspData.put("rows", page.getRecords()); + rspData.put("total", page.getTotal()); + return Result.OK(rspData); + } + + @AutoLog(value = "新增天气预测任务") + @Operation(summary = "新增天气预测任务") + @PostMapping("create") + public Result create(@RequestBody @Validated(value = InsertGroup.class) WeatherTask weatherTask){ + weatherTaskService.cteate(weatherTask); + return Result.OK(); + } + + @AutoLog(value = "修改天气预测任务") + @Operation(summary = "修改天气预测任务") + @PutMapping("update") + public Result update(@RequestBody @Validated(value = UpdateGroup.class) WeatherTask weatherTask){ + weatherTaskService.update(weatherTask); + return Result.OK(); + } + + @AutoLog(value = "删除天气预测任务") + @Operation(summary = "删除天气预测任务") + @DeleteMapping("delete") + public Result delete(@RequestBody List ids){ + weatherTaskService.delete(ids); + return Result.OK(); + } + + @AutoLog(value = "获取天气预测任务过程日志") + @Operation(summary = "获取天气预测任务过程日志") + @GetMapping("getTaskLog") + public Result getTaskLog(@NotBlank(message = "预测任务ID不能为空") String taskId){ + return Result.OK(weatherTaskService.getTaskLog(taskId)); + } +} diff --git a/jeecg-module-weather/src/main/java/org/jeecg/service/WeatherDataService.java b/jeecg-module-weather/src/main/java/org/jeecg/service/WeatherDataService.java new file mode 100644 index 0000000..a4efa45 --- /dev/null +++ b/jeecg-module-weather/src/main/java/org/jeecg/service/WeatherDataService.java @@ -0,0 +1,48 @@ +package org.jeecg.service; + +import com.baomidou.mybatisplus.core.metadata.IPage; +import org.jeecg.common.system.query.PageRequest; +import org.jeecg.modules.base.entity.WeatherData; +import org.jeecg.vo.FileExistVo; +import org.jeecg.vo.FileUploadResultVo; +import org.jeecg.vo.FileVo; +import org.jeecg.vo.WeatherResultVO; + +import java.time.LocalDateTime; +import java.util.List; + +public interface WeatherDataService { + + WeatherResultVO getWeatherData(Integer type, LocalDateTime startTime, int hour); + + /** + * 分页查询气象数据 + * @param pageRequest + * @param fileExt + * @param dataSource + * @param startTime + * @param endTime + * @return + */ + IPage page(PageRequest pageRequest,String fileExt,Integer dataSource,LocalDateTime startTime,LocalDateTime endTime); + + /** + * 验证文件是否存在 + * @param fileMD5Value 文件唯一MD5值 + * @return + */ + FileExistVo verifyFileExist(String fileMD5Value); + + /** + * 上传文件 + * @param fileVo + */ + FileUploadResultVo uploadFile(FileVo fileVo); + + /** + * 删除气象数据 + * @param ids + */ + void delete(List ids); + +} diff --git a/jeecg-module-weather/src/main/java/org/jeecg/service/WeatherTaskService.java b/jeecg-module-weather/src/main/java/org/jeecg/service/WeatherTaskService.java new file mode 100644 index 0000000..139e815 --- /dev/null +++ b/jeecg-module-weather/src/main/java/org/jeecg/service/WeatherTaskService.java @@ -0,0 +1,58 @@ +package org.jeecg.service; + +import com.baomidou.mybatisplus.core.metadata.IPage; +import com.baomidou.mybatisplus.extension.service.IService; +import org.jeecg.common.system.query.PageRequest; +import org.jeecg.modules.base.entity.WeatherTask; +import org.jeecg.modules.base.entity.WeatherTaskLog; + +import java.time.LocalDate; +import java.util.List; + +/** + * 天气预报预测任务管理 + */ +public interface WeatherTaskService extends IService { + + /** + * 分页查询任务列表 + * @param pageRequest + * @param taskName + * @param taskStatus + * @param startDate + * @param endDate + * @return + */ + IPage page(PageRequest pageRequest,String taskName,Integer taskStatus,LocalDate startDate,LocalDate endDate); + + /** + * 创建天气预报预测任务 + * @param weatherTask + */ + void cteate(WeatherTask weatherTask); + + /** + * 修改天气预报预测任务 + * @param weatherTask + */ + void update(WeatherTask weatherTask); + + /** + * 删除预测任务 + * @param ids + */ + void delete(List ids); + + /** + * 运行任务 + * @param id + */ + void runTask(Integer id); + + /** + * 获取任务运行日志 + * @param taskId + * @return + */ + List getTaskLog(String taskId); +} diff --git a/jeecg-module-weather/src/main/java/org/jeecg/service/impl/WeatherDataServiceImpl.java b/jeecg-module-weather/src/main/java/org/jeecg/service/impl/WeatherDataServiceImpl.java new file mode 100644 index 0000000..7764250 --- /dev/null +++ b/jeecg-module-weather/src/main/java/org/jeecg/service/impl/WeatherDataServiceImpl.java @@ -0,0 +1,459 @@ +package org.jeecg.service.impl; + +import cn.hutool.core.io.FileUtil; +import com.baomidou.mybatisplus.core.conditions.query.LambdaQueryWrapper; +import com.baomidou.mybatisplus.core.metadata.IPage; +import com.baomidou.mybatisplus.core.toolkit.StringPool; +import com.baomidou.mybatisplus.extension.plugins.pagination.Page; +import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl; +import lombok.RequiredArgsConstructor; +import lombok.extern.slf4j.Slf4j; +import lombok.val; +import org.apache.commons.lang3.StringUtils; +import org.jeecg.common.constant.enums.WeatherDataSourceEnum; +import org.jeecg.common.constant.enums.WeatherTypeEnum; +import org.jeecg.common.exception.JeecgBootException; +import org.jeecg.common.properties.SystemStorageProperties; +import org.jeecg.common.system.query.PageRequest; +import org.jeecg.common.util.NcUtil; +import org.jeecg.modules.base.entity.WeatherData; +import org.jeecg.modules.base.mapper.WeatherDataMapper; +import org.jeecg.service.WeatherDataService; +import org.jeecg.vo.FileExistVo; +import org.jeecg.vo.FileUploadResultVo; +import org.jeecg.vo.FileVo; +import org.jeecg.vo.WeatherResultVO; +import org.springframework.beans.BeanUtils; +import org.springframework.stereotype.Service; +import org.springframework.transaction.annotation.Transactional; +import org.springframework.web.multipart.MultipartFile; +import ucar.nc2.NetcdfFile; +import java.io.*; +import java.math.BigDecimal; +import java.math.RoundingMode; +import java.nio.file.Files; +import java.nio.file.Path; +import java.nio.file.Paths; +import java.time.LocalDateTime; +import java.util.ArrayList; +import java.util.Collections; +import java.util.List; +import java.util.Objects; + +@Slf4j +@Service +@RequiredArgsConstructor +public class WeatherDataServiceImpl extends ServiceImpl implements WeatherDataService { + + private final SystemStorageProperties systemStorageProperties; + + /** + * 根据类型和小时数获取天气数据 + * @param type 天气类型 + * @param startTime 开始时间 + * @param hour 小时数 + * @return 天气数据列表 + */ + public WeatherResultVO getWeatherData(Integer type, LocalDateTime startTime, int hour) { + + // 参数校验 + try { + Objects.requireNonNull(type, "天气类型不能为空"); + Objects.requireNonNull(startTime, "开始时间不能为空"); + if (hour <= 0) { + throw new IllegalArgumentException("小时数必须大于0"); + } + } catch (NullPointerException | IllegalArgumentException e) { + log.error("参数校验失败: type={}, startTime={}, hour={}", type, startTime, hour, e); + throw e; + } + + // 文件处理 + String filePath; + try { + filePath = buildFilePath(startTime, hour, type); + if (!isFileValid(filePath)) { + log.warn("文件无效或不存在: {}", filePath); + return null; + } + } catch (Exception e) { + log.error("文件路径构建失败: type={}, hour={}", type, hour, e); + throw new JeecgBootException("文件路径处理失败", e); + } + + WeatherResultVO weatherResultVO = new WeatherResultVO(); + try (NetcdfFile ncFile = NetcdfFile.open(filePath)) { + // 基础数据获取 + List lonData = NcUtil.getNCList(ncFile, "lon"); + List latData = NcUtil.getNCList(ncFile, "lat"); + + if (lonData == null || lonData.isEmpty() || latData == null || latData.isEmpty()) { + log.error("经纬度数据为空: file={}", filePath); + throw new JeecgBootException("基础经纬度数据缺失"); + } + + // 按类型处理数据 + List> dataList = new ArrayList<>(); + try { + if (WeatherTypeEnum.WIND.getKey().equals(type)) { + getWindData(ncFile, weatherResultVO); + return weatherResultVO; + } else if (WeatherTypeEnum.TEMPERATURE.getKey().equals(type)) { + dataList = processTemperatureData(ncFile, lonData, latData); + } else if (WeatherTypeEnum.PRESSURE.getKey().equals(type)) { + dataList = processPressureData(ncFile, lonData, latData); + } else if (WeatherTypeEnum.HUMIDITY.getKey().equals(type)) { + dataList = processHumidityData(ncFile, lonData, latData); + } else { + throw new JeecgBootException("未知天气类型!"); + } + } catch (Exception e) { + log.error("天气数据处理失败: type={}", type, e); + throw new JeecgBootException("天气数据处理异常", e); + } + + // 结果处理 + try { + List flattenedList = new ArrayList<>(); + flattenList(dataList, flattenedList); + List maxMin = getMaxMin(flattenedList); + + weatherResultVO.setMax(maxMin.get(0)); + weatherResultVO.setMin(maxMin.get(1)); + weatherResultVO.setSn(latData.size()); + weatherResultVO.setWe(lonData.size()); + weatherResultVO.setDataList(dataList); + } catch (Exception e) { + log.error("结果数据处理失败", e); + throw new JeecgBootException("结果数据处理异常", e); + } + + } catch (IOException e) { + log.error("NetCDF文件处理失败: {}", filePath, e); + throw new JeecgBootException("文件读取失败", e); + } catch (Exception e) { + log.error("未知处理错误", e); + throw new JeecgBootException("未知处理错误", e); + } + + return weatherResultVO; + } + + /** + * 分页查询气象数据 + * + * @param pageRequest + * @param fileExt + * @param dataSource + * @param startTime + * @param endTime + * @return + */ + @Override + public IPage page(PageRequest pageRequest, String fileExt, Integer dataSource, LocalDateTime startTime, LocalDateTime endTime) { + LambdaQueryWrapper queryWrapper = new LambdaQueryWrapper<>(); + queryWrapper.eq(Objects.nonNull(dataSource),WeatherData::getDataSource, dataSource); + queryWrapper.between((Objects.nonNull(startTime) && Objects.nonNull(endTime)),WeatherData::getDataStartTime,startTime,endTime); + queryWrapper.eq(StringUtils.isNotBlank(fileExt),WeatherData::getFileExt, fileExt); + + IPage iPage = new Page<>(pageRequest.getPageNum(),pageRequest.getPageSize()); + return this.baseMapper.selectPage(iPage, queryWrapper); + } + + /** + * 验证文件是否存在 + * + * @param fileMD5Value 文件唯一MD5值 + * @return + */ + @Override + public FileExistVo verifyFileExist(String fileMD5Value) { + LambdaQueryWrapper wrapper = new LambdaQueryWrapper<>(); + wrapper.eq(WeatherData::getMd5Value, fileMD5Value); + + FileExistVo fileExist = new FileExistVo(); + WeatherData weatherData = this.baseMapper.selectOne(wrapper); + if(Objects.nonNull(weatherData)) { + fileExist.setExist(true); + fileExist.setFileId(weatherData.getId()); + fileExist.setShareTotal(weatherData.getShareTotal()); + fileExist.setShareIndex(weatherData.getShareIndex()); + } + return fileExist; + } + + /** + * 上传文件 + * + * @param fileVo + */ + @Transactional(rollbackFor = RuntimeException.class) + @Override + public FileUploadResultVo uploadFile(FileVo fileVo) { + try{ + MultipartFile file = fileVo.getFile(); + //文件保存路径 + String storagePath = this.getFileStoragePath(fileVo.getDataSource(), fileVo.getFileName()); + fileVo.setFilePath(storagePath); + + //如果上传策略是分片则加分片后缀 + if(fileVo.isFileShare()) { + storagePath += StringPool.DOT; + storagePath += fileVo.getShareIndex(); + } + //保存文件 + File shareFile = new File(storagePath.toString()); + if(!shareFile.getParentFile().exists()) { + shareFile.getParentFile().setWritable(true); + shareFile.getParentFile().mkdirs(); + } + file.transferTo(shareFile); + + //保存文件信息入库 + String id= null; + FileExistVo fileExist = this.verifyFileExist(fileVo.getMd5Value()); + if(fileExist.isExist()) { + WeatherData queryResult = this.baseMapper.selectById(fileExist.getFileId()); + queryResult.setShareIndex(fileVo.getShareIndex()); + this.baseMapper.updateById(queryResult); + id = queryResult.getId(); + }else { + WeatherData weatherData = new WeatherData(); + BeanUtils.copyProperties(fileVo, weatherData); + this.baseMapper.insert(weatherData); + id = weatherData.getId(); + } + + boolean flag = false; + if(fileVo.isFileShare()) { + if(fileVo.getShareIndex() == (fileVo.getShareTotal()-1)) { + this.merge(fileVo); + flag = true; + } + }else { + flag = true; + } + //获取文件数据开始日期 + //计算文件大小M + WeatherData queryResult = this.baseMapper.selectById(id); + File dataFile = new File(storagePath); + if(dataFile.exists() && dataFile.length()>0){ + BigDecimal divideVal = new BigDecimal("1024"); + BigDecimal bg = new BigDecimal(dataFile.length()); + BigDecimal fileSize = bg.divide(divideVal).divide(divideVal).setScale(2, RoundingMode.HALF_UP); + queryResult.setFileSize(fileSize.doubleValue()); + + this.baseMapper.updateById(queryResult); + } + + FileUploadResultVo result = new FileUploadResultVo(); + result.setCompleted(flag); + result.setId(id); + + return result; + }catch (Exception e){ + throw new RuntimeException(e); + } + } + + /** + * 删除气象数据 + * + * @param ids + */ + @Transactional(rollbackFor = RuntimeException.class) + @Override + public void delete(List ids) { + this.baseMapper.deleteBatchIds(ids); + } + + /** + * 文件合并 + * @param fileVo + * @throws Exception + */ + private void merge(FileVo fileVo)throws Exception { + String storagePath = this.getFileStoragePath(fileVo.getDataSource(), fileVo.getFileName()); + + BufferedOutputStream bos = new BufferedOutputStream(new FileOutputStream(storagePath,true)); + BufferedInputStream bis = null; + try { + byte[] byt = new byte[10*1024]; + int len; + for(int i=0;i> results = new ArrayList<>(); + try { + List> u = NcUtil.getNCByName(ncFile, "u-component_of_wind_height_above_ground", 0).get(0); + List> v = NcUtil.getNCByName(ncFile, "v-component_of_wind_height_above_ground", 0).get(0); + + for (int i = 0; i < u.size(); i++) { + for (int j = 0; j < u.get(0).size(); j++) { + results.add(List.of(u.get(i).get(j), v.get(i).get(j))); + } + } + weatherResultVO.setSn(u.size()); + weatherResultVO.setWe(u.get(0).size()); + weatherResultVO.setDataList(results); + } catch (Exception e) { + e.printStackTrace(); + } + } + + /** + * 处理温度数据 + */ + private List> processTemperatureData(NetcdfFile ncFile, List lonData, List latData) { + try { + List>> tDataList = NcUtil.getNCByName(ncFile, "Temperature_height_above_ground", 0); + return processWeatherData(tDataList, lonData, latData, value -> value - 273.15); + } catch (Exception e) { + return Collections.emptyList(); + } + } + + /** + * 处理气压数据 + */ + private List> processPressureData(NetcdfFile ncFile, List lonData, List latData) { + try { + List>> pDataList = NcUtil.getNCByName(ncFile, "Pressure_msl", 0); + return processWeatherData(pDataList, lonData, latData, value -> value / 1000); + } catch (Exception e) { + return Collections.emptyList(); + } + } + + /** + * 处理湿度数据 + */ + private List> processHumidityData(NetcdfFile ncFile, List lonData, List latData) { + try { + List>> hDataList = NcUtil.getNCByName(ncFile, "Specific_humidity_isobaric", 0); + return processWeatherData(hDataList, lonData, latData, value -> value); + } catch (Exception e) { + return Collections.emptyList(); + } + } + + /** + * 通用天气数据处理方法 + */ + private List> processWeatherData(List>> dataList, + List lonData, + List latData, + ValueConverter converter) { + List> results = new ArrayList<>(); + for (int i = 0; i < latData.size(); i++) { + for (int j = 0; j < lonData.size(); j++) { + double value = j < dataList.get(0).get(i).size() + ? dataList.get(0).get(i).get(j) + : dataList.get(0).get(i).get(0); + results.add(List.of(lonData.get(j), latData.get(i), converter.convert(value))); + } + } + return results; + } + + // 递归地将嵌套列表中的所有 Double 值提取出来 + public void flattenList(List nestedList, List flattenedList) { + for (Object element : nestedList) { + if (element instanceof List) { + flattenList((List) element, flattenedList); + } else { + flattenedList.add((Double) element); + } + } + } + + /** + * 获取最大最小值 + */ + public static List getMaxMin(List flattenedList) { + if (flattenedList == null || flattenedList.isEmpty()) { + return List.of(0.0, 0.0); + } + return List.of(Collections.max(flattenedList), Collections.min(flattenedList)); + } + + /** + * 函数式接口,用于值转换 + */ + @FunctionalInterface + private interface ValueConverter { + double convert(double value); + } +} \ No newline at end of file diff --git a/jeecg-module-weather/src/main/java/org/jeecg/service/impl/WeatherTaskServiceImpl.java b/jeecg-module-weather/src/main/java/org/jeecg/service/impl/WeatherTaskServiceImpl.java new file mode 100644 index 0000000..e675d2f --- /dev/null +++ b/jeecg-module-weather/src/main/java/org/jeecg/service/impl/WeatherTaskServiceImpl.java @@ -0,0 +1,151 @@ +package org.jeecg.service.impl; + +import com.baomidou.mybatisplus.core.conditions.query.LambdaQueryWrapper; +import com.baomidou.mybatisplus.core.metadata.IPage; +import com.baomidou.mybatisplus.extension.plugins.pagination.Page; +import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl; +import lombok.RequiredArgsConstructor; +import lombok.val; +import org.apache.commons.lang3.StringUtils; +import org.jeecg.common.constant.enums.WeatherTaskStatusEnum; +import org.jeecg.common.system.query.PageRequest; +import org.jeecg.modules.base.entity.WeatherTask; +import org.jeecg.modules.base.entity.WeatherTaskLog; +import org.jeecg.modules.base.mapper.WeatherTaskLogMapper; +import org.jeecg.modules.base.mapper.WeatherTaskMapper; +import org.jeecg.service.WeatherTaskService; +import org.springframework.stereotype.Service; +import org.springframework.transaction.annotation.Transactional; + +import java.time.LocalDate; +import java.util.List; +import java.util.Objects; + +/** + * 天气预报预测任务管理 + */ +@Service +@RequiredArgsConstructor +public class WeatherTaskServiceImpl extends ServiceImpl implements WeatherTaskService { + + private final WeatherTaskLogMapper weatherTaskLogMapper; + + /** + * 分页查询任务列表 + * @param pageRequest + * @param taskName + * @param taskStatus + * @param startDate + * @param endDate + * @return + */ + @Override + public IPage page(PageRequest pageRequest, String taskName, Integer taskStatus, LocalDate startDate,LocalDate endDate) { + LambdaQueryWrapper queryWrapper = new LambdaQueryWrapper<>(); + queryWrapper.eq(Objects.nonNull(taskStatus),WeatherTask::getTaskStatus, taskStatus); + queryWrapper.between((Objects.nonNull(startDate) && Objects.nonNull(endDate)),WeatherTask::getStartDate,startDate,endDate); + queryWrapper.like(StringUtils.isNotBlank(taskName),WeatherTask::getTaskName,taskName); + queryWrapper.orderByDesc(WeatherTask::getStartDate); + + IPage iPage = new Page<>(pageRequest.getPageNum(), pageRequest.getPageSize()); + return this.page(iPage, queryWrapper); + } + + /** + * 创建天气预报预测任务 + * @param weatherTask + */ + @Transactional(rollbackFor = RuntimeException.class) + @Override + public void cteate(WeatherTask weatherTask) { + //校验任务名称是否已存在 + LambdaQueryWrapper checkNameWrapper = new LambdaQueryWrapper<>(); + checkNameWrapper.eq(WeatherTask::getTaskName,weatherTask.getTaskName()); + WeatherTask checkNameResult = this.getOne(checkNameWrapper); + if(Objects.nonNull(checkNameResult)){ + throw new RuntimeException("此任务名称已存在"); + } + //校验任务预测时间是否已重复 + LambdaQueryWrapper checkDateWrapper = new LambdaQueryWrapper<>(); + checkDateWrapper.eq(WeatherTask::getStartDate,weatherTask.getStartDate()); + checkDateWrapper.eq(WeatherTask::getStartTime,weatherTask.getStartTime()); + WeatherTask checkDateResult = this.getOne(checkDateWrapper); + if(Objects.nonNull(checkDateResult)){ + throw new RuntimeException("此当前预测时间为参数的任务已存在"); + } + weatherTask.setTaskStatus(WeatherTaskStatusEnum.NOT_STARTED.getKey()); + this.save(weatherTask); + } + + /** + * 修改天气预报预测任务 + * @param weatherTask + */ + @Transactional(rollbackFor = RuntimeException.class) + @Override + public void update(WeatherTask weatherTask) { + //校验数据是否存在 + WeatherTask queryResult = this.getById(weatherTask.getId()); + if(Objects.isNull(queryResult)){ + throw new RuntimeException("此任务不存在"); + } + //校验任务名称是否已存在 + LambdaQueryWrapper checkNameWrapper = new LambdaQueryWrapper<>(); + checkNameWrapper.eq(WeatherTask::getTaskName,weatherTask.getTaskName()); + WeatherTask checkNameResult = this.getOne(checkNameWrapper); + if(Objects.nonNull(checkNameResult) && !weatherTask.getId().equals(checkNameResult.getId())){ + throw new RuntimeException("此任务名称已存在"); + } + //校验任务预测时间是否已重复 + LambdaQueryWrapper checkDateWrapper = new LambdaQueryWrapper<>(); + checkDateWrapper.eq(WeatherTask::getStartDate,weatherTask.getStartDate()); + checkDateWrapper.eq(WeatherTask::getStartTime,weatherTask.getStartTime()); + WeatherTask checkDateResult = this.getOne(checkDateWrapper); + if(Objects.nonNull(checkDateResult) && !weatherTask.getId().equals(checkNameResult.getId())){ + throw new RuntimeException("此当前预测时间为参数的任务已存在"); + } + queryResult.setTaskName(weatherTask.getTaskName()); + queryResult.setPredictionModel(weatherTask.getPredictionModel()); + queryResult.setStartDate(weatherTask.getStartDate()); + queryResult.setStartTime(weatherTask.getStartTime()); + queryResult.setLeadTime(weatherTask.getLeadTime()); + queryResult.setDataSources(weatherTask.getDataSources()); + queryResult.setInputFile(weatherTask.getInputFile()); + this.updateById(queryResult); + } + + /** + * 删除预测任务 + * @param ids + */ + @Transactional(rollbackFor = RuntimeException.class) + @Override + public void delete(List ids) { + this.baseMapper.deleteBatchIds(ids); + } + + /** + * 运行任务 + * + * @param id + */ + @Override + public void runTask(Integer id) { + + } + + /** + * 获取任务运行日志 + * + * @param taskId + * @return + */ + @Override + public List getTaskLog(String taskId) { + LambdaQueryWrapper queryWrapper = new LambdaQueryWrapper<>(); + queryWrapper.eq(WeatherTaskLog::getTaskId,taskId); + queryWrapper.select(WeatherTaskLog::getCreateTime,WeatherTaskLog::getLogContent); + queryWrapper.orderByAsc(WeatherTaskLog::getCreateTime); + return this.weatherTaskLogMapper.selectList(queryWrapper); + } +} diff --git a/jeecg-module-weather/src/main/java/org/jeecg/vo/FileExistVo.java b/jeecg-module-weather/src/main/java/org/jeecg/vo/FileExistVo.java new file mode 100644 index 0000000..1dc3708 --- /dev/null +++ b/jeecg-module-weather/src/main/java/org/jeecg/vo/FileExistVo.java @@ -0,0 +1,23 @@ +package org.jeecg.vo; + +import lombok.Data; + +import java.io.Serializable; + +/** + * 校验文件是否存在VO + */ +@Data +public class FileExistVo implements Serializable{ + + private static final long serialVersionUID = 1L; + + private boolean exist; + + private String fileId; + + private Integer shareTotal; + + private Integer shareIndex; + +} diff --git a/jeecg-module-weather/src/main/java/org/jeecg/vo/FileUploadResultVo.java b/jeecg-module-weather/src/main/java/org/jeecg/vo/FileUploadResultVo.java new file mode 100644 index 0000000..55140e7 --- /dev/null +++ b/jeecg-module-weather/src/main/java/org/jeecg/vo/FileUploadResultVo.java @@ -0,0 +1,24 @@ +package org.jeecg.vo; + +import lombok.Data; + +import java.io.Serializable; + +/** + * 上传文件结果VO + */ +@Data +public class FileUploadResultVo implements Serializable{ + + private static final long serialVersionUID = 1L; + + /** + * 是否上传完毕 + */ + private boolean completed; + + /** + * 记录id + */ + private String id; +} diff --git a/jeecg-module-weather/src/main/java/org/jeecg/vo/FileVo.java b/jeecg-module-weather/src/main/java/org/jeecg/vo/FileVo.java new file mode 100644 index 0000000..0ff161a --- /dev/null +++ b/jeecg-module-weather/src/main/java/org/jeecg/vo/FileVo.java @@ -0,0 +1,28 @@ +package org.jeecg.vo; + +import com.alibaba.fastjson.annotation.JSONField; +import lombok.Data; +import lombok.EqualsAndHashCode; +import org.jeecg.modules.base.entity.WeatherData; +import org.springframework.web.multipart.MultipartFile; + +/** + * 上传文件VO + */ +@Data +@EqualsAndHashCode(callSuper = true) +public class FileVo extends WeatherData { + + private static final long serialVersionUID = 1L; + + /** + * 是否进行分片 + */ + private boolean fileShare; + + /** + * 上传文件 + */ + @JSONField(serialize = false) + private MultipartFile file; +} diff --git a/jeecg-module-weather/src/main/java/org/jeecg/vo/WeatherResultVO.java b/jeecg-module-weather/src/main/java/org/jeecg/vo/WeatherResultVO.java new file mode 100644 index 0000000..65c47fc --- /dev/null +++ b/jeecg-module-weather/src/main/java/org/jeecg/vo/WeatherResultVO.java @@ -0,0 +1,14 @@ +package org.jeecg.vo; + +import lombok.Data; + +import java.util.List; + +@Data +public class WeatherResultVO { + private List> dataList; + private double max; + private double min; + private int sn; + private int we; +} diff --git a/jeecg-server-cloud/jeecg-system-cloud-start/pom.xml b/jeecg-server-cloud/jeecg-system-cloud-start/pom.xml index d864423..33a004e 100644 --- a/jeecg-server-cloud/jeecg-system-cloud-start/pom.xml +++ b/jeecg-server-cloud/jeecg-system-cloud-start/pom.xml @@ -28,13 +28,7 @@ org.jeecgframework.boot jeecg-system-biz - - - - org.jeecgframework.boot - jeecg-module-demo - - + ${jeecgboot.version} + + + + + + + + %d{yyyy-MM-dd HH:mm:ss.SSS} [%thread] %highlight(%-5level) %cyan(%logger{50}:%L) - %msg%n + + + + + + + + ${LOG_HOME}/jeecg-system-%d{yyyy-MM-dd}.%i.log + + 30 + 10MB + + + + %d{yyyy-MM-dd HH:mm:ss.SSS} [%thread] %-5level %logger{50}:%L - %msg%n + + + + + + + + ERROR + + + + %p%d%msg%M%F{32}%L + + + ${LOG_HOME}/error-log.html + + + + + + + + ${LOG_HOME}/jeecg-system-%d{yyyy-MM-dd}.%i.html + + 30 + 10MB + + + + %p%d%msg%M%F{32}%L + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/jeecg-server-cloud/pom.xml b/jeecg-server-cloud/pom.xml index 3957744..fc9cc46 100644 --- a/jeecg-server-cloud/pom.xml +++ b/jeecg-server-cloud/pom.xml @@ -20,6 +20,7 @@ jeecg-visual + jeecg-weather-start \ No newline at end of file diff --git a/pom.xml b/pom.xml index 4a76c7c..464405d 100644 --- a/pom.xml +++ b/pom.xml @@ -84,6 +84,7 @@ jeecg-boot-base-core jeecg-module-system + jeecg-module-weather