Bill.php
330 Bytes
<?php
/**
* Created by PhpStorm.
* User: Administrator
* Date: 2018/3/7
* Time: 11:18
*/
namespace App\Modules\Models\Bill;
use Illuminate\Database\Eloquent\Model;
class Bill extends Model
{
protected $table = 'bill';
protected $fillable = ['spot_id', 'business_id','tax','img','real_pay','total','bill_id'];
}