控制器 ¶
控制器,根据角色分层接口
- restful api 风格
- php8 注解
常用的方法
- getData
- postData
- putById
- patchById
- deleteById
- deleteData
php
<?php
namespace addons\comA\moduleA\controller\business;
use shiyun\route\annotation\RouteRestful;
/**
* 商家接口,文章接口
*/
#[RouteRestful('comA.modulesA/business/article_all')]
class ArticleAll
{
public function getById(int $id = 0){
}
}