fs-danaus
2024-09-13 d4a21ed564d51bbcf00543b8d7c3eedb77ff28f4
提交 | 用户 | age
385e2d 1 package com.yc.crm.custom.service;
X 2
7cf738 3 import com.yc.crm.custom.entity.T480601HEntity;
X 4
5 import java.util.List;
6
385e2d 7 public interface CustomIfc {
7cf738 8     /**
X 9      * 保存客户
10      *
11      * @param custom
12      */
13     abstract String saveCustom(T480601HEntity custom);
14
15     /**
16      * 修改客户
17      * @param custom
18      * @return
19      */
20     abstract Integer updateCustom(T480601HEntity custom);
21
22     /**
23      * 删除客户
24      * @param docCode
25      * @param userCode
26      * @return
27      */
28     abstract Integer deleteCustom(String docCode, String userCode);
29
30     /**
31      * 查询客户列
32      * @param userCode
33      * @return
34      */
35     abstract List<T480601HEntity> getCustomList(String userCode);
36
37     /**
38      * 查询客户详情
39      * @param docCode
40      * @param userCode
41      * @return
42      */
43     abstract T480601HEntity getCustomInfo(String docCode,String userCode);
385e2d 44 }