11 lines
231 B
Plaintext
Raw Normal View History

2025-03-12 10:47:34 +08:00
/**
* 编辑获取数据
* @param $id
* @return \think\Response
* @date {%DATE%}
*/
public function edit($id)
{
return app('json')->success($this->service->getCrudForm((int)$id));
}