xinyb
2024-09-20 562e208f397b70d27c519f225d821298ab04c5cf
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 userCode,Integer blackId);
 
    /**
     * 查询黑名单
     * @param name
     * @return
     */
    List<T482106Entity> getBlackList(String userCode,String search);
}