123456789101112131415161718192021222324 |
- <?php
- namespace app\fastshop\model;
- use think\Model;
- class Store extends Model{
-
- protected $pk = 'id';
- protected $table = 'ai_fastshop_store';
-
- Public function user()
- {
- return $this->hasOne('app\common\model\SystemUser','id','uid');
- }
- }
|