package req // LoginBody 登录参数 type LoginBody struct { UserName string `json:"username"` //用户名 Password string `json:"password"` //密码 Code string `json:"code"` //验证码 Uuid string `json:"uuid"` //id LoginType string `json:"loginType"` //登录方式 LoginPoint string `json:"LoginPoint"` //登录终端 Phone string `json:"phone"` //手机 }