xinyb
2024-08-26 385e2d9e7ffed3fdb036aea5506172b438c8750f
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
31
32
33
34
35
package com.yc.crm.mail.service;
 
import com.yc.crm.mail.entity.T482106Entity;
 
import java.util.List;
 
public interface MailBlackListIfc {
    /**
     * 保存黑名单
     * @param quickText
     */
    void saveBlackList(T482106Entity black);
 
    /**
     * 修改黑名单
     * @param quickText
     * @return
     */
    Integer updateBlackList(T482106Entity black);
 
    /**
     * 删除黑名单
     * @param userCode
     * @param textId
     * @return
     */
    Integer deleteBlackList(String blackId);
 
    /**
     * 查询黑名单
     * @param name
     * @return
     */
    List<T482106Entity> getBlackList(String BlackName);
}