22 lines
563 B
PHP
22 lines
563 B
PHP
<?php
|
|
namespace app\backend\modules\refund\controllers;
|
|
|
|
use app\backend\modules\refund\models\RefundApply;
|
|
use app\common\components\BaseController;
|
|
|
|
/**
|
|
* Created by PhpStorm.
|
|
* Author:
|
|
* Date: 2017/4/21
|
|
* Time: 下午2:43
|
|
*/
|
|
class FixController extends BaseController
|
|
{
|
|
// public function backReject(\Illuminate\Http\Request $request){
|
|
// $refundApply = RefundApply::find($request->query('refund_id'));
|
|
// $refundApply->status = 0;
|
|
// $refundApply->reject_reason = '';
|
|
// $refundApply->save();
|
|
// echo 'ok';
|
|
// }
|
|
} |