|
<?php
|
|
|
|
namespace App\Models;
|
|
|
|
use Dcat\Admin\Traits\HasDateTimeFormatter;
|
|
|
|
use Illuminate\Database\Eloquent\Model;
|
|
|
|
class ActivityDayNum extends Model
|
|
{
|
|
use HasDateTimeFormatter;
|
|
protected $table = 'activity_day_num';
|
|
|
|
protected $fillable = [
|
|
'time',
|
|
'goods_num'
|
|
];
|
|
|
|
}
|