package md type LoginReq struct { UserName string `json:"username" binding:"required" label:"登录账号"` PassWord string `json:"password" binding:"required" label:"登录密码"` } type LoginResponse struct { Token string `json:"token"` } type Register struct { Mobile string `json:"mobile"` Captcha string `json:"captcha"` Type string `json:"type"` Zone string `json:"zone"` PicCode string `json:"pic_code"` PicCodeId string `json:"pic_code_id"` }