12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364 |
- package com.iamberry.rst.faces.cm;
- import com.iamberry.rst.core.cm.BackGoods;
- import com.iamberry.rst.core.cm.CustomerInfo;
- import com.iamberry.rst.core.cm.Reissue;
- import com.iamberry.rst.core.page.PagedResult;
- import java.util.List;
- /**
- * 客诉基本信息
- */
- public interface CustomerService {
- /**
- * 添加客诉
- * @param customerInfo
- * @return
- */
- Integer saveCustomerInfo(CustomerInfo customerInfo);
- /**
- * 根据id获取客诉信息
- * @param customerId
- * @return
- */
- CustomerInfo getCustomerInfo(Integer customerId);
- /**
- * 修改客诉信息
- * @param record
- * @return
- */
- Integer updateCustomerInfo(CustomerInfo record);
- /**
- * 查询客诉基本信息列表
- * @param customerInfo
- * @return
- */
- PagedResult<CustomerInfo> listCustomer(int pageNO, int pageSize, CustomerInfo customerInfo, boolean isTotalNum);
- /**
- * 查询客诉基本信息
- * @param customerInfo
- * @return
- */
- CustomerInfo getCustomerInfo(CustomerInfo customerInfo);
- /**
- * 获取售后退货信息
- * @param backGoods
- * @return
- */
- BackGoods getBackGoods(BackGoods backGoods);
- /**
- * 获取售后补寄信息
- * @param reissue
- * @return
- */
- Reissue getReissue(Reissue reissue);
- }
|