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