feat: 新增手机号日志表

This commit is contained in:
陈狼 2025-02-17 15:48:39 +08:00
parent cc76cbe1f4
commit 3e066ddf53
1 changed files with 23 additions and 0 deletions

23
app/model/PhoneLog.php Normal file
View File

@ -0,0 +1,23 @@
<?php
namespace app\model;
use support\Model;
class PhoneLog extends Model
{
/**
* The table associated with the model.
*
* @var string
*/
protected $table = 'phone_log';
/**
* The primary key associated with the table.
*
* @var string
*/
protected $primaryKey = 'id';
}