| 123456789101112131415161718192021222324252627282930313233 |
- /**
- * @Author: zou.yingbin
- * @Create : 2021/1/27 9:50
- * @Modify : 2021/1/27 9:50
- */
- package ermcp
- import (
- "github.com/gin-gonic/gin"
- "mtp2_if/global/app"
- "mtp2_if/models"
- )
- // 查询期货品种配置请求
- type QryGGCovertCfgReq struct {
- }
- // 查询期货品种配置应答
- type QryGGCovertCfgRsp models.ErmcpGGConvertCfg
- // @Summary 查询期货品种配置(菜单:商品信息/期货品种)
- // @Produce json
- // @Security ApiKeyAuth
- // @Success 200 {array} QryGGCovertCfgRsp
- // @Failure 500 {object} app.Response
- // @Router /Ermcp/QueryGGConvertConfig [get]
- // @Tags 企业风险管理(app)
- func QueryGGConvertConfig(c *gin.Context) {
- appG := app.GinUtils{Gin:app.Gin{C: c}}
- m := models.ErmcpGGConvertCfg{}
- appG.DoGetData(&m)
- }
|