CustomerService.java 941 B

1234567891011121314151617181920212223
  1. package com.goafanti.admin.service;
  2. import com.goafanti.common.model.Customer;
  3. import com.goafanti.core.mybatis.page.Pagination;
  4. public interface CustomerService {
  5. int addCustomer(Customer cus);
  6. int deleteCustomer(String id);
  7. Pagination<Customer> findCustomerByPage(String companyName ,Integer customerTyp ,String province ,String customerName ,String telNum ,
  8. String customerStatue ,String CompanyIntention ,String fllowSituation,Integer pageNo, Integer pageSize);
  9. int updCustomer(String id,String aid,String createTime, String companyName, String companyIndustry, String companyIntention,
  10. String adress, String customerName, String mobile, String email, String qq, String wechat,
  11. String customerPosition, String remark, String province, String fllowSituation, int sex,
  12. String customerStatue, String department, Integer customerTyp, String telNum);
  13. Customer searchCustomer(String id);
  14. }