| | |
| | | import org.springblade.mdm.program.entity.NcProgram; |
| | | import org.springblade.mdm.program.vo.NcNodeProgramQueryVO; |
| | | import org.springblade.mdm.program.vo.NcNodeProgramVO; |
| | | import org.springblade.mdm.program.vo.NcNodeQueryVO; |
| | | import org.springblade.mdm.program.vo.NcNodeVO; |
| | | |
| | | import java.util.List; |
| | |
| | | * @return 程序节点 |
| | | */ |
| | | NcNode getLastProgramNode(String name); |
| | | |
| | | List<NcNodeVO> searchList(NcNodeQueryVO queryVO); |
| | | |
| | | List<NcNodeVO> searchListInIds(List<Long> ids); |
| | | |
| | | /** |
| | | * 查询节点(用于文件节点)的历史列表 |
| | | * @param parentId 父节点id |
| | | * @param name 节点名称 |
| | | * @return |
| | | */ |
| | | List<NcNodeVO> historyByParentIdAndName(@Param("parentId")Long parentId,@Param("name") String name); |
| | | } |