智盟项目
25개 이상의 토픽을 선택하실 수 없습니다. Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

17 lines
269 B

  1. package hdl
  2. import (
  3. "applet/app/task/svc"
  4. "github.com/gin-gonic/gin"
  5. )
  6. func Order(c *gin.Context) {
  7. arg := map[string]interface{}{
  8. "start": "2023-07-08",
  9. "end": "2023-07-09",
  10. "page_size": 100,
  11. "page_index": 1,
  12. }
  13. svc.GetAdvOrder("0", arg)
  14. }