save($data); } /** * @notes:编辑 * @param $data * @return bool * @author: wanghousheng */ public function edit($data): bool { // 是否删除图片 !isset($data['image_id']) && $data['image_id'] = 0; return $this->save($data) !== false; } /** * @notes:删除 * @return bool * @author: wanghousheng */ public function remove(): bool { if (!static::detail(['category_id' => $this['category_id']])) { $this->error = '记录不存在'; return false; } return $this->delete(); } }