SsConfig.php 353 B

1234567891011121314151617181920212223
  1. <?php
  2. namespace App\Http\Models;
  3. use Illuminate\Database\Eloquent\Model;
  4. /**
  5. * 配置信息
  6. * Class SsConfig
  7. * @package App\Http\Models
  8. */
  9. class SsConfig extends Model
  10. {
  11. protected $table = 'ss_config';
  12. protected $primaryKey = 'id';
  13. protected $fillable = [
  14. 'name',
  15. 'type',
  16. 'is_default',
  17. 'sort'
  18. ];
  19. }