添加获取大屏数据相关接口

This commit is contained in:
lcj
2025-04-28 16:57:17 +08:00
parent a65a73c512
commit 626503abea
69 changed files with 1890 additions and 60 deletions

View File

@ -939,3 +939,21 @@ CREATE TABLE `bus_project_file`
PRIMARY KEY (`id`) USING BTREE,
INDEX `idx_project_id` (`project_id` ASC) USING BTREE comment '项目id'
) comment = '项目文件存储' collate = utf8mb4_unicode_ci;
DROP TABLE IF EXISTS `bus_project_news`;
CREATE TABLE `bus_project_news`
(
`id` bigint not null auto_increment comment '主键id',
`project_id` bigint not null comment '项目id',
`title` varchar(64) null comment '标题',
`content` longtext null comment '内容',
`file` 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 '删除时间',
`is_delete` tinyint(4) default 0 not null comment '是否删除0正常 1删除',
PRIMARY KEY (`id`) USING BTREE,
INDEX `idx_project_id` (`project_id` ASC) USING BTREE comment '项目id'
) comment = '项目新闻' COLLATE = utf8mb4_unicode_ci;