选装售后
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.

AflUiInfoService.java 960B

1234567891011121314151617181920
  1. package com.qtzl.alterSales.manager.service;
  2. import cn.com.taiji.common.manager.net.http.ServiceHandleException;
  3. import com.qtzl.alterSales.manager.model.protocol.sales.AflUiInfoDeleteRequest;
  4. import com.qtzl.alterSales.manager.model.protocol.sales.AflUiInfoFindPageViewRequest;
  5. import com.qtzl.alterSales.manager.model.protocol.sales.AflUiInfoSaveOrUpdateRequest;
  6. import com.qtzl.alterSales.manager.model.protocol.sales.AflUiInfoUpdateStatusRequest;
  7. import org.slf4j.Logger;
  8. public interface AflUiInfoService {
  9. void save(AflUiInfoSaveOrUpdateRequest request) throws ServiceHandleException;
  10. void update(AflUiInfoSaveOrUpdateRequest request) throws ServiceHandleException;
  11. void delete(AflUiInfoDeleteRequest request) throws ServiceHandleException;
  12. void updateStatus(AflUiInfoUpdateStatusRequest request) throws ServiceHandleException;
  13. String export(AflUiInfoFindPageViewRequest request, Logger logger) throws ServiceHandleException;
  14. }