function JoinInfo(sid, loginId, shopName, roomId, roomName, shopMemberId) {
  this.sid = sid;
  this.loginId = loginId;
  this.shopName = shopName;
  this.roomId = roomId;
  this.roomName = roomName;
  this.shopMemberId = shopMemberId;
}