CustomerCommonService.java 686 B

123456789101112131415161718192021222324252627282930
  1. package com.iamberry.rst.faces.cm;
  2. import com.iamberry.rst.core.cm.*;
  3. import java.util.List;
  4. public interface CustomerCommonService {
  5. /**
  6. * 获取寄送寄回的产品和配件
  7. * @param customerCommon
  8. * @return
  9. */
  10. CustomerCommon getListProduceAndFitting(CustomerCommon customerCommon);
  11. /**
  12. * 获取换新,维修,表的状态
  13. * @param customerCommon
  14. * @return
  15. */
  16. List<CustomerCommon> listCustomerCommon(CustomerCommon customerCommon);
  17. /**
  18. * 根据寄回状态查询对应的客诉数量
  19. * @param customerCommon
  20. * @return
  21. */
  22. Integer listCustomerCommonByStatus(CustomerCommon customerCommon);
  23. }