<?php namespace app\common\service; use app\common\model\order\Payment as OrderPayment; use app\common\traits\ServiceTrait; class OrderPaymentService { use ServiceTrait; /** @var OrderPayment */ public static $Model = OrderPayment::class; }