GITLAB

OTHER_COMPANY_PROJECTS / ota

Sign in
  • Sign in
  • Project
  • Files
  • Commits
  • Network
  • Graphs
  • Issues 0
  • Merge Requests 0
  • Wiki
  • ota
  • domain
  • device
  • DeviceAuthFailRepository.php
  • 2eeb4dcd   1. F 失败数据 Browse Code »
    xu
    2019-10-29 20:19:57 +0800  
DeviceAuthFailRepository.php 314 Bytes
Edit Raw Blame History
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19
<?php

namespace domain\device;

use Yii;
use domain\device\models\DeviceAuthFail as DeviceAuthFailModel;

class DeviceAuthFailRepository
{
    /**
     * @param $condition
     * @return static
     */
    static function findOne($condition)
    {
        return DeviceAuthFailModel::findOne($condition);
    }

}