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
package com.oying.modules.maint.mapper;
 
import com.oying.modules.maint.domain.Server;
import org.apache.ibatis.annotations.Mapper;
import org.apache.ibatis.annotations.Param;
 
import java.util.Set;
 
/**
 * @author Z
 * @description
 * @date 2023-06-12
 **/
@Mapper
public interface DeployServerMapper {
 
    void insertData(@Param("deployId") Long deployId, @Param("servers") Set<Server> servers);
 
    void deleteByDeployId(@Param("deployId") Long deployId);
 
    void deleteByDeployIds(@Param("deployIds") Set<Long> deployIds);
 
    void deleteByServerIds(@Param("serverIds") Set<Long> serverIds);
}