CustomerService.java 436 B

1234567891011121314151617181920
  1. package com.iamberry.rst.faces.cm;
  2. import com.iamberry.rst.core.cm.CustomerInfo;
  3. import com.iamberry.rst.core.page.PagedResult;
  4. import java.util.List;
  5. /**
  6. * 客诉基本信息
  7. */
  8. public interface CustomerService {
  9. /**
  10. * 查询客诉基本信息列表
  11. * @param customerInfo
  12. * @return
  13. */
  14. PagedResult<CustomerInfo> listCustomer(int pageNO, int pageSize, CustomerInfo customerInfo, boolean isTotalNum);
  15. }