ProjectInformation/projectinformationboot/文档/2021-12.sql
2024-08-20 16:05:25 +08:00

22 lines
1.4 KiB
SQL
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

-- 添加菜单
INSERT INTO `sys_permission` VALUES ('1472169987613843457', '1461940914174234625', '项目明细图', '/projecttj/projectMxDetail', 'projectStatistics/ProjectMxDetail', NULL, NULL, 1, NULL, '1', 3.00, 0, NULL, 1, 1, 0, 1, NULL, 'admin', '2021-12-18 19:40:51', 'admin', '2021-12-18 19:41:17', 0, 0, '1', 0);
-- 添加角色是 菜单
INSERT INTO `sys_role_permission` VALUES ('126952612220vvvv241', 'f6817f48af4fb3af11b9e8bf182f618b', '1472169987613843457', NULL, NULL, NULL);
-- 项目启动单 新增字段
alter table bus_start_order add column direct_cost varchar(1000) COMMENT '直接成本';
alter table bus_start_order add column indirect_costs varchar(1000) COMMENT '制造费';
alter table bus_start_order add column outsourcing_comparison_column varchar(1000) COMMENT '外协比列';
-- 合同节点明细
alter table bus_contract_management_detail add column payment_amount varchar(500) COMMENT '付款金额';
alter table bus_contract_management_detail add column invoice_not int COMMENT '是否开发票 0:未开发票 1已开发票 默认未开发票';
-- 任务分解与分工
alter table bus_division_labour add column actual_start_time varchar(60) COMMENT '实际开始时间';
alter table bus_division_labour add column actual_end_time varchar(60) COMMENT '实际完成时间';
-- 角色
alter table sys_role add column is_edit int COMMENT '是否可编辑 0:不可编辑 1可编辑 默认不可编辑' default 0;