Commit 4a30e496 authored by clone's avatar clone

1

parent 0fff9cca
...@@ -31,13 +31,18 @@ class StoreFee extends Basic ...@@ -31,13 +31,18 @@ class StoreFee extends Basic
$this->service_ = new StoreFeeService(); $this->service_ = new StoreFeeService();
} }
/**
* @return \think\Response
* @throws \think\db\exception\DataNotFoundException
* @throws \think\db\exception\ModelNotFoundException
* @throws \think\exception\DbException
*/
public function creationStoreFee() public function creationStoreFee()
{ {
$params = $this->params; $params = $this->params;
/* $params = array( /* $params = array(
"setting_date" => "2019-06-01", "setting_date" => "2019-06-01",
"agent_id" => 1, "agent_id" => 1,
);*/ );*/
if (!$params["setting_date"] || !$params["agent_id"]) { if (!$params["setting_date"] || !$params["agent_id"]) {
return $this->response("101", "请求参数错误 "); return $this->response("101", "请求参数错误 ");
......
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