login_request.go 415 B

123456789101112
  1. package req
  2. // LoginBody 登录参数
  3. type LoginBody struct {
  4. UserName string `json:"username"` //用户名
  5. Password string `json:"password"` //密码
  6. Code string `json:"code"` //验证码
  7. Uuid string `json:"uuid"` //id
  8. LoginType string `json:"loginType"` //登录方式
  9. LoginPoint string `json:"LoginPoint"` //登录终端
  10. Phone string `json:"phone"` //手机
  11. }