boyue_jnpf/sql_init/SQLServer/Update/Update_SQLServer_510to520.sql

104 lines
182 KiB
MySQL
Raw Normal View History

2025-06-30 09:38:03 +08:00
CREATE TABLE workflow_subtask_data(
f_id nvarchar(50) NOT NULL,
f_subtask_json nvarchar(max),
f_parent_id nvarchar(50),
f_node_code nvarchar(50),
f_sort_code bigint,
f_creator_time datetime,
f_creator_user_id nvarchar(50),
f_last_modify_time datetime,
f_last_modify_user_id nvarchar(50),
f_delete_time datetime,
f_delete_user_id nvarchar(50),
f_delete_mark int,
f_tenant_id nvarchar(50) NOT NULL
, PRIMARY KEY (f_id,f_tenant_id)
);
EXEC sp_addextendedproperty 'MS_Description',N'子流程发起参数(依次发起)','SCHEMA',N'dbo','TABLE',N'workflow_subtask_data';
EXEC sp_addextendedproperty 'MS_Description',N'主键','SCHEMA',N'dbo','TABLE',N'workflow_subtask_data','COLUMN',N'f_id';
EXEC sp_addextendedproperty 'MS_Description',N'子流程发起参数','SCHEMA',N'dbo','TABLE',N'workflow_subtask_data','COLUMN',N'f_subtask_json';
EXEC sp_addextendedproperty 'MS_Description',N'父流程id','SCHEMA',N'dbo','TABLE',N'workflow_subtask_data','COLUMN',N'f_parent_id';
EXEC sp_addextendedproperty 'MS_Description',N'节点编码','SCHEMA',N'dbo','TABLE',N'workflow_subtask_data','COLUMN',N'f_node_code';
EXEC sp_addextendedproperty 'MS_Description',N'排序','SCHEMA',N'dbo','TABLE',N'workflow_subtask_data','COLUMN',N'f_sort_code';
EXEC sp_addextendedproperty 'MS_Description',N'创建时间','SCHEMA',N'dbo','TABLE',N'workflow_subtask_data','COLUMN',N'f_creator_time';
EXEC sp_addextendedproperty 'MS_Description',N'创建用户','SCHEMA',N'dbo','TABLE',N'workflow_subtask_data','COLUMN',N'f_creator_user_id';
EXEC sp_addextendedproperty 'MS_Description',N'修改时间','SCHEMA',N'dbo','TABLE',N'workflow_subtask_data','COLUMN',N'f_last_modify_time';
EXEC sp_addextendedproperty 'MS_Description',N'修改用户','SCHEMA',N'dbo','TABLE',N'workflow_subtask_data','COLUMN',N'f_last_modify_user_id';
EXEC sp_addextendedproperty 'MS_Description',N'删除时间','SCHEMA',N'dbo','TABLE',N'workflow_subtask_data','COLUMN',N'f_delete_time';
EXEC sp_addextendedproperty 'MS_Description',N'删除用户','SCHEMA',N'dbo','TABLE',N'workflow_subtask_data','COLUMN',N'f_delete_user_id';
EXEC sp_addextendedproperty 'MS_Description',N'删除标志','SCHEMA',N'dbo','TABLE',N'workflow_subtask_data','COLUMN',N'f_delete_mark';
EXEC sp_addextendedproperty 'MS_Description',N'租户id','SCHEMA',N'dbo','TABLE',N'workflow_subtask_data','COLUMN',N'f_tenant_id';
-- 数据集添加字段
ALTER TABLE base_data_set ADD f_interface_id nvarchar(50) NULL;
EXEC sp_addextendedproperty'MS_Description',N'数据接口id','SCHEMA',N'dbo','TABLE',N'base_data_set','COLUMN',N'f_interface_id';
ALTER TABLE report_template ADD f_allow_export int NULL;
EXEC sp_addextendedproperty'MS_Description',N'是否导出','SCHEMA',N'dbo','TABLE',N'report_template','COLUMN',N'f_allow_export';
ALTER TABLE report_template ADD f_allow_print int NULL;
EXEC sp_addextendedproperty'MS_Description',N'是否打印','SCHEMA',N'dbo','TABLE',N'report_template','COLUMN',N'f_allow_print';
ALTER TABLE report_template ADD f_platform_release nvarchar(100) NULL;
EXEC sp_addextendedproperty'MS_Description',N'发布选中平台','SCHEMA',N'dbo','TABLE',N'report_template','COLUMN',N'f_platform_release';
ALTER TABLE report_version ADD f_sort_list nvarchar(max) NULL;
EXEC sp_addextendedproperty'MS_Description',N'模板json','SCHEMA',N'dbo','TABLE',N'report_version','COLUMN',N'f_sort_list';
ALTER TABLE workflow_operator ADD f_is_processing int NULL;
EXEC sp_addextendedproperty'MS_Description',N'是否办理节点(0否 1是)','SCHEMA',N'dbo','TABLE',N'workflow_operator','COLUMN',N'f_is_processing';
ALTER TABLE workflow_template ADD f_show_type int NULL;
EXEC sp_addextendedproperty'MS_Description',N'流程显示类型0-全局 1-流程 2-菜单)','SCHEMA',N'dbo','TABLE',N'workflow_template','COLUMN',N'f_show_type';
ALTER TABLE workflow_template ADD f_status int NULL;
EXEC sp_addextendedproperty'MS_Description',N'状态(0.未上架,1.上架,2.下架-继续审批3.下架-隐藏审批)','SCHEMA',N'dbo','TABLE',N'workflow_template','COLUMN',N'f_status';
-- 默认值调整
update base_data_set set f_type = 1 where f_type = 0;
UPDATE base_sys_config set F_Value = 'V5.2.0' WHERE F_Key = 'sysversion';
UPDATE base_sys_config set F_Value = 'Copyright @ 2025 博越科技有限公司版权所有' WHERE F_Key = 'copyright';
2025-06-30 09:38:03 +08:00
-- 待办开关
INSERT INTO base_sys_config (f_id, f_full_name, f_key, f_value, f_category, f_sort_code, f_creator_time,
f_creator_user_id, f_last_modify_time, f_last_modify_user_id, f_delete_time,
f_delete_user_id, f_delete_mark, f_tenant_id)
VALUES ('618670653960094396', NULL, 'flowTodo', '1', 'SysConfig', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0');
-- 加签层级
INSERT INTO base_sys_config (f_id, f_full_name, f_key, f_value, f_category, f_sort_code, f_creator_time,
f_creator_user_id, f_last_modify_time, f_last_modify_user_id, f_delete_time,
f_delete_user_id, f_delete_mark, f_tenant_id)
VALUES ('633574799200904535', NULL, 'addSignLevel', '1', 'SysConfig', NULL, '2024-12-03 10:20:06', '349057407209541',
NULL, NULL, NULL, NULL, NULL, '0');
UPDATE report_template SET f_allow_export = 1, f_allow_print =1;
UPDATE report_version SET f_sort_list = '[]' where f_sort_list is null;
update workflow_operator set f_is_processing = 0 where f_is_processing is null;
UPDATE report_version SET F_ID = N'623183857306304837', F_CELLS = N'{"cells":[{"col":"0","row":"0","sheet":"E-ZBgdonv3JP-AKiPx-Dz","custom":{"leftParentCellType":"default","leftParentCellCustomRowName":"","leftParentCellCustomColName":"","topParentCellType":"default","topParentCellCustomRowName":"","topParentCellCustomColName":""}},{"col":"0","row":"2","sheet":"E-ZBgdonv3JP-AKiPx-Dz","type":"dataSource","custom":{"field":"user.orgname","polymerizationType":"1","summaryType":"sum","fillDirection":"portrait","leftParentCellType":"default","leftParentCellCustomRowName":"","leftParentCellCustomColName":"","topParentCellType":"default","topParentCellCustomRowName":"","topParentCellCustomColName":"","type":"dataSource"}},{"col":"1","row":"2","sheet":"E-ZBgdonv3JP-AKiPx-Dz","type":"dataSource","custom":{"field":"user.depName","polymerizationType":"1","summaryType":"sum","fillDirection":"portrait","leftParentCellType":"default","leftParentCellCustomRowName":"","leftParentCellCustomColName":"","topParentCellType":"default","topParentCellCustomRowName":"","topParentCellCustomColName":"","type":"dataSource"}},{"col":"2","row":"2","sheet":"E-ZBgdonv3JP-AKiPx-Dz","type":"dataSource","custom":{"field":"user.education","polymerizationType":"1","summaryType":"sum","fillDirection":"portrait","leftParentCellType":"default","leftParentCellCustomRowName":"","leftParentCellCustomColName":"","topParentCellType":"default","topParentCellCustomRowName":"","topParentCellCustomColName":"","type":"dataSource"}},{"col":"3","row":"2","sheet":"E-ZBgdonv3JP-AKiPx-Dz","type":"dataSource","custom":{"field":"user.sex","polymerizationType":"1","summaryType":"sum","fillDirection":"portrait","leftParentCellType":"default","leftParentCellCustomRowName":"","leftParentCellCustomColName":"","topParentCellType":"default","topParentCellCustomRowName":"","topParentCellCustomColName":"","type":"dataSource"}},{"col":"4","row":"2","sheet":"E-ZBgdonv3JP-AKiPx-Dz","type":"dataSource","custom":{"field":"user.username","polymerizationType":"1","summaryType":"sum","fillDirection":"portrait","leftParentCellType":"default","leftParentCellCustomRowName":"","leftParentCellCustomColName":"","topParentCellType":"default","topParentCellCustomRowName":"","topParentCellCustomColName":"","type":"dataSource"}},{"col":"5","row":"2","sheet":"E-ZBgdonv3JP-AKiPx-Dz","type":"dataSource","custom":{"field":"user.salary","polymerizationType":"1","summaryType":"sum","fillDirection":"portrait","leftParentCellType":"default","leftParentCellCustomRowName":"","leftParentCellCustomColName":"","topParentCellType":"default","topParentCellCustomRowName":"","topParentCellCustomColName":"","type":"dataSource"}},{"col":"4","row":"3","sheet":"E-ZBgdonv3JP-AKiPx-Dz","type":"dataSource","custom":{"field":"user.username","polymerizationType":"3","summaryType":"count","fillDirection":"portrait","leftParentCellType":"none","leftParentCellCustomRowName":"","leftParentCellCustomColName":"","topParentCellType":"none","topParentCellCustomRowName":"","topParentCellCustomColName":"","type":"dataSource"}}],"floatEcharts":{},"floatImages":{}}', F_SNAPSHOT = N'{"id":"PlhIEz","sheetOrder":["E-ZBgdonv3JP-AKiPx-Dz"],"name":"","appVersion":"0.4.2","locale":"zhCN","styles":{"UodgPC":{"ff":"Arial","fs":20,"it":0,"bl":1,"ul":{"s":0,"cl":{"rgb":"rgba(0,0,0,0.85)"}},"st":{"s":0,"cl":{"rgb":"rgba(0,0,0,0.85)"}},"ol":{"s":0,"cl":{"rgb":"rgba(0,0,0,0.85)"}},"tr":{"a":0},"td":0,"cl":{"rgb":"rgba(0,0,0,0.85)"},"ht":2,"vt":2,"tb":3,"pd":{"t":0,"b":2,"l":2,"r":2},"bd":{"t":null,"l":null,"r":null}},"i_RgNM":{"ff":"Arial","fs":14,"it":0,"bl":0,"ul":{"s":0,"cl":{"rgb":"rgb(255,255,255)"}},"st":{"s":0,"cl":{"rgb":"rgb(255,255,255)"}},"ol":{"s":0,"cl":{"rgb":"rgb(255,255,255)"}},"tr":{"a":0},"td":0,"cl":{"rgb":"rgb(255,255,255)"},"bg":{"rgb":"rgb(22,151,255)"},"ht":2,"vt":2,"tb":3,"pd":{"t":0,"b":2,"l":2,"r":2},"bd":{"l":{"cl":{"rgb":"rgb(204,204,204)"},"s":1},"r":{"cl":{"rgb":"rgb(204,204,204)"},"s":1},"t":{"cl":{"rgb":"rgb(204,204,204)"},"s":1},"b":{"cl":{"rgb":"rgb(204,204,204)"},"s":1}}},"apsC-f":{"ff":"Arial","fs":14,"it":0,"bl":0,"
UPDATE report_version SET F_ID = N'623200369010278981', F_CELLS = N'{"cells":[{"col":"0","row":"0","sheet":"Eh_Jx6bicu3SB2VKA8XcS","custom":{"leftParentCellType":"default","leftParentCellCustomRowName":"","leftParentCellCustomColName":"","topParentCellType":"default","topParentCellCustomRowName":"","topParentCellCustomColName":""}},{"col":"5","row":"1","sheet":"Eh_Jx6bicu3SB2VKA8XcS","custom":{"leftParentCellType":"default","leftParentCellCustomRowName":"","leftParentCellCustomColName":"","topParentCellType":"default","topParentCellCustomRowName":"","topParentCellCustomColName":""}},{"col":"0","row":"2","sheet":"Eh_Jx6bicu3SB2VKA8XcS","type":"dataSource","custom":{"field":"user.orgname","polymerizationType":"2","summaryType":"sum","fillDirection":"portrait","leftParentCellType":"default","leftParentCellCustomRowName":"","leftParentCellCustomColName":"","topParentCellType":"default","topParentCellCustomRowName":"","topParentCellCustomColName":"","type":"dataSource"}},{"col":"1","row":"2","sheet":"Eh_Jx6bicu3SB2VKA8XcS","type":"dataSource","custom":{"field":"user.depName","polymerizationType":"2","summaryType":"sum","fillDirection":"portrait","leftParentCellType":"default","leftParentCellCustomRowName":"","leftParentCellCustomColName":"","topParentCellType":"default","topParentCellCustomRowName":"","topParentCellCustomColName":"","type":"dataSource"}},{"col":"2","row":"2","sheet":"Eh_Jx6bicu3SB2VKA8XcS","type":"dataSource","custom":{"field":"user.education","polymerizationType":"2","summaryType":"sum","fillDirection":"portrait","leftParentCellType":"default","leftParentCellCustomRowName":"","leftParentCellCustomColName":"","topParentCellType":"default","topParentCellCustomRowName":"","topParentCellCustomColName":"","type":"dataSource"}},{"col":"3","row":"2","sheet":"Eh_Jx6bicu3SB2VKA8XcS","type":"dataSource","custom":{"field":"user.sex","polymerizationType":"2","summaryType":"sum","fillDirection":"portrait","leftParentCellType":"default","leftParentCellCustomRowName":"","leftParentCellCustomColName":"","topParentCellType":"default","topParentCellCustomRowName":"","topParentCellCustomColName":"","type":"dataSource"}},{"col":"4","row":"2","sheet":"Eh_Jx6bicu3SB2VKA8XcS","type":"dataSource","custom":{"field":"user.username","polymerizationType":"1","summaryType":"sum","fillDirection":"portrait","leftParentCellType":"default","leftParentCellCustomRowName":"","leftParentCellCustomColName":"","topParentCellType":"default","topParentCellCustomRowName":"","topParentCellCustomColName":"","type":"dataSource"}},{"col":"5","row":"2","sheet":"Eh_Jx6bicu3SB2VKA8XcS","type":"dataSource","custom":{"field":"user.salary","polymerizationType":"1","summaryType":"sum","fillDirection":"portrait","leftParentCellType":"default","leftParentCellCustomRowName":"","leftParentCellCustomColName":"","topParentCellType":"default","topParentCellCustomRowName":"","topParentCellCustomColName":"","type":"dataSource"}},{"col":"4","row":"3","sheet":"Eh_Jx6bicu3SB2VKA8XcS","type":"dataSource","custom":{"field":"user.username","polymerizationType":"3","summaryType":"count","fillDirection":"portrait","leftParentCellType":"none","leftParentCellCustomRowName":"","leftParentCellCustomColName":"","topParentCellType":"none","topParentCellCustomRowName":"","topParentCellCustomColName":"","type":"dataSource"}},{"col":"5","row":"3","sheet":"Eh_Jx6bicu3SB2VKA8XcS","type":"dataSource","custom":{"field":"user.salary","polymerizationType":"3","summaryType":"sum","fillDirection":"portrait","leftParentCellType":"none","leftParentCellCustomRowName":"","leftParentCellCustomColName":"","topParentCellType":"none","topParentCellCustomRowName":"","topParentCellCustomColName":"","type":"dataSource"}}],"floatEcharts":{},"floatImages":{}}', F_SNAPSHOT = N'{"id":"_cMcfw","sheetOrder":["Eh_Jx6bicu3SB2VKA8XcS"],"name":"","appVersion":"0.4.2","locale":"zhCN","styles":{"uecxVJ":{"ff":"Arial","fs":24,"it":0,"bl":1,"ul":{"s":0,"cl":{"rgb":"rgb(53,50,43)"}},"st":{"s":0,"cl":{"rgb":"rgb(53,50,43)"}},"ol":{"s":0,"cl":{"rgb":"rgb(53,50,43)"}},"tr":{"a":0,"v":0},"td":0,"cl":{"rgb":"rgb(53,50,43)"
UPDATE report_version SET F_ID = N'623204233562292805', F_CELLS = N'{"cells":[{"col":"0","row":"0","sheet":"VkjbtPpyX8TggOO4aHSuO","custom":{"leftParentCellType":"default","leftParentCellCustomRowName":"","leftParentCellCustomColName":"","topParentCellType":"default","topParentCellCustomRowName":"","topParentCellCustomColName":""}},{"col":"0","row":"1","sheet":"VkjbtPpyX8TggOO4aHSuO","type":"dataSource","custom":{"field":"report_user.organizationName","polymerizationType":"2","summaryType":"sum","fillDirection":"landscape","leftParentCellType":"default","leftParentCellCustomRowName":"","leftParentCellCustomColName":"","topParentCellType":"default","topParentCellCustomRowName":"","topParentCellCustomColName":"","type":"dataSource"}},{"col":"0","row":"2","sheet":"VkjbtPpyX8TggOO4aHSuO","type":"dataSource","custom":{"field":"report_user.departmentName","polymerizationType":"2","summaryType":"sum","fillDirection":"landscape","leftParentCellType":"default","leftParentCellCustomRowName":"","leftParentCellCustomColName":"","topParentCellType":"default","topParentCellCustomRowName":"","topParentCellCustomColName":"","type":"dataSource"}},{"col":"0","row":"3","sheet":"VkjbtPpyX8TggOO4aHSuO","type":"dataSource","custom":{"field":"report_user.username","polymerizationType":"2","summaryType":"sum","fillDirection":"portrait","leftParentCellType":"default","leftParentCellCustomRowName":"","leftParentCellCustomColName":"","topParentCellType":"default","topParentCellCustomRowName":"","topParentCellCustomColName":"","type":"dataSource"}},{"col":"0","row":"4","sheet":"VkjbtPpyX8TggOO4aHSuO","type":"dataSource","custom":{"field":"report_user.username","polymerizationType":"3","summaryType":"count","fillDirection":"portrait","leftParentCellType":"default","leftParentCellCustomRowName":"","leftParentCellCustomColName":"","topParentCellType":"custom","topParentCellCustomRowName":"A","topParentCellCustomColName":"3","type":"dataSource"}}],"floatEcharts":{},"floatImages":{}}', F_SNAPSHOT = N'{"id":"GVaLEc","sheetOrder":["VkjbtPpyX8TggOO4aHSuO"],"name":"","appVersion":"0.4.2","locale":"zhCN","styles":{"7zkWyq":{"ff":"Arial","fs":20,"it":0,"bl":1,"ul":{"s":0,"cl":{"rgb":"rgba(0,0,0,0.85)"}},"st":{"s":0,"cl":{"rgb":"rgba(0,0,0,0.85)"}},"ol":{"s":0,"cl":{"rgb":"rgba(0,0,0,0.85)"}},"tr":{"a":0},"td":0,"cl":{"rgb":"rgba(0,0,0,0.85)"},"ht":2,"vt":2,"tb":3,"pd":{"t":0,"b":2,"l":2,"r":2}},"oLh33o":{"ff":"Arial","fs":11,"it":0,"bl":0,"ul":{"s":0,"cl":{"rgb":"rgb(255,255,255)"}},"st":{"s":0,"cl":{"rgb":"rgb(255,255,255)"}},"ol":{"s":0,"cl":{"rgb":"rgb(255,255,255)"}},"tr":{"a":0},"td":0,"cl":{"rgb":"rgb(255,255,255)"},"bg":{"rgb":"rgb(22,144,255)"},"ht":2,"vt":2,"tb":3,"pd":{"t":0,"b":2,"l":2,"r":2},"bd":{"l":{"cl":{"rgb":"rgb(0,0,0)"},"s":1},"r":{"cl":{"rgb":"rgb(0,0,0)"},"s":1},"t":{"cl":{"rgb":"rgb(0,0,0)"},"s":1},"b":{"cl":{"rgb":"rgb(0,0,0)"},"s":1}}},"pe2oi6":{"ff":"Arial","fs":11,"it":0,"bl":0,"ul":{"s":0,"cl":{"rgb":"rgba(0,0,0,0.85)"}},"st":{"s":0,"cl":{"rgb":"rgba(0,0,0,0.85)"}},"ol":{"s":0,"cl":{"rgb":"rgba(0,0,0,0.85)"}},"tr":{"a":0},"td":0,"cl":{"rgb":"rgba(0,0,0,0.85)"},"bg":{"rgb":"rgb(192,200,212)"},"ht":1,"vt":2,"tb":3,"pd":{"t":0,"b":2,"l":2,"r":2},"bd":{"l":{"cl":{"rgb":"rgb(0,0,0)"},"s":1},"r":{"cl":{"rgb":"rgb(0,0,0)"},"s":1},"b":{"cl":{"rgb":"rgb(0,0,0)"},"s":1}}},"i-Nz_l":{"ff":"Arial","fs":11,"it":0,"bl":0,"ul":{"s":0,"cl":{"rgb":"rgba(0,0,0,0.85)"}},"st":{"s":0,"cl":{"rgb":"rgba(0,0,0,0.85)"}},"ol":{"s":0,"cl":{"rgb":"rgba(0,0,0,0.85)"}},"tr":{"a":0},"td":0,"cl":{"rgb":"rgba(0,0,0,0.85)"},"ht":0,"vt":2,"tb":3,"pd":{"t":0,"b":2,"l":2,"r":2},"bd":{"l":{"cl":{"rgb":"rgb(0,0,0)"},"s":1},"r":{"cl":{"rgb":"rgb(0,0,0)"},"s":1},"b":{"cl":{"rgb":"rgb(0,0,0)"},"s":1}}},"17yxoW":{"ff":"Arial","fs":11,"it":0,"bl":0,"ul":{"s":0,"cl":{"rgb":"rgba(0,0,0,0.85)"}},"st":{"s":0,"cl":{"rgb":"rgba(0,0,0,0.85)"}},"ol":{"s":0,"cl":{"rgb":"rgba(0,0,0,0.85)"}},"tr":{"a":0},"td":0,"cl":{"rgb":"rgba(0,0,0,0.85)"},"bg":{"rgb":"rgb(254,225,205)"},"ht":2,"vt":2,"tb":3,"pd":{"t":0,"b":2,"l":2,"r":2},"bd":{"l":{"cl":{"rgb":"rgb(0,0,0)"},"s":1},"r":{"cl":{"rgb":
UPDATE report_version SET F_ID = N'623207784581694021', F_CELLS = N'{"cells":[{"col":"0","row":"0","sheet":"1wEx3S26r-bZsG_oVLwiL","custom":{"leftParentCellType":"default","leftParentCellCustomRowName":"","leftParentCellCustomColName":"","topParentCellType":"default","topParentCellCustomRowName":"","topParentCellCustomColName":""}},{"col":"2","row":"1","sheet":"1wEx3S26r-bZsG_oVLwiL","custom":{"leftParentCellType":"default","leftParentCellCustomRowName":"","leftParentCellCustomColName":"","topParentCellType":"default","topParentCellCustomRowName":"","topParentCellCustomColName":""}},{"col":"0","row":"2","sheet":"1wEx3S26r-bZsG_oVLwiL","type":"dataSource","custom":{"field":"user.orgname","polymerizationType":"2","summaryType":"sum","fillDirection":"portrait","leftParentCellType":"default","leftParentCellCustomRowName":"","leftParentCellCustomColName":"","topParentCellType":"default","topParentCellCustomRowName":"","topParentCellCustomColName":"","type":"dataSource"}},{"col":"1","row":"2","sheet":"1wEx3S26r-bZsG_oVLwiL","type":"dataSource","custom":{"field":"user.depName","polymerizationType":"2","summaryType":"sum","fillDirection":"portrait","leftParentCellType":"default","leftParentCellCustomRowName":"","leftParentCellCustomColName":"","topParentCellType":"default","topParentCellCustomRowName":"","topParentCellCustomColName":"","type":"dataSource"}},{"col":"2","row":"2","sheet":"1wEx3S26r-bZsG_oVLwiL","type":"dataSource","custom":{"field":"user.education","polymerizationType":"2","summaryType":"sum","fillDirection":"portrait","leftParentCellType":"default","leftParentCellCustomRowName":"","leftParentCellCustomColName":"","topParentCellType":"default","topParentCellCustomRowName":"","topParentCellCustomColName":"","type":"dataSource"}},{"col":"3","row":"2","sheet":"1wEx3S26r-bZsG_oVLwiL","type":"dataSource","custom":{"field":"user.salary","polymerizationType":"3","summaryType":"sum","fillDirection":"portrait","leftParentCellType":"default","leftParentCellCustomRowName":"","leftParentCellCustomColName":"","topParentCellType":"default","topParentCellCustomRowName":"","topParentCellCustomColName":"","type":"dataSource"}},{"col":"2","row":"3","sheet":"1wEx3S26r-bZsG_oVLwiL","custom":{"leftParentCellType":"default","leftParentCellCustomRowName":"","leftParentCellCustomColName":"","topParentCellType":"default","topParentCellCustomRowName":"","topParentCellCustomColName":""}}],"floatEcharts":{},"floatImages":{}}', F_SNAPSHOT = N'{"id":"THpPFw","sheetOrder":["1wEx3S26r-bZsG_oVLwiL"],"name":"","appVersion":"0.4.2","locale":"zhCN","styles":{"JeXbVz":{"ff":"Arial","fs":20,"it":0,"bl":1,"ul":{"s":0,"cl":{"rgb":"rgba(0,0,0,0.85)"}},"st":{"s":0,"cl":{"rgb":"rgba(0,0,0,0.85)"}},"ol":{"s":0,"cl":{"rgb":"rgba(0,0,0,0.85)"}},"tr":{"a":0},"td":0,"cl":{"rgb":"rgba(0,0,0,0.85)"},"ht":2,"vt":2,"tb":3,"pd":{"t":0,"b":2,"l":2,"r":2},"bd":{"t":null,"b":null,"l":null,"r":null}},"Yf_WAI":{"ff":"Arial","fs":11,"it":0,"bl":0,"ul":{"s":0,"cl":{"rgb":"rgb(255,255,255)"}},"st":{"s":0,"cl":{"rgb":"rgb(255,255,255)"}},"ol":{"s":0,"cl":{"rgb":"rgb(255,255,255)"}},"tr":{"a":0},"td":0,"cl":{"rgb":"rgb(255,255,255)"},"bg":{"rgb":"rgb(22,144,255)"},"ht":2,"vt":2,"tb":3,"pd":{"t":0,"b":2,"l":2,"r":2},"bd":{"l":{"cl":{"rgb":"rgb(204,204,204)"},"s":1},"r":{"cl":{"rgb":"rgb(204,204,204)"},"s":1},"b":{"cl":{"rgb":"rgb(204,204,204)"},"s":1}}},"3RaoL9":{"ff":"Arial","fs":11,"it":0,"bl":0,"ul":{"s":0,"cl":{"rgb":"rgb(255,255,255)"}},"st":{"s":0,"cl":{"rgb":"rgb(255,255,255)"}},"ol":{"s":0,"cl":{"rgb":"rgb(255,255,255)"}},"tr":{"a":0},"td":0,"cl":{"rgb":"rgb(255,255,255)"},"bg":{"rgb":"rgb(22,144,255)"},"ht":2,"vt":2,"tb":3,"pd":{"t":0,"b":2,"l":2,"r":2},"bd":{"r":{"cl":{"rgb":"rgb(204,204,204)"},"s":1},"b":{"cl":{"rgb":"rgb(204,204,204)"},"s":1}}},"QySq0b":{"ff":"Arial","fs":11,"it":0,"bl":0,"ul":{"s":0,"cl":{"rgb":"rgb(255,255,255)"}},"st":{"s":0,"cl":{"rgb":"rgb(255,255,255)"}},"ol":{"s":0,"cl":{"rgb":"rgb(255,255,255)"}},"tr":{"a":0},"td":0,"cl":{"rgb":"rgb(255,255,255)"},"bg":{"rgb":"rgb(22,144,255)"},"ht":2,"vt":2,"tb":3,"pd":{"t":0,"b":2,"l":2,"r":2},"bd":{"b":
UPDATE report_version SET F_ID = N'623211524311220805', F_CELLS = N'{"cells":[{"col":"0","row":"0","sheet":"wqX2Z5otdmEbeHUd2LNPB","custom":{"leftParentCellType":"default","leftParentCellCustomRowName":"","leftParentCellCustomColName":"","topParentCellType":"default","topParentCellCustomRowName":"","topParentCellCustomColName":""}},{"col":"2","row":"1","sheet":"wqX2Z5otdmEbeHUd2LNPB","type":"dataSource","custom":{"field":"user.education","polymerizationType":"2","summaryType":"sum","fillDirection":"landscape","leftParentCellType":"default","leftParentCellCustomRowName":"","leftParentCellCustomColName":"","topParentCellType":"default","topParentCellCustomRowName":"","topParentCellCustomColName":"","type":"dataSource"}},{"col":"3","row":"1","sheet":"wqX2Z5otdmEbeHUd2LNPB","custom":{"leftParentCellType":"default","leftParentCellCustomRowName":"","leftParentCellCustomColName":"","topParentCellType":"default","topParentCellCustomRowName":"","topParentCellCustomColName":""}},{"col":"2","row":"2","sheet":"wqX2Z5otdmEbeHUd2LNPB","type":"dataSource","custom":{"field":"user.sex","polymerizationType":"2","summaryType":"sum","fillDirection":"landscape","leftParentCellType":"default","leftParentCellCustomRowName":"","leftParentCellCustomColName":"","topParentCellType":"default","topParentCellCustomRowName":"","topParentCellCustomColName":"","type":"dataSource"}},{"col":"0","row":"3","sheet":"wqX2Z5otdmEbeHUd2LNPB","type":"dataSource","custom":{"field":"user.orgname","polymerizationType":"2","summaryType":"sum","fillDirection":"portrait","leftParentCellType":"default","leftParentCellCustomRowName":"","leftParentCellCustomColName":"","topParentCellType":"default","topParentCellCustomRowName":"","topParentCellCustomColName":"","type":"dataSource"}},{"col":"1","row":"3","sheet":"wqX2Z5otdmEbeHUd2LNPB","type":"dataSource","custom":{"field":"user.depName","polymerizationType":"2","summaryType":"sum","fillDirection":"portrait","leftParentCellType":"default","leftParentCellCustomRowName":"","leftParentCellCustomColName":"","topParentCellType":"default","topParentCellCustomRowName":"","topParentCellCustomColName":"","type":"dataSource"}},{"col":"2","row":"3","sheet":"wqX2Z5otdmEbeHUd2LNPB","type":"dataSource","custom":{"field":"user.salary","polymerizationType":"3","summaryType":"sum","fillDirection":"portrait","leftParentCellType":"default","leftParentCellCustomRowName":"","leftParentCellCustomColName":"","topParentCellType":"default","topParentCellCustomRowName":"","topParentCellCustomColName":"","type":"dataSource"}},{"col":"3","row":"3","sheet":"wqX2Z5otdmEbeHUd2LNPB","custom":{"leftParentCellType":"none","leftParentCellCustomRowName":"","leftParentCellCustomColName":"","topParentCellType":"none","topParentCellCustomRowName":"","topParentCellCustomColName":""}},{"col":"2","row":"4","sheet":"wqX2Z5otdmEbeHUd2LNPB","type":"dataSource","custom":{"field":"user.salary","polymerizationType":"3","summaryType":"sum","fillDirection":"portrait","leftParentCellType":"default","leftParentCellCustomRowName":"","leftParentCellCustomColName":"","topParentCellType":"custom","topParentCellCustomRowName":"C","topParentCellCustomColName":"3","type":"dataSource"}},{"col":"3","row":"4","sheet":"wqX2Z5otdmEbeHUd2LNPB","custom":{"leftParentCellType":"none","leftParentCellCustomRowName":"","leftParentCellCustomColName":"","topParentCellType":"none","topParentCellCustomRowName":"","topParentCellCustomColName":""}}],"floatEcharts":{},"floatImages":{}}', F_SNAPSHOT = N'{"id":"4zip_g","sheetOrder":["wqX2Z5otdmEbeHUd2LNPB"],"name":"","appVersion":"0.4.2","locale":"zhCN","styles":{"58QHi5":{"ff":"Arial","fs":10,"it":0,"bl":0,"ul":{"s":0,"cl":{"rgb":"rgba(0,0,0,0.85)"}},"st":{"s":0,"cl":{"rgb":"rgba(0,0,0,0.85)"}},"ol":{"s":0,"cl":{"rgb":"rgba(0,0,0,0.85)"}},"tr":{"a":0},"td":0,"cl":{"rgb":"rgba(0,0,0,0.85)"},"ht":0,"vt":0,"tb":3,"pd":{"t":0,"b":2,"l":2,"r":2},"bd":{"r":null}},"wOi_9j":{"ff":"Arial","fs":18,"it":0,"bl":1,"ul":{"s":0,"cl":{"rgb":"rgba(0,0,0,0.85)"}},"st":{"s":0,"cl":{"rgb":"rgba(0,0,0,0.85)"}},"ol":{"s":0,"cl":{"rgb":"rgba(0,0,0,0.85)"}},"tr":{"a":0},"
UPDATE report_version SET F_ID = N'623216892206645829', F_CELLS = N'{"cells":[{"col":"0","row":"0","sheet":"w52kG71f16x2NGaC2KaZK","custom":{"leftParentCellType":"default","leftParentCellCustomRowName":"","leftParentCellCustomColName":"","topParentCellType":"default","topParentCellCustomRowName":"","topParentCellCustomColName":""}},{"col":"2","row":"1","sheet":"w52kG71f16x2NGaC2KaZK","type":"dataSource","custom":{"field":"user.education","polymerizationType":"2","summaryType":"sum","fillDirection":"landscape","leftParentCellType":"default","leftParentCellCustomRowName":"","leftParentCellCustomColName":"","topParentCellType":"default","topParentCellCustomRowName":"","topParentCellCustomColName":"","type":"dataSource"}},{"col":"2","row":"2","sheet":"w52kG71f16x2NGaC2KaZK","type":"dataSource","custom":{"field":"user.sex","polymerizationType":"2","summaryType":"sum","fillDirection":"landscape","leftParentCellType":"default","leftParentCellCustomRowName":"","leftParentCellCustomColName":"","topParentCellType":"default","topParentCellCustomRowName":"","topParentCellCustomColName":"","type":"dataSource"}},{"col":"3","row":"2","sheet":"w52kG71f16x2NGaC2KaZK","custom":{"leftParentCellType":"default","leftParentCellCustomRowName":"","leftParentCellCustomColName":"","topParentCellType":"default","topParentCellCustomRowName":"","topParentCellCustomColName":""}},{"col":"0","row":"3","sheet":"w52kG71f16x2NGaC2KaZK","type":"dataSource","custom":{"field":"user.orgname","polymerizationType":"2","summaryType":"sum","fillDirection":"portrait","leftParentCellType":"default","leftParentCellCustomRowName":"","leftParentCellCustomColName":"","topParentCellType":"default","topParentCellCustomRowName":"","topParentCellCustomColName":"","type":"dataSource"}},{"col":"1","row":"3","sheet":"w52kG71f16x2NGaC2KaZK","type":"dataSource","custom":{"field":"user.depName","polymerizationType":"2","summaryType":"sum","fillDirection":"portrait","leftParentCellType":"default","leftParentCellCustomRowName":"","leftParentCellCustomColName":"","topParentCellType":"default","topParentCellCustomRowName":"","topParentCellCustomColName":"","type":"dataSource"}},{"col":"2","row":"3","sheet":"w52kG71f16x2NGaC2KaZK","type":"dataSource","custom":{"field":"user.username","polymerizationType":"3","summaryType":"count","fillDirection":"portrait","leftParentCellType":"default","leftParentCellCustomRowName":"","leftParentCellCustomColName":"","topParentCellType":"default","topParentCellCustomRowName":"","topParentCellCustomColName":"","type":"dataSource"}},{"col":"1","row":"4","sheet":"w52kG71f16x2NGaC2KaZK","custom":{"leftParentCellType":"default","leftParentCellCustomRowName":"","leftParentCellCustomColName":"","topParentCellType":"default","topParentCellCustomRowName":"","topParentCellCustomColName":""}},{"col":"2","row":"4","sheet":"w52kG71f16x2NGaC2KaZK","type":"dataSource","custom":{"field":"user.username","polymerizationType":"3","summaryType":"count","fillDirection":"portrait","leftParentCellType":"custom","leftParentCellCustomRowName":"A","leftParentCellCustomColName":"4","topParentCellType":"custom","topParentCellCustomRowName":"C","topParentCellCustomColName":"3","type":"dataSource"}}],"floatEcharts":{},"floatImages":{}}', F_SNAPSHOT = N'{"id":"adhHq0","sheetOrder":["w52kG71f16x2NGaC2KaZK"],"name":"","appVersion":"0.4.2","locale":"zhCN","styles":{"r0gYO6":{"ff":"Arial","fs":18,"it":0,"bl":1,"ul":{"s":0,"cl":{"rgb":"rgba(0,0,0,0.85)"}},"st":{"s":0,"cl":{"rgb":"rgba(0,0,0,0.85)"}},"ol":{"s":0,"cl":{"rgb":"rgba(0,0,0,0.85)"}},"tr":{"a":0},"td":0,"cl":{"rgb":"rgba(0,0,0,0.85)"},"ht":2,"vt":2,"tb":3,"pd":{"t":0,"b":2,"l":2,"r":2},"bd":{"b":null}},"Y1mNg9":{"ff":"Arial","fs":10,"it":0,"bl":0,"ul":{"s":0,"cl":{"rgb":"rgb(255,255,255)"}},"st":{"s":0,"cl":{"rgb":"rgb(255,255,255)"}},"ol":{"s":0,"cl":{"rgb":"rgb(255,255,255)"}},"tr":{"a":0},"td":0,"cl":{"rgb":"rgb(255,255,255)"},"bg":{"rgb":"rgb(22,144,255)"},"ht":1,"vt":2,"tb":3,"pd":{"t":0,"b":2,"l":2,"r":2},"bd":{"l":{"cl":{"rgb":"rgb(204,204,204)"},"s":1},"r":{"cl":{"rgb":"rgb(0,0,0)"},"s":1},"t":{"cl":{"rgb":"rgb(204,
UPDATE report_version SET F_ID = N'623530488656560453', F_CELLS = N'{"cells":[{"col":"0","row":"0","sheet":"JU9V20nEuCDEMPf-34YKB","custom":{"leftParentCellType":"default","leftParentCellCustomRowName":"","leftParentCellCustomColName":"","topParentCellType":"default","topParentCellCustomRowName":"","topParentCellCustomColName":""}},{"col":"2","row":"1","sheet":"JU9V20nEuCDEMPf-34YKB","custom":{"leftParentCellType":"default","leftParentCellCustomRowName":"","leftParentCellCustomColName":"","topParentCellType":"default","topParentCellCustomRowName":"","topParentCellCustomColName":""}},{"col":"2","row":"2","sheet":"JU9V20nEuCDEMPf-34YKB","type":"dataSource","custom":{"field":"user.education","polymerizationType":"2","summaryType":"sum","fillDirection":"landscape","leftParentCellType":"default","leftParentCellCustomRowName":"","leftParentCellCustomColName":"","topParentCellType":"default","topParentCellCustomRowName":"","topParentCellCustomColName":"","type":"dataSource"}},{"col":"0","row":"3","sheet":"JU9V20nEuCDEMPf-34YKB","type":"dataSource","custom":{"field":"user.orgname","polymerizationType":"2","summaryType":"sum","fillDirection":"portrait","leftParentCellType":"default","leftParentCellCustomRowName":"","leftParentCellCustomColName":"","topParentCellType":"default","topParentCellCustomRowName":"","topParentCellCustomColName":"","type":"dataSource"}},{"col":"1","row":"3","sheet":"JU9V20nEuCDEMPf-34YKB","type":"dataSource","custom":{"field":"user.depName","polymerizationType":"2","summaryType":"sum","fillDirection":"portrait","leftParentCellType":"default","leftParentCellCustomRowName":"","leftParentCellCustomColName":"","topParentCellType":"default","topParentCellCustomRowName":"","topParentCellCustomColName":"","type":"dataSource"}},{"col":"2","row":"3","sheet":"JU9V20nEuCDEMPf-34YKB","type":"dataSource","custom":{"field":"user.salary","polymerizationType":"3","summaryType":"sum","fillDirection":"portrait","leftParentCellType":"default","leftParentCellCustomRowName":"","leftParentCellCustomColName":"","topParentCellType":"default","topParentCellCustomRowName":"","topParentCellCustomColName":"","type":"dataSource"}}],"floatEcharts":{"sRCxaF26kwvrYGpBkyY67":{"drawingId":"sRCxaF26kwvrYGpBkyY67","domId":"echart_98b3ca0038144cd7bbdd7cf0057f6465","echartType":"bar","option":{"summaryType":"sum","chartType":"bar","animation":false,"styleType":1,"bar":{"barTypeList":[]},"legendTop":93,"legendLeft":40,"title":{"text":"各部门学历薪资统计","textI18nCode":"","show":true,"left":"center","textStyle":{"fontSize":18,"fontWeight":"normal","color":"#333"},"showSub":true,"subtext":"","subtextI18nCode":"","subtextStyle":{"fontSize":12,"fontWeight":"normal","color":"#aaa"}},"barWidth":25,"itemStyle":{"borderRadius":0},"grid":{"left":61,"top":60,"right":10,"bottom":50},"tooltip":{"show":true,"backgroundColor":"#fff","textStyle":{"color":"#303133","fontSize":14,"fontWeight":""}},"legend":{"show":true,"textStyle":{"fontSize":14},"fontSize":14,"orient":"horizontal","top":"93%","left":"40%"},"label":{"show":false,"fontSize":14,"fontWeight":"","color":"#303133","backgroundColor":"","seriesLabelPosition":"outside","seriesLabelShowInfo":["count","percent"],"seriesCenterLeft":50,"seriesCenterTop":50,"seriesLineStyleWidth":2,"seriesSymbolRotate":4},"color":{"AxisTextStyleColor":"","AxisLineStyleColor":"","list":[]},"xAxis":{"type":"category","show":true,"data":["衬衫","羊毛衫","雪纺衫","裤子","高跟鞋","袜子"],"inverse":false,"name":"","nameTextStyle":{"color":"#303133","fontSize":14,"fontWeight":""},"axisLine":{"show":true,"lineStyle":{"color":"#303133"}},"axisLabel":{"rotate":0,"color":"#303133","fontSize":14,"fontWeight":""},"splitLine":{"show":false,"lineStyle":{"color":"#DFDFDF"}},"axisTick":{"alignWithLabel":false}},"yAxis":{"show":true,"inverse":false,"name":"","nameTextStyle":{"color":"#303133","fontSize":14,"fontWeight":""},"axisLine":{"show":true,"lineStyle":{"color":"#303133"}},"axisLabel":{"rotate":0,"color":"#303133","fontSize":14,"fontWeight":""},"splitLine":{"show":false,"lineStyle":{"color":"#DFDFDF"}},"type"
-- 修改工作流默认状态
update workflow_template set f_status = 0 where f_enabled_mark = 0 and f_status is null;
update workflow_template set f_status = 1 where f_enabled_mark = 1 and f_status is null;
update workflow_template set f_show_type = 0 where f_show_type is null;