dataLists(new DataReceptionLists()); } /** * @notes 添加 * @return \think\response\Json * @author likeadmin * @date 2024/02/23 09:21 */ public function add() { $params = (new DataReceptionValidate())->post()->goCheck('add'); $result = DataReceptionLogic::add($params); if (true === $result) { return $this->success('添加成功', [], 1, 1); } return $this->fail(DataReceptionLogic::getError()); } /** * @notes 编辑 * @return \think\response\Json * @author likeadmin * @date 2024/02/23 09:21 */ public function edit() { $params = (new DataReceptionValidate())->post()->goCheck('edit'); $result = DataReceptionLogic::edit($params); if (true === $result) { return $this->success('编辑成功', [], 1, 1); } return $this->fail(DataReceptionLogic::getError()); } /** * @notes 删除 * @return \think\response\Json * @author likeadmin * @date 2024/02/23 09:21 */ public function delete() { $params = (new DataReceptionValidate())->post()->goCheck('delete'); DataReceptionLogic::delete($params); return $this->success('删除成功', [], 1, 1); } /** * @notes 获取详情 * @return \think\response\Json * @author likeadmin * @date 2024/02/23 09:21 */ public function detail() { $params = (new DataReceptionValidate())->goCheck('detail'); $result = DataReceptionLogic::detail($params); return $this->data($result); } }