PaymentLogLogic.php 286 B

1234567891011121314
  1. <?php
  2. namespace addons\CloudStock\common\logic\payment_log;
  3. use addons\CloudStock\common\services\PaymentLogService;
  4. class PaymentLogLogic
  5. {
  6. public static function export($params)
  7. {
  8. (new PaymentLogService(['mall_id' => $params['mall_id']]))->export($params);
  9. }
  10. }