xin
2025-04-15 8342e6a5ed78fc007c45609507f0a914c43fec4d
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
package com.oying.modules.maint.mapper;
 
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
import com.oying.modules.maint.domain.Deploy;
import com.oying.modules.maint.domain.dto.DeployQueryCriteria;
import org.apache.ibatis.annotations.Mapper;
import org.apache.ibatis.annotations.Param;
import java.util.List;
import java.util.Set;
 
/**
 * @author Z
 * @description
 * @date 2023-06-12
 **/
@Mapper
public interface DeployMapper extends BaseMapper<Deploy> {
 
    Long countAll(@Param("criteria") DeployQueryCriteria criteria);
 
    List<Deploy> findAll(@Param("criteria") DeployQueryCriteria criteria);
 
    Set<Long> getIdByAppIds(@Param("appIds") Set<Long> appIds);
 
    Deploy getDeployById(@Param("deployId") Long deployId);
}