11 lines
231 B
Plaintext
11 lines
231 B
Plaintext
|
/**
|
||
|
* 编辑获取数据
|
||
|
* @param $id
|
||
|
* @return \think\Response
|
||
|
* @date {%DATE%}
|
||
|
*/
|
||
|
public function edit($id)
|
||
|
{
|
||
|
return app('json')->success($this->service->getCrudForm((int)$id));
|
||
|
}
|