OrderPaymentService.php 256 B

1234567891011121314
  1. <?php
  2. namespace app\common\service;
  3. use app\common\model\order\Payment as OrderPayment;
  4. use app\common\traits\ServiceTrait;
  5. class OrderPaymentService
  6. {
  7. use ServiceTrait;
  8. /** @var OrderPayment */
  9. public static $Model = OrderPayment::class;
  10. }