用户账变 用户钱包

This commit is contained in:
cano
2024-03-10 00:44:58 +08:00
parent 025dab4c2c
commit 6d242ae973
17 changed files with 1617 additions and 16 deletions

View 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',
];
}