Commit 2eeb4dcdffd2ef29c66e2c249a183891bc3f3bcb

Authored by xu
1 parent 0c4f7f41
Exists in master

1. F 失败数据

Showing 1 changed file with 19 additions and 0 deletions   Show diff stats
domain/device/DeviceAuthFailRepository.php 0 → 100644
... ... @@ -0,0 +1,19 @@
  1 +<?php
  2 +
  3 +namespace domain\device;
  4 +
  5 +use Yii;
  6 +use domain\device\models\DeviceAuthFail as DeviceAuthFailModel;
  7 +
  8 +class DeviceAuthFailRepository
  9 +{
  10 + /**
  11 + * @param $condition
  12 + * @return static
  13 + */
  14 + static function findOne($condition)
  15 + {
  16 + return DeviceAuthFailModel::findOne($condition);
  17 + }
  18 +
  19 +}
0 20 \ No newline at end of file
... ...