예제 #1
0
파일: Goods.php 프로젝트: wordnews/wei_shop
 public function setHot($goods_id, $status = 1)
 {
     if (!in_array($status, [0, 1])) {
         return false;
     }
     return Goods::updateAll(['is_hot' => $status], 'goods_id = :goods_id', [':goods_id' => $goods_id]);
 }