mirror of
https://github.com/CyanoFresh/SmartHomePHP.git
synced 2026-02-27 14:51:21 +01:00
20 lines
333 B
PHP
20 lines
333 B
PHP
<?php
|
|
|
|
namespace app\modules\customModule\models;
|
|
|
|
use app\modules\customModule\models\query\CustomItemQuery;
|
|
use app\modules\server\models\BaseItem;
|
|
|
|
class CustomItem extends BaseItem
|
|
{
|
|
const TYPE = 'custom';
|
|
|
|
/**
|
|
* @inheritdoc
|
|
*/
|
|
public static function tableName()
|
|
{
|
|
return 'custom_item';
|
|
}
|
|
}
|