123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475 |
- package net.chenlin.dp.modules.api.dao;
- import net.chenlin.dp.modules.api.vo.*;
- import net.chenlin.dp.modules.sys.dao.BaseMapper;
- import org.apache.ibatis.annotations.Mapper;
- import org.apache.ibatis.annotations.Param;
- import java.util.List;
- /**
- * 销售订单
- * @author zcl<yczclcn@163.com>
- */
- @Mapper
- public interface CustomerMapper extends BaseMapper<Customer> {
- /**
- * crm客户档案查询
- * @return
- */
- List<Customer>CustomerList();
- /**
- * crm客户档案银行查询
- * @param code
- * @return
- */
- List<CustomerBanks>bank(@Param("code")String code);
- /**
- * crm客户档案地址查询
- * @param code
- * @return
- */
- List<CustomerAddress>addr(@Param("code")String code);
- /**
- * u8客户档案新增
- * @param customer
- * @return
- */
- int UAddCustomer(Customer customer);
- /**
- * u8客户档案银行新增
- * @param banks
- * @return
- */
- int UAddCustomerBank(List<CustomerBanks>banks);
- /**
- * u8客户档案收获地址新增
- * @param addresses
- * @return
- */
- int UAddCustomerAddr(List<CustomerAddress>addresses);
- /**
- * u8客户接口查询数据
- * @return
- */
- List<ICustomer>ICustomerList();
- /**
- * 更新客户档案同步状态
- * @param id
- * @return
- */
- int UpdateCustomer(@Param("id")String id);
- /**
- * 客户档案修改
- * @return
- */
- List<ICustomerEdit>ICustomerEditList();
- }
|