作者 陈志颖

合并分支 'dev' 到 'test'

fix:修复密码验证grantType



查看合并请求 !68
@@ -15,11 +15,12 @@ const RefreshTokenExipre = 3600 * 24 * 30 * 1 //刷新token 一个月过期 @@ -15,11 +15,12 @@ const RefreshTokenExipre = 3600 * 24 * 30 * 1 //刷新token 一个月过期
15 //const RefreshTokenExipre = 60 //刷新token 15 //const RefreshTokenExipre = 60 //刷新token
16 16
17 /*Login */ 17 /*Login */
  18 +// TODO 判断grantTypePwd校验
18 type LoginRequest struct { 19 type LoginRequest struct {
19 Phone string `json:"phone" valid:"Required;"` 20 Phone string `json:"phone" valid:"Required;"`
20 Password string `json:"password"` 21 Password string `json:"password"`
21 Captcha string `json:"captcha"` 22 Captcha string `json:"captcha"`
22 - GrantType string `json:"grantType"` // 登录类型 1:密码 2:验证码 23 + GrantType string `json:"grantType" valid:"Required;"` // 登录类型 1:密码 2:验证码
23 ClientId string `json:"clientId"` 24 ClientId string `json:"clientId"`
24 Credentials string `json:"credentials"` //凭证登录 25 Credentials string `json:"credentials"` //凭证登录
25 } 26 }