BUGFIX: 系列设计 修改模特后,原模特丢失问题

This commit is contained in:
2025-06-30 19:32:16 +08:00
parent 905d296bdf
commit 4273d0efc0
4 changed files with 82 additions and 57 deletions

View File

@@ -2,6 +2,7 @@ package com.ai.da.mapper.primary;
import com.ai.da.common.config.mybatis.plus.CommonMapper;
import com.ai.da.mapper.primary.entity.CollectionElement;
import com.ai.da.mapper.primary.entity.CollectionElementRelModel;
import java.util.List;
@@ -14,4 +15,6 @@ import java.util.List;
public interface CollectionElementMapper extends CommonMapper<CollectionElement> {
List<CollectionElement> selectDeleteList();
List<CollectionElementRelModel> selectByProject(Long projectId);
}