| 123456789101112131415161718192021222324252627282930 |
- #%RAML 1.0
- /current:
- get :
- displayName : 获得当前登录用户的信息
- is : [Response: { res: User }]
- /login:
- post :
- displayName : 登录
- body : LoginDTO
- is : [Response: { res: User }]
- /verification:
- post :
- displayName : 手机验证码
- body : VerificationDTO
- is : [EmptyResponse]
- /register:
- post :
- displayName : 注册
- body : RegisterDTO
- is : [Response: { res: User }]
- /password/change:
- post :
- displayName : 修改密码
- body : ChangePasswordForm
- is : [EmptyResponse]
|