Dev.php 465 B

123456789101112131415161718192021222324252627282930313233343536
  1. <?php
  2. namespace App\Module\Dev\Models;
  3. use Illuminate\Database\Eloquent\Model;
  4. /**
  5. * App\Module\Dev\Models\Dev
  6. *
  7. * field start
  8. * field end
  9. */
  10. class Dev extends Model
  11. {
  12. /**
  13. * 与模型关联的表名
  14. *
  15. * @var string
  16. */
  17. protected $table = 'dev';
  18. // attrlist start
  19. protected $fillable = [
  20. ];
  21. // attrlist end
  22. /**
  23. * 模型的主键
  24. *
  25. * @var string
  26. */
  27. protected $primaryKey = 'id';
  28. }