xinyb
7 天以前 f632e7d7c25d8a86b1f6718f467bfef0d3c09058
src/com/yc/crm/custom/service/CustomIfc.java
@@ -1,6 +1,6 @@
package com.yc.crm.custom.service;
import com.yc.crm.custom.entity.T480601HEntity;
import com.yc.crm.custom.entity.T480601Entity;
import java.util.List;
@@ -10,14 +10,14 @@
     *
     * @param custom
     */
    abstract String saveCustom(T480601HEntity custom);
    abstract String saveCustom(T480601Entity custom);
    /**
     * 修改客户
     * @param custom
     * @return
     */
    abstract Integer updateCustom(T480601HEntity custom);
    abstract Integer updateCustom(T480601Entity custom);
    /**
     * 删除客户
@@ -32,7 +32,7 @@
     * @param userCode
     * @return
     */
    abstract List<T480601HEntity> getCustomList(String userCode);
    abstract List<T480601Entity> getCustomList(String userCode);
    /**
     * 查询客户详情
@@ -40,5 +40,5 @@
     * @param userCode
     * @return
     */
    abstract T480601HEntity getCustomInfo(String docCode,String userCode);
    abstract T480601Entity getCustomInfo(String docCode, String userCode);
}