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 getCustomList(String userCode); /** * 查询客户详情 * @param docCode * @param userCode * @return */ abstract T480601Entity getCustomInfo(String docCode, String userCode); }