21 lines
283 B
PHP
Executable File
21 lines
283 B
PHP
Executable File
<?php
|
|
|
|
namespace app\common\model\system;
|
|
|
|
use app\common\model\BaseModel;
|
|
|
|
class AppUpdate extends BaseModel
|
|
{
|
|
|
|
public static function tablePk(): string
|
|
{
|
|
return 'id';
|
|
}
|
|
|
|
public static function tableName(): string
|
|
{
|
|
return 'app_update';
|
|
}
|
|
|
|
}
|