ProcessDefinitionMapper.java 3.7 KB
Newer Older
L
ligang 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16
/*
 * Licensed to the Apache Software Foundation (ASF) under one or more
 * contributor license agreements.  See the NOTICE file distributed with
 * this work for additional information regarding copyright ownership.
 * The ASF licenses this file to You under the Apache License, Version 2.0
 * (the "License"); you may not use this file except in compliance with
 * the License.  You may obtain a copy of the License at
 *
 *    http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */
Q
qiaozhanwei 已提交
17
package org.apache.dolphinscheduler.dao.mapper;
L
ligang 已提交
18

Q
qiaozhanwei 已提交
19 20
import org.apache.dolphinscheduler.dao.entity.DefinitionGroupByUser;
import org.apache.dolphinscheduler.dao.entity.ProcessDefinition;
B
bao liang 已提交
21 22
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
import com.baomidou.mybatisplus.core.metadata.IPage;
23
import org.apache.ibatis.annotations.MapKey;
B
bao liang 已提交
24
import org.apache.ibatis.annotations.Param;
L
ligang 已提交
25 26

import java.util.List;
27
import java.util.Map;
L
ligang 已提交
28

29 30 31
/**
 * process definition mapper interface
 */
B
bao liang 已提交
32
public interface ProcessDefinitionMapper extends BaseMapper<ProcessDefinition> {
L
ligang 已提交
33 34


35 36 37 38 39 40
    /**
     * query process definition by name
     * @param projectId projectId
     * @param name name
     * @return process definition
     */
L
ligang 已提交
41 42 43
    ProcessDefinition queryByDefineName(@Param("projectId") int projectId,
                                        @Param("processDefinitionName") String name);

44 45 46 47 48
    /**
     * query process definition by id
     * @param processDefineId processDefineId
     * @return process definition
     */
49 50
    ProcessDefinition queryByDefineId(@Param("processDefineId") int processDefineId);

51 52 53 54 55 56 57 58 59
    /**
     * process definition page
     * @param page page
     * @param searchVal searchVal
     * @param userId userId
     * @param projectId projectId
     * @param isAdmin isAdmin
     * @return process definition IPage
     */
B
bao liang 已提交
60 61 62
    IPage<ProcessDefinition> queryDefineListPaging(IPage<ProcessDefinition> page,
                                                   @Param("searchVal") String searchVal,
                                                   @Param("userId") int userId,
63 64
                                                   @Param("projectId") int projectId,
                                                   @Param("isAdmin") boolean isAdmin);
L
ligang 已提交
65

66 67 68 69 70
    /**
     * query all process definition list
     * @param projectId projectId
     * @return process definition list
     */
L
ligang 已提交
71 72
    List<ProcessDefinition> queryAllDefinitionList(@Param("projectId") int projectId);

73 74 75 76 77
    /**
     * query process definition by ids
     * @param ids ids
     * @return process definition list
     */
B
bao liang 已提交
78
    List<ProcessDefinition> queryDefinitionListByIdList(@Param("ids") Integer[] ids);
L
ligang 已提交
79

80 81 82 83 84
    /**
     * query process definition by tenant
     * @param tenantId tenantId
     * @return process definition list
     */
85 86
    List<ProcessDefinition> queryDefinitionListByTenant(@Param("tenantId") int tenantId);

87
    /**
88
     * count process definition group by user
89 90 91 92 93
     * @param userId userId
     * @param projectIds projectIds
     * @param isAdmin isAdmin
     * @return process definition list
     */
L
ligang 已提交
94 95
    List<DefinitionGroupByUser> countDefinitionGroupByUser(
            @Param("userId") Integer userId,
96 97
            @Param("projectIds") Integer[] projectIds,
            @Param("isAdmin") boolean isAdmin);
98 99 100 101 102 103 104

    /**
     * list all resource ids
     * @return resource ids list
     */
    @MapKey("id")
    List<Map<String, Object>> listResources();
L
ligang 已提交
105
}