shop-php/app/common/model/system/AppUpdate.php

21 lines
283 B
PHP
Raw Normal View History

2023-09-11 11:26:33 +08:00
<?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';
}
}