xinyb
10 天以前 658898d28cded745ca15ee0a89e3025358356259
提交 | 用户 | age
428443 1 package com.yc.crm.mail.service;
X 2
6a63e2 3 //import com.yc.crm.mail.entity.T482115Entity;
X 4
5 import com.yc.crm.base.entity.T482115Entity;
428443 6
X 7 import java.util.List;
8
9 public interface MailTagIfc {
10     /**
11      * 保存个人签名
12      * @param quickText
13      */
14     void saveTag(T482115Entity tag);
15
16     /**
17      * 修改个人签名
18      * @param quickText
19      * @return
20      */
21     Integer updateTag(T482115Entity tag);
22
23     /**
24      * 删除个人签名
25      * @param userCode
26      * @param textId
27      * @return
28      */
29     Integer deleteTag(String userCode,Integer tagId);
30
31     /**
32      * 查询个人签名
33      * @param name
34      * @return
35      */
658898 36     List<T482115Entity> getTagList(String userCode, String search,Integer type);
428443 37 }