|
@@ -96,7 +96,7 @@ class GoodsCate extends Controller
|
|
|
* @throws \think\Exception
|
|
|
* @throws \think\exception\PDOException
|
|
|
*/
|
|
|
- public function resume()
|
|
|
+ public function enable()
|
|
|
{
|
|
|
$this->_save($this->table, ['status' => '1']);
|
|
|
}
|
|
@@ -107,7 +107,7 @@ class GoodsCate extends Controller
|
|
|
* @throws \think\Exception
|
|
|
* @throws \think\exception\PDOException
|
|
|
*/
|
|
|
- public function forbid()
|
|
|
+ public function forbidden()
|
|
|
{
|
|
|
$this->_save($this->table, ['status' => '0']);
|
|
|
}
|
|
@@ -118,9 +118,9 @@ class GoodsCate extends Controller
|
|
|
* @throws \think\Exception
|
|
|
* @throws \think\exception\PDOException
|
|
|
*/
|
|
|
- public function remove()
|
|
|
+ public function del()
|
|
|
{
|
|
|
- $this->_delete($this->table);
|
|
|
+ $this->_save($this->table, ['is_deleted' => 1]);
|
|
|
}
|
|
|
|
|
|
}
|