Compare commits

..

6 Commits

Author SHA1 Message Date
cf38c648b2 服务发布(无redis版) 2025-05-20 20:53:24 +08:00
eaec336fc9 服务发布(无redis版) 2025-05-20 20:53:24 +08:00
5ccc447ca1 日志提交 2025-05-20 20:53:23 +08:00
d998dc3979 数据集生命周期版本2.0 2025-05-20 20:53:23 +08:00
e706d8311f Merge remote-tracking branch 'origin/main' 2025-05-20 16:45:00 +08:00
370a2d3ce0 [提交]:提交工作日报 2025-05-20 16:36:47 +08:00
7 changed files with 53 additions and 17 deletions

View File

@ -15,7 +15,7 @@
- 继续开发模型评估部分
- 尽量解决lombok存在的问题
## 2025年5月14
## 2025年5月15
### ✅ 今日完成
@ -30,21 +30,6 @@
* 继续优化模型评估部分
## 2025年5月15日
### ✅ 今日完成
- 基本完成模型评估部分的功能开发
- 加入SpringDoc OpenAPI相关依赖和配置文件自动生成 REST API 文档和 Swagger UI
### 🚧 进行中
- 模型评估部分优化
### 📅 明日计划
- 模型评估部分优化
## 2025年5月19日
### ✅ 今日完成
@ -58,4 +43,20 @@
### 📅 明日计划
- 基本完成创建模型部分后端开发
- 基本完成创建模型部分后端开发
## 2025年5月20日
### ✅ 今日完成
- 数据库表字段新增
- 实体类定义与修改
- 基本完成创建模型部分后端开发
### 🚧 进行中
- 创建模型部分后端优化
### 📅 明日计划
- 模型信息管理部分后端开发

View File

@ -0,0 +1,2 @@
package com.bipt.intelligentapplicationorchestrationservice.controller;public class ModelController {
}

View File

@ -0,0 +1,2 @@
package com.bipt.intelligentapplicationorchestrationservice.mapper;public interface ModelMapper {
}

View File

@ -0,0 +1,2 @@
package com.bipt.intelligentapplicationorchestrationservice.pojo;public class ModelDTO {
}

View File

@ -0,0 +1,2 @@
package com.bipt.intelligentapplicationorchestrationservice.service.Impl;public class ModelServiceImpl {
}

View File

@ -0,0 +1,4 @@
package com.bipt.intelligentapplicationorchestrationservice.service.Impl;
public interface ModelService {
}

View File

@ -0,0 +1,23 @@
<?xml version="1.0" encoding="UTF-8" ?>
<!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd">
<mapper namespace="com.bipt.intelligentapplicationorchestrationservice.mapper.EvaluationMapper">
<!--查询模型日志详细信息-->
<select id="selectLogDetail" resultType="modelLogVO">
select m1.*,
m2.model_name,
m3.model_config, m3.version
from model_log m1,
model_info m2,
model_version m3
where m1.model_id=m2.id and m3.model_id=m2.id and m1.model_id = #{id}
</select>
<!--更新模型信息(目前只更新模型是否上线,后续如果更多需求可优化>-->
<update id="update">
update model_version set
<if test="status != null">
status=#{status}
</if>
where model_id=#{id}
</update>
</mapper>