用户账变 用户钱包
This commit is contained in:
32
app/Models/Api/Order/CustomerUserPostOrderDisputeModel.php
Normal file
32
app/Models/Api/Order/CustomerUserPostOrderDisputeModel.php
Normal file
@ -0,0 +1,32 @@
|
||||
<?php
|
||||
namespace App\Models\Api\Order;
|
||||
|
||||
use App\Models\Api\Base\ApiBaseModel;
|
||||
use Spatie\FlareClient\Api;
|
||||
|
||||
class CustomerUserPostOrderDisputeModel extends ApiBaseModel
|
||||
{
|
||||
protected $table = 'customer_user_post_order_dispute';
|
||||
protected $primaryKey = 'id';
|
||||
protected $fillable = [
|
||||
'id',
|
||||
'post_order_id',
|
||||
'status',
|
||||
'chat_group_id',
|
||||
'seller_submit_datetime',
|
||||
'buyer_submit_datetime',
|
||||
'result_status',
|
||||
'buyer_pay_dispute_status',
|
||||
'buyer_pay_amount',
|
||||
'buyer_pay_transaction_id',
|
||||
'seller_pay_dispute_status',
|
||||
'seller_pay_amount',
|
||||
'seller_pay_transaction_id',
|
||||
'seller_desc_key',
|
||||
'seller_desc',
|
||||
'admin_remark',
|
||||
'admin_uid',
|
||||
'created_at',
|
||||
'updated_at',
|
||||
];
|
||||
}
|
||||
Reference in New Issue
Block a user