[更新]修改文件注释

This commit is contained in:
Anyon 2019-09-25 09:41:04 +08:00
parent 3d2f0d6c25
commit ade4fbf4b0

View File

@ -51,6 +51,11 @@ class ExpressCompany extends Controller
/** /**
* 添加快递公司 * 添加快递公司
* @auth true * @auth true
* @throws \think\Exception
* @throws \think\db\exception\DataNotFoundException
* @throws \think\db\exception\ModelNotFoundException
* @throws \think\exception\DbException
* @throws \think\exception\PDOException
*/ */
public function add() public function add()
{ {
@ -60,6 +65,11 @@ class ExpressCompany extends Controller
/** /**
* 编辑快递公司 * 编辑快递公司
* @auth true * @auth true
* @throws \think\Exception
* @throws \think\db\exception\DataNotFoundException
* @throws \think\db\exception\ModelNotFoundException
* @throws \think\exception\DbException
* @throws \think\exception\PDOException
*/ */
public function edit() public function edit()
{ {
@ -85,6 +95,8 @@ class ExpressCompany extends Controller
/** /**
* 禁用快递公司 * 禁用快递公司
* @auth true * @auth true
* @throws \think\Exception
* @throws \think\exception\PDOException
*/ */
public function forbid() public function forbid()
{ {
@ -94,6 +106,8 @@ class ExpressCompany extends Controller
/** /**
* 启用快递公司 * 启用快递公司
* @auth true * @auth true
* @throws \think\Exception
* @throws \think\exception\PDOException
*/ */
public function resume() public function resume()
{ {
@ -103,6 +117,8 @@ class ExpressCompany extends Controller
/** /**
* 删除快递公司 * 删除快递公司
* @auth true * @auth true
* @throws \think\Exception
* @throws \think\exception\PDOException
*/ */
public function remove() public function remove()
{ {