xinyb
7 天以前 f632e7d7c25d8a86b1f6718f467bfef0d3c09058
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
package com.yc.crm.custom.service;
 
import com.yc.crm.custom.entity.T480601Entity;
 
import java.util.List;
 
public interface CustomIfc {
    /**
     * 保存客户
     *
     * @param custom
     */
    abstract String saveCustom(T480601Entity custom);
 
    /**
     * 修改客户
     * @param custom
     * @return
     */
    abstract Integer updateCustom(T480601Entity custom);
 
    /**
     * 删除客户
     * @param docCode
     * @param userCode
     * @return
     */
    abstract Integer deleteCustom(String docCode, String userCode);
 
    /**
     * 查询客户列
     * @param userCode
     * @return
     */
    abstract List<T480601Entity> getCustomList(String userCode);
 
    /**
     * 查询客户详情
     * @param docCode
     * @param userCode
     * @return
     */
    abstract T480601Entity getCustomInfo(String docCode, String userCode);
}