Skip to content

Commit 38bfb29

Browse files
committed
chore: add model
1 parent fe3448d commit 38bfb29

File tree

1 file changed

+15
-0
lines changed

1 file changed

+15
-0
lines changed

laravel/app/Models/Config.php

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
<?php
2+
3+
namespace App\Models;
4+
5+
use Illuminate\Database\Eloquent\Model;
6+
7+
class Config extends Model
8+
{
9+
/**
10+
* 与模型关联的数据表
11+
*
12+
* @var string
13+
*/
14+
protected $table = 'config';
15+
}

0 commit comments

Comments
 (0)