v2board/app/Models/Plan.php
2019-10-29 15:33:36 +08:00

13 lines
200 B
PHP
Executable File

<?php
namespace App\Models;
use Illuminate\Database\Eloquent\Model;
class Plan extends Model
{
protected $table = 'v2_plan';
protected $dateFormat = 'U';
protected $guarded = ['id'];
}