NotificationLog.php 185 B

12345678910111213
  1. <?php
  2. namespace App\Models;
  3. use Illuminate\Database\Eloquent\Model;
  4. /**
  5. * 推送通知日志.
  6. */
  7. class NotificationLog extends Model
  8. {
  9. protected $table = 'notification_log';
  10. }