IWechatGatewaySMO.java 550 B

1234567891011121314151617181920212223
  1. package com.java110.front.smo.wechatGateway;
  2. import com.java110.core.context.IPageData;
  3. import com.java110.utils.exception.SMOException;
  4. import org.springframework.http.ResponseEntity;
  5. /**
  6. * 组织管理管理服务接口类
  7. * <p>
  8. * add by wuxw 2019-06-29
  9. */
  10. public interface IWechatGatewaySMO {
  11. /**
  12. * 获取微信回话信息
  13. *
  14. * @param pd 页面数据封装
  15. * @return ResponseEntity 对象数据
  16. * @throws SMOException 业务代码层
  17. */
  18. ResponseEntity<String> gateway(IPageData pd) throws Exception;
  19. }