<?php
namespace App\Models;
use Illuminate\Database\Eloquent\Model;
/**
* @property int $id
* @property string $profit_type
* @property int $param_id
* @property int $sort
*/
class Profit extends Model
{
public $timestamps = false;
protected $fillable = [
'profit_type',
'param_id',
'sort',
];
}