付延余
2022-12-16 f0f8ee8c4a945adbc742d9bab69382b28ad311fb
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
27
28
29
30
package com.wgcloud.mapper;
 
import com.wgcloud.entity.MailSet;
import org.springframework.stereotype.Repository;
 
import java.util.List;
import java.util.Map;
 
/**
 * @version v3.3
 * @ClassName:MailSetMapper.java
 * @author: http://www.wgstart.com
 * @date: 2021年1月16日
 * @Description: 查看磁盘IO使用情况
 * @Copyright: 2019-2021 wgcloud. All rights reserved.
 */
@Repository
public interface MailSetMapper {
 
 
    public List<MailSet> selectAllByParams(Map<String, Object> map) throws Exception;
 
    public void save(MailSet MailSet) throws Exception;
 
    public int deleteById(String[] id) throws Exception;
 
    public int updateById(MailSet MailSet) throws Exception;
 
 
}