2024-01-26 09:39:36 +08:00

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';
}
}