Nelze vybrat více než 25 témat
Téma musí začínat písmenem nebo číslem, může obsahovat pomlčky („-“) a může být dlouhé až 35 znaků.
|
- 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"`
- }
|