选装售后
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

AflAccessChannelInfoService.java 1.2KB

123456789101112131415161718192021222324252627282930
  1. package com.qtzl.alterSales.manager.service;
  2. import cn.com.taiji.common.manager.net.http.ServiceHandleException;
  3. import com.qtzl.alterSales.dao.entity.second.AflAccessChannelInfo;
  4. import com.qtzl.alterSales.manager.model.protocol.sales.AflAccessChannelInfoDeleteRequest;
  5. import com.qtzl.alterSales.manager.model.protocol.sales.AflAccessChannelInfoExportRequest;
  6. import com.qtzl.alterSales.manager.model.protocol.sales.AflAccessChannelInfoSaveOrUpdateRequest;
  7. import com.qtzl.alterSales.manager.model.protocol.sales.AflAccessChannelInfoUpdateStatusRequest;
  8. import org.slf4j.Logger;
  9. /***
  10. * <p>
  11. * 接入渠道管理 service
  12. * </p>
  13. **/
  14. public interface AflAccessChannelInfoService {
  15. void save(AflAccessChannelInfoSaveOrUpdateRequest request) throws ServiceHandleException;
  16. void update(AflAccessChannelInfoSaveOrUpdateRequest request) throws ServiceHandleException;
  17. AflAccessChannelInfo findById(String id) throws ServiceHandleException;
  18. void updateStatus(AflAccessChannelInfoUpdateStatusRequest request) throws ServiceHandleException;
  19. void delete(AflAccessChannelInfoDeleteRequest request) throws ServiceHandleException;
  20. String export(AflAccessChannelInfoExportRequest request, Logger logger) throws ServiceHandleException;
  21. }