You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
47 lines
994 B
47 lines
994 B
10 months ago
|
<?php
|
||
|
|
||
|
namespace app\store\model;
|
||
|
|
||
|
use app\common\model\ServerCategory as ServerCategoryModel;
|
||
|
|
||
|
class ServerCategory extends ServerCategoryModel
|
||
|
{
|
||
|
/**
|
||
|
* @notes:新增
|
||
|
* @param $data
|
||
|
* @return bool
|
||
|
* @author: wanghousheng
|
||
|
*/
|
||
|
public function add($data): bool
|
||
|
{
|
||
|
$data['store_id'] = self::$storeId;
|
||
|
return $this->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();
|
||
|
}
|
||
|
}
|