Blame view

domain/device/DeviceAuthFailRepository.php 314 Bytes
2eeb4dcd   xu   1. F 失败数据
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
<?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);
    }

34327c62   xu   1. F 完成所有接口的逻辑
19
}
37a28dcc   xu   1. F 授权接口调整,有重大的bug

2eeb4dcd   xu   1. F 失败数据