DownGrade.php 311 B

1234567891011121314
  1. <?php
  2. namespace App\Models;
  3. use Illuminate\Database\Eloquent\Model;
  4. class DownGrade extends Model
  5. {
  6. //定义表
  7. protected $table = "down_grade";
  8. //定义主键
  9. protected $primaryKey = "id";
  10. protected $fillable = ['user_id','admin_id','admin_name','type','money','season','down_money'];
  11. }