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