This commit is contained in:
root
2019-12-12 13:45:46 +08:00
parent 623a5c98e0
commit a78f6178bd
7 changed files with 113 additions and 5 deletions

12
app/Models/Notice.php Normal file
View File

@ -0,0 +1,12 @@
<?php
namespace App\Models;
use Illuminate\Database\Eloquent\Model;
class Notice extends Model
{
protected $table = 'v2_notice';
protected $dateFormat = 'U';
protected $guarded = ['id'];
}