123456789101112131415161718192021222324252627282930 |
- package com.iamberry.rst.faces.cm;
- import com.iamberry.rst.core.cm.*;
- import java.util.List;
- public interface CustomerCommonService {
- /**
- * 获取寄送寄回的产品和配件
- * @param customerCommon
- * @return
- */
- CustomerCommon getListProduceAndFitting(CustomerCommon customerCommon);
- /**
- * 获取换新,维修,表的状态
- * @param customerCommon
- * @return
- */
- List<CustomerCommon> listCustomerCommon(CustomerCommon customerCommon);
- /**
- * 根据寄回状态查询对应的客诉数量
- * @param customerCommon
- * @return
- */
- Integer listCustomerCommonByStatus(CustomerCommon customerCommon);
- }
|