ShopExtClass.php 378 B

12345678910111213141516171819
  1. <?php
  2. namespace biz\shop\classes;
  3. use Yii;
  4. use biz\base\classes\BaseClass;
  5. class ShopExtClass extends BaseClass
  6. {
  7. public static $baseFile = '\biz\shop\models\ShopExt';
  8. //清除所有小菊
  9. public static function clearXjALl($shopId)
  10. {
  11. $where = [];
  12. $where['shopId'] = $shopId;
  13. return self::updateByCondition($where,['xj'=>'']);
  14. }
  15. }