fix(ccdi-project): 修复Mapper接口,添加缺失的selectDistinctModels方法

This commit is contained in:
wkc
2026-03-06 17:19:22 +08:00
parent 500285de2d
commit fa1a31517d

View File

@@ -18,6 +18,14 @@ public interface CcdiModelParamMapper extends BaseMapper<CcdiModelParam> {
*/ */
List<CcdiModelParam> selectByProjectId(@Param("projectId") Long projectId); List<CcdiModelParam> selectByProjectId(@Param("projectId") Long projectId);
/**
* 查询所有模型列表(去重)
*
* @param projectId 项目ID
* @return 模型列表
*/
List<CcdiModelParam> selectDistinctModels(@Param("projectId") Long projectId);
/** /**
* 批量插入参数 * 批量插入参数
* *