/** * @Author: zou.yingbin * @Create : 2021/4/13 10:35 * @Modify : 2021/4/13 10:35 */ package ermcp import ( "github.com/gin-gonic/gin" "mtp2_if/global/app" "mtp2_if/models" ) // QueryFuturesCompany // @Summary 查询期货公司 // @Produce json // @Security ApiKeyAuth // @Success 200 {array} models.ErmcpFuturesCompany // @Failure 500 {object} app.Response // @Router /Ermcp/QueryFuturesCompany [get] // @Tags 企业风险管理(app) func QueryFuturesCompany(c *gin.Context) { a := app.GinUtils{Gin: app.Gin{C: c}} m := models.ErmcpFuturesCompany{} a.DoGetDataI(&m) }