* 会员用户管理 */ namespace app\ais\model; use think\Model; class AisCardOrder extends Model{ protected $pk = 'id'; /** * 好店 * @return void */ public function store(){ return $this->hasOne('AisStore','id','store_id'); } //用户 public function user(){ return $this->hasOne('app\common\model\SystemUser','id','uid'); } }