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);
|
}
|