智慧食堂
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

1年前
1年前
1年前
123456789101112131415161718192021222324252627282930
  1. package hdl
  2. import (
  3. "applet/app/db"
  4. "applet/app/e"
  5. "fmt"
  6. "github.com/gin-gonic/gin"
  7. "time"
  8. )
  9. // Demo 测试
  10. func Demo(c *gin.Context) {
  11. qrcodeWithBatchRecordsDb := db.AdminDb{}
  12. qrcodeWithBatchRecordsDb.Set()
  13. data, _, err := qrcodeWithBatchRecordsDb.GetAdminRolePermission(1001)
  14. if err != nil {
  15. e.OutErr(c, e.ERR_DB_ORM, err.Error())
  16. return
  17. }
  18. e.OutSuc(c, data, nil)
  19. go GoOnExecuting()
  20. return
  21. }
  22. func GoOnExecuting() {
  23. for i := 0; i < 20; i++ {
  24. time.Sleep(1 * time.Second)
  25. fmt.Println(i)
  26. }
  27. }