update 调整企标计划字段
This commit is contained in:
+16
-4
@@ -7,6 +7,7 @@ create table laws_enterprise_standard_plan
|
||||
standard_number varchar(200) comment '标准编号',
|
||||
standard_name varchar(200) comment '标准名称',
|
||||
main_drafting_user varchar(50) comment '起草人',
|
||||
depart_id varchar(50) comment '所在部门id',
|
||||
professional_module varchar(30) comment '专业模块',
|
||||
draft_complete_date datetime comment '初稿完成日期',
|
||||
plan_archiving_date datetime comment '计划归档日期',
|
||||
@@ -107,6 +108,7 @@ create table process_annual_init_link
|
||||
standard_number varchar(200) comment '标准编号',
|
||||
standard_name varchar(200) comment '标准名称',
|
||||
main_drafting_user varchar(50) comment '起草人',
|
||||
depart_id varchar(50) comment '所在部门id',
|
||||
professional_module varchar(30) comment '专业模块',
|
||||
draft_complete_date datetime comment '初稿完成日期',
|
||||
plan_archiving_date datetime comment '计划归档日期',
|
||||
@@ -154,6 +156,7 @@ create table process_plan_change_link
|
||||
revision_type varchar(50) comment '制修订类别',
|
||||
plan_id varchar(36) comment '企标计划',
|
||||
drafting_user varchar(50) comment '起草人',
|
||||
depart_id varchar(50) comment '所在部门id',
|
||||
draft_complete_date datetime comment '初稿完成日期变更后',
|
||||
plan_archiving_date datetime comment '计划归档日期变更后',
|
||||
change_reason varchar(500) comment '变更原因',
|
||||
@@ -235,7 +238,16 @@ create table process_standard_solicit_opinions_user
|
||||
alter table process_standard_solicit_opinions_user
|
||||
comment '标准征求意见流程关联用户';
|
||||
-- 企标计划-计划状态
|
||||
INSERT INTO sys_dict (id, dict_name, dict_code, description, del_flag, create_by, create_time, is_tag_dict, is_read_only) VALUES ('1836301517254893569', '企标计划-计划状态', 'esp_plan_status', '新增:新增计划入库 延期:初稿完成日期和计划归档日期延期 取消:计划取消 如走到初稿、征求意见流程了,计划不允许取消', 0, 'cheryrsm', '2024-09-18 15:09:33', 0, 0);
|
||||
INSERT INTO sys_dict_item (id, dict_id, item_text, item_value, description, sort_order, `status`, create_by, create_time, is_tag_dict, is_read_only, del_flag) VALUES ('1836301610292944898', '1836301517254893569', '新增', '1', '', 1, 1, 'cheryrsm', '2024-09-18 15:09:55', 0, 0, 0);
|
||||
INSERT INTO sys_dict_item (id, dict_id, item_text, item_value, description, sort_order, `status`, create_by, create_time, is_tag_dict, is_read_only, del_flag) VALUES ('1836301637493006338', '1836301517254893569', '延期', '2', '', 2, 1, 'cheryrsm', '2024-09-18 15:10:01', 0, 0, 0);
|
||||
INSERT INTO sys_dict_item (id, dict_id, item_text, item_value, description, sort_order, `status`, create_by, create_time, is_tag_dict, is_read_only, del_flag) VALUES ('1836301659982864385', '1836301517254893569', '取消', '3', '', 3, 1, 'cheryrsm', '2024-09-18 15:10:07', 0, 0, 0);
|
||||
INSERT INTO sys_dict (id, dict_name, dict_code, description, del_flag, create_by, create_time, is_tag_dict,
|
||||
is_read_only)
|
||||
VALUES ('1836301517254893569', '企标计划-计划状态', 'esp_plan_status',
|
||||
'新增:新增计划入库 延期:初稿完成日期和计划归档日期延期 取消:计划取消 如走到初稿、征求意见流程了,计划不允许取消', 0, 'cheryrsm', '2024-09-18 15:09:33', 0, 0);
|
||||
INSERT INTO sys_dict_item (id, dict_id, item_text, item_value, description, sort_order, `status`, create_by,
|
||||
create_time, is_tag_dict, is_read_only, del_flag)
|
||||
VALUES ('1836301610292944898', '1836301517254893569', '新增', '1', '', 1, 1, 'cheryrsm', '2024-09-18 15:09:55', 0, 0, 0);
|
||||
INSERT INTO sys_dict_item (id, dict_id, item_text, item_value, description, sort_order, `status`, create_by,
|
||||
create_time, is_tag_dict, is_read_only, del_flag)
|
||||
VALUES ('1836301637493006338', '1836301517254893569', '延期', '2', '', 2, 1, 'cheryrsm', '2024-09-18 15:10:01', 0, 0, 0);
|
||||
INSERT INTO sys_dict_item (id, dict_id, item_text, item_value, description, sort_order, `status`, create_by,
|
||||
create_time, is_tag_dict, is_read_only, del_flag)
|
||||
VALUES ('1836301659982864385', '1836301517254893569', '取消', '3', '', 3, 1, 'cheryrsm', '2024-09-18 15:10:07', 0, 0, 0);
|
||||
Reference in New Issue
Block a user