GoodsLog.php 258 B

12345678910111213
  1. <?php
  2. namespace App\Models;
  3. use Illuminate\Database\Eloquent\Model;
  4. class GoodsLog extends Model
  5. {
  6. protected $table='goods_log';
  7. protected $primaryKey = "id";
  8. protected $fillable = ['admin_id','admin_name','goods_id','type','name','text'];
  9. }