dataLists(new FinancialPaymentRecordsLists()); } /** * @notes 添加 * @return \think\response\Json * @author likeadmin * @date 2024/12/02 11:55 */ public function add() { $params = (new FinancialPaymentRecordsValidate())->post()->goCheck('add'); $result = FinancialPaymentRecordsLogic::add($params); if (true === $result) { return $this->success('添加成功', [], 1, 1); } return $this->fail(FinancialPaymentRecordsLogic::getError()); } /** * @notes 编辑 * @return \think\response\Json * @author likeadmin * @date 2024/12/02 11:55 */ public function edit() { $params = (new FinancialPaymentRecordsValidate())->post()->goCheck('edit'); $result = FinancialPaymentRecordsLogic::edit($params); if (true === $result) { return $this->success('编辑成功', [], 1, 1); } return $this->fail(FinancialPaymentRecordsLogic::getError()); } /** * @notes 取消 * @return \think\response\Json * @author likeadmin * @date 2024/12/02 11:55 */ public function delete() { $params = (new FinancialPaymentRecordsValidate())->post()->goCheck('delete'); $result = FinancialPaymentRecordsLogic::delete($params); if (true === $result) { return $this->success('取消成功', [], 1, 1); } return $this->fail(FinancialPaymentRecordsLogic::getError()); } /** * @notes 获取详情 * @return \think\response\Json * @author likeadmin * @date 2024/12/02 11:55 */ public function detail() { $params = (new FinancialPaymentRecordsValidate())->goCheck('detail'); $result = FinancialPaymentRecordsLogic::detail($params); return $this->data($result); } }