xinyb
2024-09-19 18ffbca9acaccd5099a7a63652f52210f59a7e40
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
38
39
40
41
42
43
44
45
46
package com.yc.crm.base.service;
 
import com.yc.crm.base.entity.*;
 
import javax.servlet.http.HttpSession;
import java.util.List;
import java.util.Map;
 
public interface CrmServiceIfc {
 
    Map getBaseInfo(HttpSession session);
 
    Object getUserInfo(HttpSession session, Page page);
 
    void followUpSave(T482105Entity entity);
 
    Response followUpList(FollowUpRequestEntity entity);
 
    void followUpDel(Integer id);
 
    List<T482117Entity> personalList(String userCode, String groupid);
 
    void personalSave(List<T482117Entity> list, String userCode);
 
    Response auditList(String userCode, AuditRequestEntity entity);
 
    void scheduleSave(T482112Entity entity);
 
    Response scheduleList(ScheduleRequestEntity entity);
 
    void scheduleDel(T482112Entity entity);
 
    void scheduleAttention(T482112Entity pinFlag);
 
    void scheduleCompleted(Integer id);
 
    void commentSave(T482104Entity entity);
 
    Response commentList(CommentRequestEntity entity);
 
    void commentDel(Integer id);
 
    List<T482112Entity> listByMonth(String date,String dbi,String formid);
 
    Object getMailUserInfo(String key);
}