41 lines
547 B
PHP
41 lines
547 B
PHP
<?php
|
|
|
|
|
|
|
|
|
|
namespace app\common\model\system;
|
|
|
|
|
|
use app\common\model\BaseModel;
|
|
|
|
/**
|
|
* Class Extend
|
|
* @package app\common\model\system
|
|
* @author xaboy
|
|
* @day 2020-04-24
|
|
*/
|
|
class Extend extends BaseModel
|
|
{
|
|
|
|
/**
|
|
* @return string
|
|
* @author xaboy
|
|
* @day 2020-03-30
|
|
*/
|
|
public static function tablePk(): string
|
|
{
|
|
return 'extend_id';
|
|
}
|
|
|
|
/**
|
|
* @return string
|
|
* @author xaboy
|
|
* @day 2020-03-30
|
|
*/
|
|
public static function tableName(): string
|
|
{
|
|
return 'extend';
|
|
}
|
|
|
|
}
|