qryTjmd.go 3.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394
  1. /**
  2. * @Author: zou.yingbin
  3. * @Create : 2021/9/7 16:27
  4. * @Modify : 2021/9/7 16:27
  5. */
  6. package tjmd
  7. import (
  8. "github.com/gin-gonic/gin"
  9. "mtp2_if/global/app"
  10. "mtp2_if/models"
  11. )
  12. // QueryQuoteGoodsList
  13. // @Summary 查询掉期报价列表
  14. // @Description 用户类型必传, 查掉期报价列表 marketids=掉期市场id
  15. // @Produce json
  16. // @Security ApiKeyAuth
  17. // @Param usertype query int true "用户类型"
  18. // @Param marketids query string false "市场id, 格式 1,2,3"
  19. // @Param goodsgroupid query int false "商品组id"
  20. // @Param goodsid query int false "商品id"
  21. // @Success 200 {array} models.TjmdQuoteGoods
  22. // @Failure 500 {object} app.Response
  23. // @Router /Tjmd/QueryQuoteGoodsList [get]
  24. // @Tags 天津麦顿
  25. func QueryQuoteGoodsList(c *gin.Context) {
  26. a := app.GinUtils{Gin: app.Gin{C: c}}
  27. m := models.TjmdQuoteGoods{}
  28. a.DoBindReq(&m)
  29. a.DoGetDataI(&m)
  30. }
  31. // QueryTjmdTradeOrderDetail
  32. // @Summary 查询掉期买卖大厅
  33. // @Description 用户类型必传, 投资者只能看到自营会员的单, 反之亦然
  34. // @Produce json
  35. // @Security ApiKeyAuth
  36. // @Param page query int false "页码"
  37. // @Param pagesize query int false "每页条数"
  38. // @Param userid query int true "用户id"
  39. // @Param usertype query int true "用户类型"
  40. // @Param marketids query string false "市场id, 格式 1,2,3"
  41. // @Param goodsid query int true "商品id"
  42. // @Param buyorsell query int true "买卖方向 0-买 1-卖"
  43. // @Success 200 {array} models.TjmdTradeOrderDetail
  44. // @Failure 500 {object} app.Response
  45. // @Router /Tjmd/QueryTjmdTradeOrderDetail [get]
  46. // @Tags 天津麦顿
  47. func QueryTjmdTradeOrderDetail(c *gin.Context) {
  48. a := app.GinUtils{Gin: app.Gin{C: c}}
  49. m := models.TjmdTradeOrderDetail{}
  50. a.DoBindReq(&m)
  51. a.DoGetDataByPage(&m)
  52. }
  53. // QueryTjmdTransferApply
  54. // @Summary 查询掉期协议单
  55. // @Produce json
  56. // @Security ApiKeyAuth
  57. // @Param applytype query int true "类型 1-我的申请 2-对方申请"
  58. // @Param marketids query string false "市场id, 格式 1,2,3"
  59. // @Param accountids query string false "资金账号, 格式 25000000001,25000000003"
  60. // @Param begindate query string false "开始交易日(yyyymmdd)"
  61. // @Param enddate query string false "结束交易日(yyyymmdd)"
  62. // @Success 200 {array} models.TjmdTransferApply
  63. // @Failure 500 {object} app.Response
  64. // @Router /Tjmd/QueryTjmdTransferApply [get]
  65. // @Tags 天津麦顿
  66. func QueryTjmdTransferApply(c *gin.Context) {
  67. a := app.GinUtils{Gin: app.Gin{C: c}}
  68. m := models.TjmdTransferApply{}
  69. a.DoBindReq(&m)
  70. a.DoGetDataI(&m)
  71. }
  72. // QueryTjmdTodayAccountMargin
  73. // @Summary 查询今日账户保证金配置
  74. // @Produce json
  75. // @Security ApiKeyAuth
  76. // @Param marketid query string false "市场id"
  77. // @Param goodsid query string false "商品id"
  78. // @Param accountid query string false "资金账号"
  79. // @Success 200 {array} models.TjmdTodayAccountMargin
  80. // @Failure 500 {object} app.Response
  81. // @Router /Tjmd/QueryTjmdTodayAccountMargin [get]
  82. // @Tags 天津麦顿
  83. func QueryTjmdTodayAccountMargin(c *gin.Context) {
  84. a := app.GinUtils{Gin: app.Gin{C: c}}
  85. m := models.TjmdTodayAccountMargin{}
  86. a.DoBindReq(&m)
  87. a.DoGetDataI(&m)
  88. }