附近小店
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

21 lines
531 B

  1. package hdl
  2. import (
  3. "applet/app/agent/svc"
  4. "github.com/gin-gonic/gin"
  5. )
  6. // Login 登陆
  7. // @Summary 登陆
  8. // @Tags 登陆
  9. // @Description 登入
  10. // @Accept json
  11. // @Produce json
  12. // @Param req body md.FastLoginRequestBody true "请求参数"
  13. // @Success 200 {object} md.LoginResponse ""
  14. // @Failure 400 {object} md.Response "具体错误"
  15. // @Router /api/v1/communityTeam/agent/login [post]
  16. func Login(c *gin.Context) {
  17. svc.Login(c)
  18. }