xinyb
7 天以前 f632e7d7c25d8a86b1f6718f467bfef0d3c09058
提交 | 用户 | age
385e2d 1 package com.yc.crm.custom.service;
X 2
f632e7 3 import com.yc.crm.custom.entity.T480601Entity;
7cf738 4
X 5 import java.util.List;
6
385e2d 7 public interface CustomIfc {
7cf738 8     /**
X 9      * 保存客户
10      *
11      * @param custom
12      */
f632e7 13     abstract String saveCustom(T480601Entity custom);
7cf738 14
X 15     /**
16      * 修改客户
17      * @param custom
18      * @return
19      */
f632e7 20     abstract Integer updateCustom(T480601Entity custom);
7cf738 21
X 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      */
f632e7 35     abstract List<T480601Entity> getCustomList(String userCode);
7cf738 36
X 37     /**
38      * 查询客户详情
39      * @param docCode
40      * @param userCode
41      * @return
42      */
f632e7 43     abstract T480601Entity getCustomInfo(String docCode, String userCode);
385e2d 44 }