GITLAB

OTHER_COMPANY_PROJECTS / ota

Sign in
  • Sign in
  • Project
  • Files
  • Commits
  • Network
  • Graphs
  • Issues 0
  • Merge Requests 0
  • Wiki
  • ota
  • domain
  • models
  • Device.php
  • aa2f3513   1. 删除冗余的代码 ... Browse Code »
    2. 添加设备(序列号管理)
    xu
    2019-10-27 07:09:34 +0800  
Device.php 212 Bytes
Edit Raw Blame History
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16
<?php

namespace domain\models;

use yii\db\ActiveRecord;

class Device extends ActiveRecord
{
    /**
     * @inheritdoc
     */
    public static function tableName()
    {
        return '{{%device}}';
    }
}