Commit 23d2485f authored by tufengqi's avatar tufengqi

Merge branch 'jlm' into 'master'

基础请求handle See merge request !1
parents 902c8a53 5a4a1db6
<?php
/**
* Created by PhpStorm.
* User: rlgyzhcn
* Date: 18-7-24
* Time: 下午5:31
*/
namespace fpf\yii_component;
use yii\web\Request;
class BaseRequest extends Request
{
private $otc_user_id = null;
public function getUserId()
{
return $this->otc_user_id;
}
public function setUserId($value)
{
$this->otc_user_id = $value;
}
}
\ No newline at end of file
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment