Blame view

service-acct/src/main/java/com/java110/acct/smo/IQrCodePaymentSMO.java 537 Bytes
88e030b7   王彪总   init project
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
  package com.java110.acct.smo;
  
  import com.java110.vo.ResultVo;
  
  /**
   * 扫码枪支付
   */
  public interface IQrCodePaymentSMO {
  
      /**
       * 扫码支付
       *
       * @return
       */
      ResultVo pay(String communityId, String orderNum, double money, String authCode, String feeName,String paymentPoolId) throws Exception;
  
      /**
       * 检查是否支付完成
       *
       * @param communityId
       * @param orderNum
       * @return
       */
      ResultVo checkPayFinish(String communityId, String orderNum,String paymentPoolId);
  
  }