We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bc478f5 commit 10a4a75Copy full SHA for 10a4a75
README.md
@@ -137,12 +137,20 @@ ApplicationContext::getContainer()->get(DataRedis::class);
137
declare(strict_types=1);
138
139
namespace App\Model;
140
-use Guanhui07\SwooleDatabase\Adapter\Model;
+
141
+use DcrSwoole\DbConnection\Model;
142
+/**
143
+ * Class UserModel
144
+ * @see https://github.com/illuminate/database
145
+ * @property int $id
146
+ * @property string $created_at
147
+ */
148
class UserModel extends Model
149
{
150
protected $table = 'user';
151
}
152
153
154
```
155
156
### 控制器validate
0 commit comments