cpTrade.go 3.8 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091
  1. // Package cptrade 产能预售
  2. package cptrade
  3. import (
  4. "mtp2_if/db"
  5. "mtp2_if/global/app"
  6. "mtp2_if/global/e"
  7. "mtp2_if/logger"
  8. "net/http"
  9. "time"
  10. "github.com/gin-gonic/gin"
  11. )
  12. // QueryPresaleApplyReq 产能预售申请表请求参数
  13. type QueryPresaleApplyReq struct {
  14. UserID int `form:"userid" binding:"required"`
  15. ApplyID int `form:"applyid"`
  16. AccountID int `form:"accountid"`
  17. }
  18. // Cptradepresaleapply CPTRADE_PRESALEAPPLY 产能预售申请表
  19. type Cptradepresaleapply struct {
  20. Applyid int64 `json:"applyid" xorm:"'APPLYID'" binding:"required"` // 申请ID(181+Unix秒时间戳(10位)+xxxxxx)
  21. Userid int64 `json:"userid" xorm:"'USERID'"` // 申请人ID
  22. Accountid int64 `json:"accountid" xorm:"'ACCOUNTID'"` // 申请人账户ID
  23. Goodscode string `json:"goodscode" xorm:"'GOODSCODE'"` // 商品代码
  24. Goodsname string `json:"goodsname" xorm:"'GOODSNAME'"` // 商品名称
  25. Relatedgoodsid int64 `json:"relatedgoodsid" xorm:"'RELATEDGOODSID'"` // 关联交易合约ID
  26. Presaleqty int64 `json:"presaleqty" xorm:"'PRESALEQTY'"` // 预售数量
  27. Starttime time.Time `json:"starttime" xorm:"'STARTTIME'"` // 预售开始时间
  28. Endtime time.Time `json:"endtime" xorm:"'ENDTIME'"` // 预售结束时间
  29. Attachmenturl string `json:"attachmenturl" xorm:"'ATTACHMENTURL'"` // 附件地址
  30. Applystatus int64 `json:"applystatus" xorm:"'APPLYSTATUS'"` // 申请状态 - 1:已提交 2:初审通过 3:初审拒绝 4:初审失败 5复审通过 6:复审拒绝 7:复审失败 8:已撤销
  31. Handlestatus int64 `json:"handlestatus" xorm:"'HANDLESTATUS'"` // 处理状态
  32. Applytime time.Time `json:"applytime" xorm:"'APPLYTIME'"` // 申请时间
  33. Firstremark string `json:"firstremark" xorm:"'FIRSTREMARK'"` // 初审备注
  34. Marketid int64 `json:"marketid" xorm:"'MARKETID'"` // 预售市场ID
  35. Secondremark string `json:"secondremark" xorm:"'SECONDREMARK'"` // 复审备注
  36. Tradedate string `json:"tradedate" xorm:"'TRADEDATE'"` // 交易日(yyyyMMdd)
  37. }
  38. // TableName is
  39. func (Cptradepresaleapply) TableName() string {
  40. return "CPTRADE_PRESALEAPPLY"
  41. }
  42. // QueryPreasleApply 查询产能预售申请表信息
  43. // @Summary 查询产能预售申请表信息
  44. // @Produce json
  45. // @Security ApiKeyAuth
  46. // @Param userid query int true "账户ID"
  47. // @Param applyid query int false "申请ID"
  48. // @Param accountid query int false "资金账户ID"
  49. // @Success 200 {object} Cptradepresaleapply
  50. // @Failure 500 {object} app.Response
  51. // @Router /CPTrade/QueryPreasleApply [get]
  52. // @Tags 产能预售
  53. func QueryPreasleApply(c *gin.Context) {
  54. appG := app.Gin{C: c}
  55. // 获取请求参数
  56. var queryPresaleApplyReq QueryPresaleApplyReq
  57. if err := appG.C.ShouldBindQuery(&queryPresaleApplyReq); err != nil {
  58. logger.GetLogger().Errorf("QueryPreasleApply failed: %s", err.Error())
  59. appG.Response(http.StatusBadRequest, e.INVALID_PARAMS, nil)
  60. return
  61. }
  62. // 查询数据
  63. engine := db.GetEngine()
  64. cptradepresaleapplys := make([]Cptradepresaleapply, 0)
  65. s := engine.Where("userid=?", queryPresaleApplyReq.UserID)
  66. if queryPresaleApplyReq.AccountID != 0 {
  67. s = s.And("accountid=?", queryPresaleApplyReq.AccountID)
  68. }
  69. if queryPresaleApplyReq.ApplyID != 0 {
  70. s = s.And("applyid=?", queryPresaleApplyReq.ApplyID)
  71. }
  72. // 执行查询
  73. err := s.Find(&cptradepresaleapplys)
  74. if err != nil {
  75. // 查询失败
  76. logger.GetLogger().Errorf("QueryPreasleApply failed: %s", err.Error())
  77. appG.Response(http.StatusBadRequest, e.ERROR_QUERY_FAIL, nil)
  78. return
  79. }
  80. appG.Response(http.StatusOK, e.SUCCESS, cptradepresaleapplys)
  81. }