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