package models type LoginReturnInfo struct { //用户id Userid string `json:"userid"` //用户名称 Name string `json:"name"` //token Token string `json:"token"` //用户类型 Type int32 `json:"type"` }