|
@@ -23,6 +23,9 @@ public interface PipelineMapper {
|
|
|
@Select("select * from pipeline where id = #{id}")
|
|
@Select("select * from pipeline where id = #{id}")
|
|
|
PipelinePO selectById(Integer id);
|
|
PipelinePO selectById(Integer id);
|
|
|
|
|
|
|
|
|
|
+ @Select("select * from pipeline where name = #{name} and project_id = #{projectId}")
|
|
|
|
|
+ PipelinePO selectByNameAndProjectId(@Param("name") String name,@Param("projectId") Integer projectId);
|
|
|
|
|
+
|
|
|
@Select("select * from pipeline where project_id = #{id}")
|
|
@Select("select * from pipeline where project_id = #{id}")
|
|
|
List<PipelinePO> selectByProjectId(Integer id);
|
|
List<PipelinePO> selectByProjectId(Integer id);
|
|
|
|
|
|