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 listCustomerCommon(CustomerCommon customerCommon); /** * 根据寄回状态查询对应的客诉数量 * @param customerCommon * @return */ Integer listCustomerCommonByStatus(CustomerCommon customerCommon); }