xinyb
2024-09-18 57c8bf0a91f08d6fbd31d2b5c4e66f0945607bb0
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
36
37
package com.yc.crm.mail.service;
 
//import com.yc.crm.mail.entity.T482115Entity;
 
import com.yc.crm.base.entity.T482115Entity;
 
import java.util.List;
 
public interface MailTagIfc {
    /**
     * 保存个人签名
     * @param quickText
     */
    void saveTag(T482115Entity tag);
 
    /**
     * 修改个人签名
     * @param quickText
     * @return
     */
    Integer updateTag(T482115Entity tag);
 
    /**
     * 删除个人签名
     * @param userCode
     * @param textId
     * @return
     */
    Integer deleteTag(String userCode,Integer tagId);
 
    /**
     * 查询个人签名
     * @param name
     * @return
     */
    List<T482115Entity> getTagList(String userCode, String search);
}