qryFuturesCompany.go 594 B

123456789101112131415161718192021222324252627
  1. /**
  2. * @Author: zou.yingbin
  3. * @Create : 2021/4/13 10:35
  4. * @Modify : 2021/4/13 10:35
  5. */
  6. package ermcp
  7. import (
  8. "github.com/gin-gonic/gin"
  9. "mtp2_if/global/app"
  10. "mtp2_if/models"
  11. )
  12. // QueryFuturesCompany
  13. // @Summary 查询期货公司
  14. // @Produce json
  15. // @Security ApiKeyAuth
  16. // @Success 200 {array} models.ErmcpFuturesCompany
  17. // @Failure 500 {object} app.Response
  18. // @Router /Ermcp/QueryFuturesCompany [get]
  19. // @Tags 企业风险管理(app)
  20. func QueryFuturesCompany(c *gin.Context) {
  21. a := app.GinUtils{Gin: app.Gin{C: c}}
  22. m := models.ErmcpFuturesCompany{}
  23. a.DoGetDataI(&m)
  24. }