type Message struct {
ID int `json:"-"`
CreatedAt time.Time `json:"createdat"`
Body string `json:"body" gorm:"type:text"`
RoomID int `json:"roomid"`
UserID int `json:"userid"`
UserShowName string `json:"usershowname"`
}
type User struct {
ID int `json:"id,omitempty"`
ShowName string `json:"showname,omitempty"`
Gender string `json:"gender,omitempty"`
BirthYear int `json:"birthyear,omitempty"`
CredentialID int `json:"-"`
}