新增安全会议纪要相关接口

This commit is contained in:
lcj
2025-04-14 18:08:26 +08:00
parent c6842a00f2
commit 02d577e604
23 changed files with 1351 additions and 24 deletions

View File

@ -655,3 +655,26 @@ CREATE TABLE `bus_daily_piece_item`
PRIMARY KEY (`id`) USING BTREE,
INDEX `idx_report_id` (`report_id` ASC) USING BTREE comment '日报id'
) comment = '施工人员日报计件信息' collate = utf8mb4_unicode_ci;
DROP TABLE IF EXISTS `bus_document_safety_meeting`;
CREATE TABLE `bus_document_safety_meeting`
(
`id` bigint not null auto_increment comment '主键id',
`project_id` bigint null comment '项目id',
`pid` bigint default 0 null comment '父级0代表顶级',
`file_name` varchar(255) null comment '文件名称',
`file_path` varchar(512) null comment '文件路径',
`file_type` char(1) not null comment '文件类型1文件-2文件夹-3图片',
`file_suffix` varchar(20) null comment '文件后缀',
`file_status` char(1) default '0' null comment '状态0正常 1删除',
`original_name` varchar(255) null comment '原文件名',
`remark` varchar(512) null comment '备注',
`create_by` varchar(64) null comment '创建者',
`update_by` varchar(64) null comment '更新者',
`create_time` datetime default CURRENT_TIMESTAMP null comment '创建时间',
`update_time` datetime default CURRENT_TIMESTAMP null on update CURRENT_TIMESTAMP comment '更新时间',
`deleted_at` datetime null comment '删除时间',
PRIMARY KEY (`id`) USING BTREE,
INDEX `idx_pid` (`pid` ASC) USING BTREE,
INDEX `idx_project_id` (`project_id` ASC) USING BTREE
) comment = '安全会议纪要' COLLATE = utf8mb4_unicode_ci;