初始版本

This commit is contained in:
贾祥聪
2025-08-19 14:16:51 +08:00
commit f937a1f9b9
4373 changed files with 359728 additions and 0 deletions

View 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();
}
}