| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546 |
- package com.goafanti.customer.service;
- import java.util.List;
- import com.goafanti.common.model.UserBusiness;
- import com.goafanti.core.mybatis.page.Pagination;
- import com.goafanti.customer.bo.BusinessListBo;
- import com.goafanti.customer.bo.BussinessFollowBo;
- public interface BusinessService {
- /**
- * 查询服务列表
- * @param blo
- * @return
- */
- Pagination<BusinessListBo> listBusiness(BusinessListBo blo,Integer pageNo,Integer pageSize);
- /**
- * 意向字典
- * @return
- */
- List<BusinessListBo> findBusinessGlossory();
-
- /**
- *
- * @param uid 客户ID
- * @param businessGlossoryId 业务意向字典ID
- * @return
- */
- int judgeBusiness(String uid,Integer businessGlossoryId);
- /**
- * 添加意向服务和跟进记录
- * @param bfb
- */
- void addBusinessAndFollow(BussinessFollowBo bfb);
-
- /**
- * 查询业务列表
- * @param uid 客户ID
- * @param aid 营销员ID
- * @return
- */
- List<UserBusiness> findBusinessByUAid(String uid,String aid);
- }
|