Files
ProxyPanel/app/Models/NotificationLog.php
2020-10-17 03:40:08 +08:00

14 lines
185 B
PHP

<?php
namespace App\Models;
use Illuminate\Database\Eloquent\Model;
/**
* 推送通知日志.
*/
class NotificationLog extends Model
{
protected $table = 'notification_log';
}