// 新建商店 func (this *shopManagerImpl) CreateShop(v *shop.Shop) shop.IShop { v.CreateTime = time.Now().Unix() v.MerchantId = this._merchant.GetAggregateRootId() return newShop(this, v, this._rep) }