dataLists(new PayOrderLists()); } /** * @notes 添加 * @return \think\response\Json * @author likeadmin * @date 2023/11/24 18:08 */ public function add() { $params = (new PayOrderValidate())->post()->goCheck('add'); $result = PayOrderLogic::add($params); if (true === $result) { return $this->success('添加成功', [], 1, 1); } return $this->fail(PayOrderLogic::getError()); } /** * @notes 编辑 * @return \think\response\Json * @author likeadmin * @date 2023/11/24 18:08 */ public function edit() { $params = (new PayOrderValidate())->post()->goCheck('edit'); $result = PayOrderLogic::edit($params); if (true === $result) { return $this->success('编辑成功', [], 1, 1); } return $this->fail(PayOrderLogic::getError()); } /** * @notes 删除 * @return \think\response\Json * @author likeadmin * @date 2023/11/24 18:08 */ public function delete() { $params = (new PayOrderValidate())->post()->goCheck('delete'); PayOrderLogic::delete($params); return $this->success('删除成功', [], 1, 1); } /** * @notes 获取详情 * @return \think\response\Json * @author likeadmin * @date 2023/11/24 18:08 */ public function detail() { $params = (new PayOrderValidate())->goCheck('detail'); $result = PayOrderLogic::detail($params); return $this->data($result); } }