| 1234567891011121314151617181920212223 |
- <?php
- namespace App\Http\Models;
- use Illuminate\Database\Eloquent\Model;
- /**
- * 配置信息
- * Class SsConfig
- * @package App\Http\Models
- */
- class SsConfig extends Model
- {
- protected $table = 'ss_config';
- protected $primaryKey = 'id';
- protected $fillable = [
- 'name',
- 'type',
- 'is_default',
- 'sort'
- ];
- }
|