| 12345678910111213141516171819202122232425 |
- <?php
- namespace App\Models;
- class PaymentOrder extends BaseModel
- {
- protected $table = 'payment_orders';
- protected $fillable = ['type', 'order_no', 'member_id', 'amount', 'channel', 'bank_name', 'account', 'card_no', 'status', 'callback_url', 'callback_data', 'remark', 'pay_no', 'pay_url', 'pay_data', 'fee'];
- protected $hidden = [];
- // // 添加这个
- // protected $visible = [
- // 'type', 'order_no', 'member_id', 'amount', 'channel',
- // 'bank_name', 'account', 'card_no', 'status', 'callback_url',
- // 'callback_data', 'remark', 'pay_no', 'pay_url', 'pay_data', 'fee',
- // 'created_at', 'updated_at' // 添加时间戳字段
- // ];
- public function userInfo()
- {
- return $this->belongsTo(User::class, 'member_id', 'member_id')->select(['member_id','username','first_name']);
- }
- }
|