初始版本
This commit is contained in:
32
server/app/coachapi/controller/GoodsCommentController.php
Executable file
32
server/app/coachapi/controller/GoodsCommentController.php
Executable file
@@ -0,0 +1,32 @@
|
||||
<?php
|
||||
namespace app\coachapi\controller;
|
||||
|
||||
|
||||
use app\coachapi\logic\GoodsCommentLogic;
|
||||
|
||||
/**
|
||||
* 订单评论金控制器类
|
||||
* Class CoachController
|
||||
* @package app\coachapi\controller
|
||||
*/
|
||||
class GoodsCommentController extends BaseCoachController
|
||||
{
|
||||
/**
|
||||
* @notes 服务评价分类
|
||||
* @return \think\response\Json
|
||||
* @author ljj
|
||||
* @date 2022/2/18 2:10 下午
|
||||
*/
|
||||
public function commentCategory()
|
||||
{
|
||||
$result = (new GoodsCommentLogic())->commentCategory($this->coachId);
|
||||
return $this->success('',$result);
|
||||
}
|
||||
|
||||
|
||||
public function lists()
|
||||
{
|
||||
return $this->dataLists();
|
||||
}
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user