用户账变 用户钱包
This commit is contained in:
@ -0,0 +1,27 @@
|
||||
<?php
|
||||
namespace App\Models\Api\Wallet;
|
||||
|
||||
use App\Models\Api\Base\ApiBaseModel;
|
||||
use Spatie\FlareClient\Api;
|
||||
|
||||
class CustomerPostOrderWalletCheckbookModel extends ApiBaseModel
|
||||
{
|
||||
protected $table = 'customer_post_order_wallet_checkbook';
|
||||
protected $primaryKey = 'id';
|
||||
protected $fillable = [
|
||||
'id',
|
||||
'post_order_id',
|
||||
'type',
|
||||
'status',
|
||||
'pay_uid',
|
||||
'receive_uid',
|
||||
'amount',
|
||||
'currency_id',
|
||||
'currency_code',
|
||||
'pay_time',
|
||||
'created_at',
|
||||
'updated_at',
|
||||
'exec_time',
|
||||
'remark',
|
||||
];
|
||||
}
|
||||
Reference in New Issue
Block a user