| 1234567891011121314151617181920212223 |
- package com.goafanti.admin.service;
- import com.goafanti.common.model.Customer;
- import com.goafanti.core.mybatis.page.Pagination;
- public interface CustomerService {
- int addCustomer(Customer cus);
-
- int deleteCustomer(String id);
-
- Pagination<Customer> findCustomerByPage(String companyName ,Integer customerTyp ,String province ,String customerName ,String telNum ,
- String customerStatue ,String CompanyIntention ,String fllowSituation,Integer pageNo, Integer pageSize);
-
- int updCustomer(String id,String aid,String createTime, String companyName, String companyIndustry, String companyIntention,
- String adress, String customerName, String mobile, String email, String qq, String wechat,
- String customerPosition, String remark, String province, String fllowSituation, int sex,
- String customerStatue, String department, Integer customerTyp, String telNum);
-
- Customer searchCustomer(String id);
- }
|