| 12345678910111213141516171819202122232425262728293031 |
- <?php
- /**
- * Created by PhpStorm.
- * Author: 芸众商城 www.yunzshop.com
- * Date: 2017/3/20
- * Time: 上午10:43
- */
- namespace app\common\models;
- use app\backend\models\BackendModel;
- class PayWithdrawOrder extends BackendModel
- {
- public $table = 'yz_pay_withdraw_order';
- /**
- * 可以被批量赋值的属性.
- *
- * @var array
- */
- protected $fillable = ['uniacid', 'member_id', 'int_order_no', 'out_order_no', 'status', 'type', 'price'];
- public static function getOrderInfo($orderno)
- {
- return self::uniacid()
- ->where('out_order_no', $orderno)
- ->orderBy('id', 'desc')
- ->first();
- }
- }
|