IOrder.php 144 B

1234567891011121314
  1. <?php
  2. namespace app\api\model\order;
  3. interface IOrder {
  4. function prePay($args);
  5. function rePay($args);
  6. function notifyPay($args);
  7. }