曾超新 5 years ago
parent 75dcf8cf5c
commit 7ffa4b762f
  1. 7
      frontend/controllers/SystemController.php

@ -212,4 +212,11 @@ class SystemController extends \yii\web\Controller
return $result;
}
}
public function actionTest() {
$items = OrderT::find()
->where('status_id=10')
->all();
echo count($items);
}
}

Loading…
Cancel
Save