访客登记系统第一次提交

master
dlcios 10 months ago
commit fbe8bfddc5
  1. 1
      .gitattributes
  2. 21
      .gitignore
  3. 74
      Makefile
  4. 9
      README.MD
  5. 42
      api/v1/visitor.go
  6. 8
      go.mod
  7. 110
      go.sum
  8. 9
      hack/config.yaml
  9. 32
      internal/cmd/cmd.go
  10. 18
      internal/consts/consts.go
  11. 30
      internal/controller/visitor.go
  12. 0
      internal/dao/.gitkeep
  13. 101
      internal/dao/internal/visitor_record.go
  14. 27
      internal/dao/visitor_record.go
  15. 57
      internal/libutil/LibUtil.go
  16. 27
      internal/middleware/MiddlewareErrorHandler.go
  17. 85
      internal/middleware/MiddlewareHandlerResponse.go
  18. 0
      internal/model/.gitkeep
  19. 0
      internal/model/do/.gitkeep
  20. 30
      internal/model/do/visitor_record.go
  21. 0
      internal/model/entity/.gitkeep
  22. 28
      internal/model/entity/visitor_record.go
  23. 6
      internal/model/visitor_record.go
  24. 1
      internal/packed/packed.go
  25. 0
      internal/service/.gitkeep
  26. 240
      internal/service/visitor.go
  27. 14
      main.go
  28. 21
      manifest/deploy/kustomize/base/deployment.yaml
  29. 8
      manifest/deploy/kustomize/base/kustomization.yaml
  30. 12
      manifest/deploy/kustomize/base/service.yaml
  31. 14
      manifest/deploy/kustomize/overlays/develop/configmap.yaml
  32. 10
      manifest/deploy/kustomize/overlays/develop/deployment.yaml
  33. 14
      manifest/deploy/kustomize/overlays/develop/kustomization.yaml
  34. 16
      manifest/docker/Dockerfile
  35. 8
      manifest/docker/docker.sh
  36. 0
      resource/i18n/.gitkeep
  37. 405
      resource/log/server/2023-11-16.log
  38. 747
      resource/log/server/2023-11-17.log
  39. 697
      resource/log/server/2023-11-18.log
  40. 1241
      resource/log/server/2023-11-20.log
  41. 6
      resource/log/server/access-20231116.log
  42. 53
      resource/log/server/access-20231117.log
  43. 57
      resource/log/server/access-20231118.log
  44. 48
      resource/log/server/access-20231120.log
  45. 9
      resource/log/server/error-20231116.log
  46. 89
      resource/log/server/error-20231117.log
  47. 92
      resource/log/server/error-20231118.log
  48. 101
      resource/log/sql/2023-11-17.log
  49. 1459
      resource/log/sql/2023-11-18.log
  50. 161
      resource/log/sql/2023-11-20.log
  51. 0
      resource/public/html/.gitkeep
  52. 0
      resource/public/plugin/.gitkeep
  53. 0
      resource/public/resource/css/.gitkeep
  54. 0
      resource/public/resource/image/.gitkeep
  55. 0
      resource/public/resource/js/.gitkeep
  56. 0
      resource/template/.gitkeep
  57. 0
      utility/.gitkeep

1
.gitattributes vendored

@ -0,0 +1 @@
* linguist-language=GO

21
.gitignore vendored

@ -0,0 +1,21 @@
.buildpath
.hgignore.swp
.project
.orig
.swp
.idea/
.settings/
.vscode/
vendor/
composer.lock
gitpush.sh
pkg/
bin/
cbuild
**/.DS_Store
.test/
main
output/
manifest/output/
temp/
/manifest/config/config.yaml

@ -0,0 +1,74 @@
ROOT_DIR = $(shell pwd)
NAMESPACE = "default"
DEPLOY_NAME = "template-single"
DOCKER_NAME = "template-single"
# Install/Update to the latest CLI tool.
.PHONY: cli
cli:
@set -e; \
wget -O gf https://github.com/gogf/gf/releases/latest/download/gf_$(shell go env GOOS)_$(shell go env GOARCH) && \
chmod +x gf && \
./gf install -y && \
rm ./gf
# Check and install CLI tool.
.PHONY: cli.install
cli.install:
@set -e; \
gf -v > /dev/null 2>&1 || if [[ "$?" -ne "0" ]]; then \
echo "GoFame CLI is not installed, start proceeding auto installation..."; \
make cli; \
fi;
# Generate Go files for DAO/DO/Entity.
.PHONY: dao
dao: cli.install
@gf gen dao
# Generate Go files for Service.
.PHONY: service
service: cli.install
@gf gen service
# Build image, deploy image and yaml to current kubectl environment and make port forward to local machine.
.PHONY: start
start:
@set -e; \
make image; \
make deploy; \
make port;
# Build docker image.
.PHONY: image
image: cli.install
$(eval _TAG = $(shell git log -1 --format="%cd.%h" --date=format:"%Y%m%d%H%M%S"))
ifneq (, $(shell git status --porcelain 2>/dev/null))
$(eval _TAG = $(_TAG).dirty)
endif
$(eval _TAG = $(if ${TAG}, ${TAG}, $(_TAG)))
$(eval _PUSH = $(if ${PUSH}, ${PUSH}, ))
@gf docker -p -b "-a amd64 -s linux -p temp" -t $(DOCKER_NAME):${_TAG};
# Build docker image and automatically push to docker repo.
.PHONY: image.push
image.push:
@make image PUSH=-p;
# Deploy image and yaml to current kubectl environment.
.PHONY: deploy
deploy:
$(eval _TAG = $(if ${TAG}, ${TAG}, develop))
@set -e; \
mkdir -p $(ROOT_DIR)/temp/kustomize;\
cd $(ROOT_DIR)/manifest/deploy/kustomize/overlays/${_TAG};\
kustomize build > $(ROOT_DIR)/temp/kustomize.yaml;\
kubectl apply -f $(ROOT_DIR)/temp/kustomize.yaml; \
kubectl patch -n $(NAMESPACE) deployment/$(DEPLOY_NAME) -p "{\"spec\":{\"template\":{\"metadata\":{\"labels\":{\"date\":\"$(shell date +%s)\"}}}}}";

@ -0,0 +1,9 @@
# GoFrame Template For SingleRepo
Project Makefile Commands:
- `make cli`: Install or Update to the latest GoFrame CLI tool.
- `make dao`: Generate go files for `Entity/DAO/DO` according to the configuration file from `hack` folder.
- `make service`: Parse `logic` folder to generate interface go files into `service` folder.
- `make image TAG=xxx`: Run `docker build` to build image according `manifest/docker`.
- `make image.push TAG=xxx`: Run `docker build` and `docker push` to build and push image according `manifest/docker`.
- `make deploy TAG=xxx`: Run `kustomize build` to build and deploy deployment to kubernetes server group according `manifest/deploy`.

@ -0,0 +1,42 @@
package v1
import (
"github.com/gogf/gf/v2/frame/g"
)
type VisitorAccessReq struct {
g.Meta `path:"/visitor_access" tags:"visitor access" method:"post" summary:"visitor access"`
VisitorName string `p:"visitor_name" v:"required|max-length:10#请填写拜访人名称|访客名称过长"`
VisitorIdentity string `p:"visitor_identity" v:"required|max-length:18#请填写拜访人身份证号码|身份证号过长"`
VisitorPhone string `p:"visitor_phone" v:"required|phone#请填写拜访人手机|请填写正确的手机号码"`
VisitorDepartment string `p:"visitor_department" v:"required|max-length:30#请填写来访单位|请填写正确的来访单位"`
DstDepartment string `p:"dst_department" v:"required|max-length:20#请填写拜访人部门|请填写正确的拜访人部门"`
DstName string `p:"dst_name" v:"required|max-length:10#访客名称不能为空|拜访人姓名过长"`
DstLocation string `p:"dst_location" v:"required|max-length:10#拜访人地址不能为空|拜访人地址非法"`
Reason string `p:"reason" v:"required|max-length:255#请填写来访事由|来访事由过长"`
VehicleNumber string `p:"vehicle_number"`
Remark string `p:"remark"`
LeftAt int `p:"left_at" v:"required|max-length:10#请填写离场时间|请填写正确离场时间"`
VisitAt int `p:"visit_at" v:"required|max-length:10#请填写拜访时间|请填写正确拜访时间"`
}
type VisitorAccessRes struct {
g.Meta `mime:"text/html" example:"string"`
}
type VisitorStatisticReq struct {
g.Meta `path:"/visitor_statistic" tags:"visitor statistic" method:"post" summary:"visitor statistic"`
StatisticType string `p:"statistic_type" v:"required|in:day,week,month,year#请选择统计类型|非法统计类型"`
SubType string `p:"sub_type" v:"required-unless:statistic_type,day#请选择跨度"`
StartDate int `p:"start_date" v:"required-if:statistic_type,day|max-length:10#请选择起始日期|请选择正确的起始日期"`
EndDate int `p:"end_date" v:"required-if:statistic_type,day|max-length:10#请选择截止日期|请选择正确的截止日期"`
VisitorName string `p:"visitor_name"`
VisitorIdentity string `p:"visitor_identity"`
VisitorPhone string `p:"visitor_phone" v:"phone#请填写正确手机号"`
}
type VisitorStatisticRes struct {
g.Meta `mime:"text/html" example:"string"`
XAxis g.SliceStr `p:"x_axis"`
YAxis g.SliceStr `p:"y_axis"`
}

@ -0,0 +1,8 @@
module vistor
go 1.15
require (
github.com/gogf/gf/contrib/drivers/mysql/v2 v2.5.6
github.com/gogf/gf/v2 v2.5.6
)

110
go.sum

@ -0,0 +1,110 @@
github.com/BurntSushi/toml v1.2.0 h1:Rt8g24XnyGTyglgET/PRUNlrUeu9F5L+7FilkXfZgs0=
github.com/BurntSushi/toml v1.2.0/go.mod h1:CxXYINrC8qIiEnFrOxCa7Jy5BFHlXnUU2pbicEuybxQ=
github.com/clbanning/mxj/v2 v2.7.0 h1:WA/La7UGCanFe5NpHF0Q3DNtnCsVoxbPKuyBNHWRyME=
github.com/clbanning/mxj/v2 v2.7.0/go.mod h1:hNiWqW14h+kc+MdF9C6/YoRfjEJoR3ou6tn/Qo+ve2s=
github.com/davecgh/go-spew v1.1.0/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38=
github.com/davecgh/go-spew v1.1.1 h1:vj9j/u1bqnvCEfJOwUhtlOARqs3+rkHYY13jYWTU97c=
github.com/davecgh/go-spew v1.1.1/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38=
github.com/fatih/color v1.15.0 h1:kOqh6YHBtK8aywxGerMG2Eq3H6Qgoqeo13Bk2Mv/nBs=
github.com/fatih/color v1.15.0/go.mod h1:0h5ZqXfHYED7Bhv2ZJamyIOUej9KtShiJESRwBDUSsw=
github.com/fsnotify/fsnotify v1.6.0 h1:n+5WquG0fcWoWp6xPWfHdbskMCQaFnG6PfBrh1Ky4HY=
github.com/fsnotify/fsnotify v1.6.0/go.mod h1:sl3t1tCWJFWoRz9R8WJCbQihKKwmorjAbSClcnxKAGw=
github.com/go-logr/logr v1.2.2/go.mod h1:jdQByPbusPIv2/zmleS9BjJVeZ6kBagPoEUsqbVz/1A=
github.com/go-logr/logr v1.2.3/go.mod h1:jdQByPbusPIv2/zmleS9BjJVeZ6kBagPoEUsqbVz/1A=
github.com/go-logr/logr v1.2.4 h1:g01GSCwiDw2xSZfjJ2/T9M+S6pFdcNtFYsp+Y43HYDQ=
github.com/go-logr/logr v1.2.4/go.mod h1:jdQByPbusPIv2/zmleS9BjJVeZ6kBagPoEUsqbVz/1A=
github.com/go-logr/stdr v1.2.2 h1:hSWxHoqTgW2S2qGc0LTAI563KZ5YKYRhT3MFKZMbjag=
github.com/go-logr/stdr v1.2.2/go.mod h1:mMo/vtBO5dYbehREoey6XUKy/eSumjCCveDpRre4VKE=
github.com/go-sql-driver/mysql v1.7.1 h1:lUIinVbN1DY0xBg0eMOzmmtGoHwWBbvnWubQUrtU8EI=
github.com/go-sql-driver/mysql v1.7.1/go.mod h1:OXbVy3sEdcQ2Doequ6Z5BW6fXNQTmx+9S1MCJN5yJMI=
github.com/gogf/gf/contrib/drivers/mysql/v2 v2.5.6 h1:oR9F4LVoKa/fjf/o6Y/CQRNiYy35Bszo07WwvMWYMxo=
github.com/gogf/gf/contrib/drivers/mysql/v2 v2.5.6/go.mod h1:gvHSRqCpv2c+N0gDHsEldHgU/yM9tcCBdIEKZ32/TaE=
github.com/gogf/gf/v2 v2.5.6 h1:a1UK1yUP3s+l+vPxmV91+8gTarAP9b1IEOw0W7LNl6E=
github.com/gogf/gf/v2 v2.5.6/go.mod h1:17K/gBYrp0bHGC3XYC7bSPoywmZ6MrZHrZakTfh4eIQ=
github.com/google/go-cmp v0.5.9 h1:O2Tfq5qg4qc4AmwVlvv0oLiVAGB7enBSJ2x2DqQFi38=
github.com/google/go-cmp v0.5.9/go.mod h1:17dUlkBOakJ0+DkrSSNjCkIjxS6bF9zb3elmeNGIjoY=
github.com/gorilla/websocket v1.5.0 h1:PPwGk2jz7EePpoHN/+ClbZu8SPxiqlu12wZP/3sWmnc=
github.com/gorilla/websocket v1.5.0/go.mod h1:YR8l580nyteQvAITg2hZ9XVh4b55+EU/adAjf1fMHhE=
github.com/grokify/html-strip-tags-go v0.0.1 h1:0fThFwLbW7P/kOiTBs03FsJSV9RM2M/Q/MOnCQxKMo0=
github.com/grokify/html-strip-tags-go v0.0.1/go.mod h1:2Su6romC5/1VXOQMaWL2yb618ARB8iVo6/DR99A6d78=
github.com/magiconair/properties v1.8.6 h1:5ibWZ6iY0NctNGWo87LalDlEZ6R41TqbbDamhfG/Qzo=
github.com/magiconair/properties v1.8.6/go.mod h1:y3VJvCyxH9uVvJTWEGAELF3aiYNyPKd5NZ3oSwXrF60=
github.com/mattn/go-colorable v0.1.13 h1:fFA4WZxdEF4tXPZVKMLwD8oUnCTTo08duU7wxecdEvA=
github.com/mattn/go-colorable v0.1.13/go.mod h1:7S9/ev0klgBDR4GtXTXX8a3vIGJpMovkB8vQcUbaXHg=
github.com/mattn/go-isatty v0.0.16/go.mod h1:kYGgaQfpe5nmfYZH+SKPsOc2e4SrIfOl2e/yFXSvRLM=
github.com/mattn/go-isatty v0.0.17/go.mod h1:kYGgaQfpe5nmfYZH+SKPsOc2e4SrIfOl2e/yFXSvRLM=
github.com/mattn/go-isatty v0.0.19 h1:JITubQf0MOLdlGRuRq+jtsDlekdYPia9ZFsB8h/APPA=
github.com/mattn/go-isatty v0.0.19/go.mod h1:W+V8PltTTMOvKvAeJH7IuucS94S2C6jfK/D7dTCTo3Y=
github.com/mattn/go-runewidth v0.0.9/go.mod h1:H031xJmbD/WCDINGzjvQ9THkh0rPKHF+m2gUSrubnMI=
github.com/mattn/go-runewidth v0.0.15 h1:UNAjwbU9l54TA3KzvqLGxwWjHmMgBUVhBiTjelZgg3U=
github.com/mattn/go-runewidth v0.0.15/go.mod h1:Jdepj2loyihRzMpdS35Xk/zdY8IAYHsh153qUoGf23w=
github.com/olekukonko/tablewriter v0.0.5 h1:P2Ga83D34wi1o9J6Wh1mRuqd4mF/x/lgBS7N7AbDhec=
github.com/olekukonko/tablewriter v0.0.5/go.mod h1:hPp6KlRPjbx+hW8ykQs1w3UBbZlj6HuIJcUGPhkA7kY=
github.com/pmezard/go-difflib v1.0.0 h1:4DBwDE0NGyQoBHbLQYPwSUPoCMWR5BEzIk/f1lZbAQM=
github.com/pmezard/go-difflib v1.0.0/go.mod h1:iKH77koFhYxTK1pcRnkKkqfTogsbg7gZNVY4sRDYZ/4=
github.com/rivo/uniseg v0.2.0/go.mod h1:J6wj4VEh+S6ZtnVlnTBMWIodfgj8LQOQFoIToxlJtxc=
github.com/rivo/uniseg v0.4.4 h1:8TfxU8dW6PdqD27gjM8MVNuicgxIjxpm4K7x4jp8sis=
github.com/rivo/uniseg v0.4.4/go.mod h1:FN3SvrM+Zdj16jyLfmOkMNblXMcoc8DfTHruCPUcx88=
github.com/stretchr/objx v0.1.0/go.mod h1:HFkY916IF+rwdDfMAkV7OtwuqBVzrE8GR6GFx+wExME=
github.com/stretchr/objx v0.4.0/go.mod h1:YvHI0jy2hoMjB+UWwv71VJQ9isScKT/TqJzVSSt89Yw=
github.com/stretchr/objx v0.5.0/go.mod h1:Yh+to48EsGEfYuaHDzXPcE3xhTkx73EhmCGUpEOglKo=
github.com/stretchr/testify v1.7.1/go.mod h1:6Fq8oRcR53rry900zMqJjRRixrwX3KX962/h/Wwjteg=
github.com/stretchr/testify v1.8.0/go.mod h1:yNjHg4UonilssWZ8iaSj1OCr/vHnekPRkoO+kdMU+MU=
github.com/stretchr/testify v1.8.2 h1:+h33VjcLVPDHtOdpUCuF+7gSuG3yGIftsP1YvFihtJ8=
github.com/stretchr/testify v1.8.2/go.mod h1:w2LPCIKwWwSfY2zedu0+kehJoqGctiVI29o6fzry7u4=
github.com/yuin/goldmark v1.4.13/go.mod h1:6yULJ656Px+3vBD8DxQVa3kxgyrAnzto9xy5taEt/CY=
go.opentelemetry.io/otel v1.14.0 h1:/79Huy8wbf5DnIPhemGB+zEPVwnN6fuQybr/SRXa6hM=
go.opentelemetry.io/otel v1.14.0/go.mod h1:o4buv+dJzx8rohcUeRmWUZhqupFvzWis188WlggnNeU=
go.opentelemetry.io/otel/sdk v1.14.0 h1:PDCppFRDq8A1jL9v6KMI6dYesaq+DFcDZvjsoGvxGzY=
go.opentelemetry.io/otel/sdk v1.14.0/go.mod h1:bwIC5TjrNG6QDCHNWvW4HLHtUQ4I+VQDsnjhvyZCALM=
go.opentelemetry.io/otel/trace v1.14.0 h1:wp2Mmvj41tDsyAJXiWDWpfNsOiIyd38fy85pyKcFq/M=
go.opentelemetry.io/otel/trace v1.14.0/go.mod h1:8avnQLK+CG77yNLUae4ea2JDQ6iT+gozhnZjy/rw9G8=
golang.org/x/crypto v0.0.0-20190308221718-c2843e01d9a2/go.mod h1:djNgcEr1/C05ACkg1iLfiJU5Ep61QUkGW8qpdssI0+w=
golang.org/x/crypto v0.0.0-20210921155107-089bfa567519/go.mod h1:GvvjBRRGRdwPK5ydBHafDWAxML/pGHZbMvKqRZ5+Abc=
golang.org/x/crypto v0.14.0/go.mod h1:MVFd36DqK4CsrnJYDkBA3VC4m2GkXAM0PvzMCn4JQf4=
golang.org/x/mod v0.6.0-dev.0.20220419223038-86c51ed26bb4/go.mod h1:jJ57K6gSWd91VN4djpZkiMVwK6gcyfeH4XE8wZrZaV4=
golang.org/x/mod v0.8.0/go.mod h1:iBbtSCu2XBx23ZKBPSOrRkjjQPZFPuis4dIYUhu/chs=
golang.org/x/net v0.0.0-20190620200207-3b0461eec859/go.mod h1:z5CRVTTTmAJ677TzLLGU+0bjPO0LkuOLi4/5GtJWs/s=
golang.org/x/net v0.0.0-20210226172049-e18ecbb05110/go.mod h1:m0MpNAwzfU5UDzcl9v0D8zg8gWTRqZa9RBIspLL5mdg=
golang.org/x/net v0.0.0-20220722155237-a158d28d115b/go.mod h1:XRhObCWvk6IyKnWLug+ECip1KBveYUHfp+8e9klMJ9c=
golang.org/x/net v0.6.0/go.mod h1:2Tu9+aMcznHK/AK1HMvgo6xiTLG5rD5rZLDS+rp2Bjs=
golang.org/x/net v0.10.0/go.mod h1:0qNGK6F8kojg2nk9dLZ2mShWaEBan6FAoqfSigmmuDg=
golang.org/x/net v0.17.0 h1:pVaXccu2ozPjCXewfr1S7xza/zcXTity9cCdXQYSjIM=
golang.org/x/net v0.17.0/go.mod h1:NxSsAGuq816PNPmqtQdLE42eU2Fs7NoRIZrHJAlaCOE=
golang.org/x/sync v0.0.0-20190423024810-112230192c58/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM=
golang.org/x/sync v0.0.0-20220722155255-886fb9371eb4/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM=
golang.org/x/sync v0.1.0/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM=
golang.org/x/sys v0.0.0-20190215142949-d0b11bdaac8a/go.mod h1:STP8DvDyc/dI5b8T5hshtkjS+E42TnysNCUPdjciGhY=
golang.org/x/sys v0.0.0-20201119102817-f84b799fce68/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs=
golang.org/x/sys v0.0.0-20210615035016-665e8c7367d1/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg=
golang.org/x/sys v0.0.0-20220520151302-bc2c85ada10a/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg=
golang.org/x/sys v0.0.0-20220722155257-8c9f86f7a55f/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg=
golang.org/x/sys v0.0.0-20220811171246-fbc7d0a398ab/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg=
golang.org/x/sys v0.0.0-20220908164124-27713097b956/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg=
golang.org/x/sys v0.5.0/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg=
golang.org/x/sys v0.6.0/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg=
golang.org/x/sys v0.8.0/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg=
golang.org/x/sys v0.13.0 h1:Af8nKPmuFypiUBjVoU9V20FiaFXOcuZI21p0ycVYYGE=
golang.org/x/sys v0.13.0/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg=
golang.org/x/term v0.0.0-20201126162022-7de9c90e9dd1/go.mod h1:bj7SfCRtBDWHUb9snDiAeCFNEtKQo2Wmx5Cou7ajbmo=
golang.org/x/term v0.0.0-20210927222741-03fcf44c2211/go.mod h1:jbD1KX2456YbFQfuXm/mYQcufACuNUgVhRMnK/tPxf8=
golang.org/x/term v0.5.0/go.mod h1:jMB1sMXY+tzblOD4FWmEbocvup2/aLOaQEp7JmGp78k=
golang.org/x/term v0.8.0/go.mod h1:xPskH00ivmX89bAKVGSKKtLOWNx2+17Eiy94tnKShWo=
golang.org/x/term v0.13.0/go.mod h1:LTmsnFJwVN6bCy1rVCoS+qHT1HhALEFxKncY3WNNh4U=
golang.org/x/text v0.3.0/go.mod h1:NqM8EUOU14njkJ3fqMW+pc6Ldnwhi/IjpwHt7yyuwOQ=
golang.org/x/text v0.3.3/go.mod h1:5Zoc/QRtKVWzQhOtBMvqHzDpF6irO9z98xDceosuGiQ=
golang.org/x/text v0.3.7/go.mod h1:u+2+/6zg+i71rQMx5EYifcz6MCKuco9NR6JIITiCfzQ=
golang.org/x/text v0.7.0/go.mod h1:mrYo+phRRbMaCq/xk9113O4dZlRixOauAjOtrjsXDZ8=
golang.org/x/text v0.9.0/go.mod h1:e1OnstbJyHTd6l/uOt8jFFHp6TRDWZR/bV3emEE/zU8=
golang.org/x/text v0.13.0 h1:ablQoSUd0tRdKxZewP80B+BaqeKJuVhuRxj/dkrun3k=
golang.org/x/text v0.13.0/go.mod h1:TvPlkZtksWOMsz7fbANvkp4WM8x/WCo/om8BMLbz+aE=
golang.org/x/tools v0.0.0-20180917221912-90fa682c2a6e/go.mod h1:n7NCudcB/nEzxVGmLbDWY5pfWTLqBcC2KZ6jyYvM4mQ=
golang.org/x/tools v0.0.0-20191119224855-298f0cb1881e/go.mod h1:b+2E5dAYhXwXZwtnZ6UAqBI28+e2cm9otk0dWdXHAEo=
golang.org/x/tools v0.1.12/go.mod h1:hNGJHUnrk76NpqgfD5Aqm5Crs+Hm0VOH/i9J2+nxYbc=
golang.org/x/tools v0.6.0/go.mod h1:Xwgl3UAJ/d3gWutnCtw505GrjyAbvKui8lOU390QaIU=
golang.org/x/xerrors v0.0.0-20190717185122-a985d3407aa7/go.mod h1:I/5z698sn9Ka8TeJc9MKroUUfqBBauWjQqLJ2OPfmY0=
gopkg.in/check.v1 v0.0.0-20161208181325-20d25e280405 h1:yhCVgyC4o1eVCa2tZl7eS0r+SDo693bJlVdllGtEeKM=
gopkg.in/check.v1 v0.0.0-20161208181325-20d25e280405/go.mod h1:Co6ibVJAznAaIkqp8huTwlJQCZ016jof/cbN4VW5Yz0=
gopkg.in/yaml.v3 v3.0.0-20200313102051-9f266ea9e77c/go.mod h1:K4uyk7z7BCEPqu6E+C64Yfv1cQ7kz7rIZviUmN+EgEM=
gopkg.in/yaml.v3 v3.0.1 h1:fxVm/GzAzEWqLHuvctI91KS9hhNmmWOoWu0XTYJS7CA=
gopkg.in/yaml.v3 v3.0.1/go.mod h1:K4uyk7z7BCEPqu6E+C64Yfv1cQ7kz7rIZviUmN+EgEM=

@ -0,0 +1,9 @@
# CLI tool, only in development environment.
# https://goframe.org/pages/viewpage.action?pageId=3673173
gfcli:
gen:
dao:
- link: "mysql:snciot:Snciot@2022@tcp(120.77.170.190:3306)/visitor"
tables: "visitor_record"
# path: "./common"

@ -0,0 +1,32 @@
package cmd
import (
"context"
"vistor/internal/middleware"
"github.com/gogf/gf/v2/frame/g"
"github.com/gogf/gf/v2/net/ghttp"
"github.com/gogf/gf/v2/os/gcmd"
"vistor/internal/controller"
)
var (
Main = gcmd.Command{
Name: "main",
Usage: "main",
Brief: "start http server",
Func: func(ctx context.Context, parser *gcmd.Parser) (err error) {
s := g.Server()
s.Group("/", func(group *ghttp.RouterGroup) {
group.Middleware(middleware.HandlerResponse)
group.Bind(
//controller.Hello,
controller.Visitor,
)
})
s.Run()
return nil
},
}
)

@ -0,0 +1,18 @@
package consts
const StatisticTypeDay = "day"
const StatisticTypeWeek = "week"
const StatisticTypeMonth = "month"
const StatisticTypeYear = "year"
const SubTypeLastWeek = "thisWeek"
const SubTypeLast2Week = "last2Week"
const SubTypeLast3Week = "last3Week"
const SubTypeLast3Month = "last3Month"
const SubTypeLast6Month = "last6Month"
const SubTypeLast9Month = "last9Month"
const SubTypeLastYear = "thisYear"
const SubTypeLast2Year = "last2Year"
const SubTypeLast3Year = "last3Year"

@ -0,0 +1,30 @@
package controller
import (
"context"
"github.com/gogf/gf/v2/errors/gerror"
"vistor/api/v1"
"vistor/internal/service"
)
var (
Visitor = cVisitor{}
)
type cVisitor struct{}
func (c *cVisitor) VisitorAccess(ctx context.Context, req *v1.VisitorAccessReq) (res *v1.VisitorAccessRes, err error) {
err = service.Visitor.VisitorAccess(ctx, req)
if err != nil {
return nil, gerror.Newf("提交失败,请稍后再试")
}
return
}
func (c *cVisitor) VisitorStatistic(ctx context.Context, req *v1.VisitorStatisticReq) (res *v1.VisitorStatisticRes, err error) {
res, err = service.Visitor.VisitorStatistic(ctx, req)
if err != nil {
return nil, gerror.Newf("系统繁忙,请稍后再试")
}
return
}

@ -0,0 +1,101 @@
// ==========================================================================
// Code generated by GoFrame CLI tool. DO NOT EDIT.
// ==========================================================================
package internal
import (
"context"
"github.com/gogf/gf/v2/database/gdb"
"github.com/gogf/gf/v2/frame/g"
)
// VisitorRecordDao is the data access object for table visitor_record.
type VisitorRecordDao struct {
table string // table is the underlying table name of the DAO.
group string // group is the database configuration group name of current DAO.
columns VisitorRecordColumns // columns contains all the column names of Table for convenient usage.
}
// VisitorRecordColumns defines and stores column names for table visitor_record.
type VisitorRecordColumns struct {
Id string // 自增id
VisitorName string // 访客姓名
VisitorIdentity string // 访客身份证号码
VisitorPhone string // 访客手机号
VisitorDepartment string // 来访单位
DstDepartment string // 拜访人部门
DstName string // 拜访人姓名
DstLocation string // 地址(楼宇和层数)
Reason string // 来访事由
VehicleNumber string // 车牌号码
Remark string // 备注
LeftAt string // 离场时间
VisitAt string // 拜访时间
CreatedAt string // 创建时间
UpdatedAt string // 更新时间
}
// visitorRecordColumns holds the columns for table visitor_record.
var visitorRecordColumns = VisitorRecordColumns{
Id: "id",
VisitorName: "visitor_name",
VisitorIdentity: "visitor_identity",
VisitorPhone: "visitor_phone",
VisitorDepartment: "visitor_department",
DstDepartment: "dst_department",
DstName: "dst_name",
DstLocation: "dst_location",
Reason: "reason",
VehicleNumber: "vehicle_number",
Remark: "remark",
LeftAt: "left_at",
VisitAt: "visit_at",
CreatedAt: "created_at",
UpdatedAt: "updated_at",
}
// NewVisitorRecordDao creates and returns a new DAO object for table data access.
func NewVisitorRecordDao() *VisitorRecordDao {
return &VisitorRecordDao{
group: "default",
table: "visitor_record",
columns: visitorRecordColumns,
}
}
// DB retrieves and returns the underlying raw database management object of current DAO.
func (dao *VisitorRecordDao) DB() gdb.DB {
return g.DB(dao.group)
}
// Table returns the table name of current dao.
func (dao *VisitorRecordDao) Table() string {
return dao.table
}
// Columns returns all column names of current dao.
func (dao *VisitorRecordDao) Columns() VisitorRecordColumns {
return dao.columns
}
// Group returns the configuration group name of database of current dao.
func (dao *VisitorRecordDao) Group() string {
return dao.group
}
// Ctx creates and returns the Model for current DAO, It automatically sets the context for current operation.
func (dao *VisitorRecordDao) Ctx(ctx context.Context) *gdb.Model {
return dao.DB().Model(dao.table).Safe().Ctx(ctx)
}
// Transaction wraps the transaction logic using function f.
// It rollbacks the transaction and returns the error from function f if it returns non-nil error.
// It commits the transaction and returns nil if function f returns nil.
//
// Note that, you should not Commit or Rollback the transaction in function f
// as it is automatically handled by this function.
func (dao *VisitorRecordDao) Transaction(ctx context.Context, f func(ctx context.Context, tx gdb.TX) error) (err error) {
return dao.Ctx(ctx).Transaction(ctx, f)
}

@ -0,0 +1,27 @@
// =================================================================================
// This is auto-generated by GoFrame CLI tool only once. Fill this file as you wish.
// =================================================================================
package dao
import (
"vistor/internal/dao/internal"
)
// internalVisitorRecordDao is internal type for wrapping internal DAO implements.
type internalVisitorRecordDao = *internal.VisitorRecordDao
// visitorRecordDao is the data access object for table visitor_record.
// You can define custom methods on it to extend its functionality as you wish.
type visitorRecordDao struct {
internalVisitorRecordDao
}
var (
// VisitorRecord is globally public accessible object for table visitor_record operations.
VisitorRecord = visitorRecordDao{
internal.NewVisitorRecordDao(),
}
)
// Fill with you ideas below.

@ -0,0 +1,57 @@
package libutil
import (
"net/http"
)
func ReturnCode(code int) (returnCode int) {
switch code {
case 0:
returnCode = http.StatusOK
case -1:
returnCode = http.StatusBadRequest
case -99:
returnCode = http.StatusUnauthorized
case -401:
returnCode = http.StatusUnauthorized
case 50:
returnCode = http.StatusInternalServerError
case 51:
returnCode = http.StatusUnprocessableEntity
case 52:
returnCode = http.StatusInternalServerError
case 53:
returnCode = http.StatusInternalServerError
case 54:
returnCode = http.StatusInternalServerError
case 55:
returnCode = http.StatusInternalServerError
case 56:
returnCode = http.StatusInternalServerError
case 57:
returnCode = http.StatusInternalServerError
case 58:
returnCode = http.StatusInternalServerError
case 59:
returnCode = http.StatusInternalServerError
case 60:
returnCode = http.StatusBadRequest
case 61:
returnCode = http.StatusUnauthorized
case 62:
returnCode = http.StatusMethodNotAllowed
case 63:
returnCode = http.StatusTooManyRequests
case 64:
returnCode = http.StatusInternalServerError
case 65:
returnCode = http.StatusNotFound
case 66:
returnCode = http.StatusMethodNotAllowed
case 300:
returnCode = http.StatusUnprocessableEntity
default:
returnCode = code
}
return
}

@ -0,0 +1,27 @@
package middleware
import (
"github.com/gogf/gf/v2/errors/gerror"
"github.com/gogf/gf/v2/frame/g"
"github.com/gogf/gf/v2/net/ghttp"
"github.com/gogf/gf/v2/os/gctx"
)
// ErrorHandler 全局处理获取异常错误
func ErrorHandler(r *ghttp.Request) {
r.Middleware.Next()
if err := r.GetError(); err != nil {
// 记录到自定义错误日志文件
g.Log().Error(gctx.New(), err)
//返回固定的友好信息
var (
code = gerror.Code(err)
)
r.Response.ClearBuffer()
r.Response.WriteJson(DefaultHandlerResponse{
Code: code.Code(),
Message: "The server went astray. Please try again later: " + err.Error(),
Data: nil,
})
}
}

@ -0,0 +1,85 @@
package middleware
import (
"github.com/gogf/gf/v2/errors/gcode"
"github.com/gogf/gf/v2/errors/gerror"
"github.com/gogf/gf/v2/net/ghttp"
"net/http"
"vistor/internal/libutil"
)
// DefaultHandlerResponse is the default implementation of HandlerResponse.
type DefaultHandlerResponse struct {
Code int `json:"code" dc:"Error code"`
Message string `json:"message" dc:"Error message"`
Data interface{} `json:"data" dc:"Result data for certain request according API definition"`
}
// HandlerResponse is the default middleware handling handler response object and its error.
func HandlerResponse(r *ghttp.Request) {
r.Middleware.Next()
// There's custom buffer content, it then exits current handler.
if r.Response.BufferLength() > 0 {
return
}
var (
msg string
err = r.GetError()
res = r.GetHandlerResponse()
code = gerror.Code(err)
)
if err != nil {
if err.Error() != "" {
msg = err.Error()
} else {
msg = http.StatusText(code.Code())
}
} else if r.Response.Status > 0 && r.Response.Status != http.StatusOK {
msg = http.StatusText(r.Response.Status)
switch r.Response.Status {
case http.StatusBadRequest:
code = StatusBadRequest
case http.StatusUnauthorized:
code = StatusUnauthorized
case http.StatusNotFound:
code = StatusNotFound
case http.StatusMethodNotAllowed:
code = StatusMethodNotAllowed
case http.StatusForbidden:
code = StatusForbidden
case http.StatusUnprocessableEntity:
code = StatusUnprocessableEntity
case http.StatusTooManyRequests:
code = StatusTooManyRequests
case http.StatusPaymentRequired:
code = StatusPaymentRequired
default:
code = StatusInternalServerError
}
} else {
code = StatusOK
msg = http.StatusText(code.Code())
}
r.Response.WriteJson(DefaultHandlerResponse{
Code: libutil.ReturnCode(code.Code()),
Message: msg,
Data: res,
})
}
var (
StatusOK = gcode.New(200, "OK", "")
StatusBadRequest = gcode.New(400, "Bad Request", "Bad Request")
StatusPaymentRequired = gcode.New(402, "Payment Required", "Payment Required")
StatusUnauthorized = gcode.New(401, "Unauthorized", "Unauthorized")
StatusForbidden = gcode.New(403, "Forbidden", "Forbidden")
StatusNotFound = gcode.New(404, "Not Found", "Resource does not exist")
StatusMethodNotAllowed = gcode.New(405, "Method Not Allowed", "Method Not Allowed")
StatusUnprocessableEntity = gcode.New(422, "Unprocessable Entity", "Data verification failure")
StatusTooManyRequests = gcode.New(429, "Too Many Requests", "Too Many Requests")
StatusInternalServerError = gcode.New(500, "Internal Server Error", "Internal Server Error")
)

@ -0,0 +1,30 @@
// =================================================================================
// Code generated by GoFrame CLI tool. DO NOT EDIT.
// =================================================================================
package do
import (
"github.com/gogf/gf/v2/frame/g"
"github.com/gogf/gf/v2/os/gtime"
)
// VisitorRecord is the golang structure of table visitor_record for DAO operations like Where/Data.
type VisitorRecord struct {
g.Meta `orm:"table:visitor_record, do:true"`
Id interface{} // 自增id
VisitorName interface{} // 访客姓名
VisitorIdentity interface{} // 访客身份证号码
VisitorPhone interface{} // 访客手机号
VisitorDepartment interface{} // 来访单位
DstDepartment interface{} // 拜访人部门
DstName interface{} // 拜访人姓名
DstLocation interface{} // 地址(楼宇和层数)
Reason interface{} // 来访事由
VehicleNumber interface{} // 车牌号码
Remark interface{} // 备注
LeftAt interface{} // 离场时间
VisitAt interface{} // 拜访时间
CreatedAt *gtime.Time // 创建时间
UpdatedAt *gtime.Time // 更新时间
}

@ -0,0 +1,28 @@
// =================================================================================
// Code generated by GoFrame CLI tool. DO NOT EDIT.
// =================================================================================
package entity
import (
"github.com/gogf/gf/v2/os/gtime"
)
// VisitorRecord is the golang structure for table visitor_record.
type VisitorRecord struct {
Id uint `json:"id" ` // 自增id
VisitorName string `json:"visitorName" ` // 访客姓名
VisitorIdentity string `json:"visitorIdentity" ` // 访客身份证号码
VisitorPhone string `json:"visitorPhone" ` // 访客手机号
VisitorDepartment string `json:"visitorDepartment" ` // 来访单位
DstDepartment string `json:"dstDepartment" ` // 拜访人部门
DstName string `json:"dstName" ` // 拜访人姓名
DstLocation string `json:"dstLocation" ` // 地址(楼宇和层数)
Reason string `json:"reason" ` // 来访事由
VehicleNumber string `json:"vehicleNumber" ` // 车牌号码
Remark string `json:"remark" ` // 备注
LeftAt int `json:"leftAt" ` // 离场时间
VisitAt int `json:"visitAt" ` // 拜访时间
CreatedAt *gtime.Time `json:"createdAt" ` // 创建时间
UpdatedAt *gtime.Time `json:"updatedAt" ` // 更新时间
}

@ -0,0 +1,6 @@
package model
type ResRecord struct {
XAxis string `json:"x_axis,omitempty"`
YAxis string `json:"y_axis,omitempty"`
}

@ -0,0 +1 @@
package packed

@ -0,0 +1,240 @@
package service
import (
"context"
"fmt"
"github.com/gogf/gf/v2/errors/gerror"
"github.com/gogf/gf/v2/frame/g"
"github.com/gogf/gf/v2/os/gtime"
"github.com/gogf/gf/v2/util/gconv"
"time"
v1 "vistor/api/v1"
"vistor/internal/consts"
"vistor/internal/dao"
"vistor/internal/model"
)
type visitorService struct{}
var Visitor = visitorService{}
//var statisticType = g.Map{
// "day":
//}
type IVisitor interface {
VisitorAccess(ctx context.Context, req *v1.VisitorAccessReq) error
VisitorStatistic(ctx context.Context, req *v1.VisitorAccessReq) (res *v1.VisitorAccessRes, err error)
}
func (s *visitorService) VisitorAccess(ctx context.Context, req *v1.VisitorAccessReq) error {
insert, err := dao.VisitorRecord.Ctx(ctx).Data(req).Insert()
affected, err := insert.RowsAffected()
if err != nil {
return err
}
if affected == 0 {
return gerror.Newf("提交失败,请重试")
}
return nil
}
func (s *visitorService) VisitorStatistic(ctx context.Context, req *v1.VisitorStatisticReq) (res *v1.VisitorStatisticRes, err error) {
var (
resRecords []*model.ResRecord
)
db := g.DB()
xAxis := g.SliceStr{}
yAxis := g.SliceStr{}
condition := g.Map{}
if req.VisitorName != "" {
condition["vr.visitor_name"] = req.VisitorName
}
if req.VisitorIdentity != "" {
condition["vr.visitor_identity"] = req.VisitorIdentity
}
if req.VisitorPhone != "" {
condition["vr.visitor_phone"] = req.VisitorPhone
}
if req.StatisticType == consts.StatisticTypeDay {
startDate := gconv.Int(gtime.New(req.EndDate).Format("Ymd"))
endDate := gconv.Int(gtime.New(req.StartDate).Format("Ymd"))
duration := startDate - endDate + 1
for i := 0; duration > i; i++ {
xAxis = append(xAxis, gtime.New(req.StartDate).AddDate(0, 0, i).Format("Y-m-d"))
}
fields := "id,visitor_name,visitor_identity,visitor_phone,visit_at,from_unixtime(visit_at,'%Y-%m-%d') visit_date"
subQuery := db.Model("visitor_record vr").
Where(condition).
WhereBetween("vr.visit_at", req.StartDate, req.EndDate).
Fields(fields)
mainQuery := db.Model("? as v", subQuery)
err = mainQuery.
Fields("count(v.id) y_axis, v.visit_date x_axis").
Group("x_axis").
Order("x_axis").
Scan(&resRecords)
if err != nil {
return nil, err
}
for _, x := range xAxis {
y := "0"
for _, record := range resRecords {
if record.XAxis == x {
y = record.YAxis
}
}
yAxis = append(yAxis, y)
}
} else {
var weekNum, monthNum, yearNum int
if req.StatisticType == consts.StatisticTypeWeek {
switch req.SubType {
case consts.SubTypeLastWeek:
weekNum = 1
case consts.SubTypeLast2Week:
weekNum = 2
case consts.SubTypeLast3Week:
weekNum = 3
}
//获取按周统计数据
xAxis, yAxis = s.getWeekStatistic(ctx, weekNum, condition)
} else if req.StatisticType == consts.StatisticTypeMonth {
switch req.SubType {
case consts.SubTypeLast3Month:
monthNum = 3
case consts.SubTypeLast6Month:
monthNum = 6
case consts.SubTypeLast9Month:
monthNum = 9
}
//获取按月统计数据
xAxis, yAxis = s.getMonthStatistic(ctx, monthNum, condition)
} else if req.StatisticType == consts.StatisticTypeYear {
switch req.SubType {
case consts.SubTypeLastYear:
yearNum = 1
case consts.SubTypeLast2Year:
yearNum = 2
case consts.SubTypeLast3Year:
yearNum = 3
}
//获取按年统计数据
xAxis, yAxis = s.getYearStatistic(ctx, yearNum, condition)
}
}
res = &v1.VisitorStatisticRes{
XAxis: xAxis,
YAxis: yAxis,
}
return
}
func (s *visitorService) getYearStatistic(ctx context.Context, lastYearNum int, condition g.Map) (xAxis g.SliceStr, yAxis g.SliceStr) {
for ; 1 <= lastYearNum; lastYearNum-- {
//获取当年第一天
yearStart := gtime.New(gtime.Now().AddDate(-(lastYearNum - 1), 0, 0).Format("Y-01-01 00:00:00")).Unix()
yearEnd := gtime.New(gtime.Now().AddDate(-(lastYearNum - 2), 0, 0).Format("Y-01-01 00:00:00")).Unix()
count, err := dao.VisitorRecord.Ctx(ctx).As("vr").Where(condition).WhereBetween(dao.VisitorRecord.Columns().VisitAt, yearStart, yearEnd).Count()
if err != nil {
return g.SliceStr{}, g.SliceStr{}
}
//获取统计数据
xAxis = append(xAxis, gtime.New(yearStart).Format("Y"))
yAxis = append(yAxis, gconv.String(count))
}
return
}
func (s *visitorService) getMonthStatistic(ctx context.Context, lastMonthNum int, condition g.Map) (xAxis g.SliceStr, yAxis g.SliceStr) {
for ; 1 <= lastMonthNum; lastMonthNum-- {
//获取当月第一天
monthStart := gtime.New(gtime.Now().AddDate(0, -(lastMonthNum - 1), 0).Format("Y-m-01 00:00:00")).Unix()
monthEnd := gtime.New(gtime.Now().AddDate(0, -(lastMonthNum - 2), 0).Format("Y-m-01 00:00:00")).Unix()
count, err := dao.VisitorRecord.Ctx(ctx).As("vr").Where(condition).WhereBetween(dao.VisitorRecord.Columns().VisitAt, monthStart, monthEnd).Count()
if err != nil {
return g.SliceStr{}, g.SliceStr{}
}
//获取统计数据
xAxis = append(xAxis, gtime.New(monthStart).Format("Y-m"))
yAxis = append(yAxis, gconv.String(count))
}
return
}
func (s *visitorService) getWeekStatistic(ctx context.Context, lastWeekNum int, condition g.Map) (xAxis g.SliceStr, yAxis g.SliceStr) {
for ; 1 <= lastWeekNum; lastWeekNum-- {
weekDate, startTimestamp := s.getLastWeekFirstDate(lastWeekNum)
endTimestamp := gtime.New(weekDate).AddDate(0, 0, 7).Unix()
count, err := dao.VisitorRecord.Ctx(ctx).As("vr").Where(condition).WhereBetween(dao.VisitorRecord.Columns().VisitAt, startTimestamp, endTimestamp).Count()
if err != nil {
return g.SliceStr{}, g.SliceStr{}
}
//获取第几周
_, weekNum := gtime.New(weekDate).ISOWeek()
xAxis = append(xAxis, fmt.Sprintf("第%d周", weekNum))
yAxis = append(yAxis, gconv.String(count))
}
return
}
/*
*
获取本周周一的日期
*/
func (s *visitorService) getFirstDateOfWeek() (weekMonday string, dateTimestamp int64) {
now := time.Now()
offset := int(time.Monday - now.Weekday())
if offset > 0 {
offset = -6
}
weekStartDate := time.Date(now.Year(), now.Month(), now.Day(), 0, 0, 0, 0, time.Local).AddDate(0, 0, offset)
weekMonday = weekStartDate.Format("2006-01-02")
dateTimestamp = gtime.New(weekMonday).Unix()
return
}
/*
*
获取本周周一的日期
*/
func (s *visitorService) getLastWeekFirstDate(weekNum int) (weekMonday string, dateTimestamp int64) {
thisWeekMonday, _ := s.getFirstDateOfWeek()
TimeMonday, _ := time.Parse("2006-01-02", thisWeekMonday)
lastWeekMonday := TimeMonday.AddDate(0, 0, -7*(weekNum-1))
weekMonday = lastWeekMonday.Format("2006-01-02")
dateTimestamp = gtime.New(weekMonday).Unix()
return
}

@ -0,0 +1,14 @@
package main
import (
_ "vistor/internal/packed"
_ "github.com/gogf/gf/contrib/drivers/mysql/v2"
"github.com/gogf/gf/v2/os/gctx"
"vistor/internal/cmd"
)
func main() {
cmd.Main.Run(gctx.New())
}

@ -0,0 +1,21 @@
apiVersion: apps/v1
kind: Deployment
metadata:
name: template-single
labels:
app: template-single
spec:
replicas: 1
selector:
matchLabels:
app: template-single
template:
metadata:
labels:
app: template-single
spec:
containers:
- name : main
image: template-single
imagePullPolicy: Always

@ -0,0 +1,8 @@
apiVersion: kustomize.config.k8s.io/v1beta1
kind: Kustomization
resources:
- deployment.yaml
- service.yaml

@ -0,0 +1,12 @@
apiVersion: v1
kind: Service
metadata:
name: template-single
spec:
ports:
- port: 80
protocol: TCP
targetPort: 8000
selector:
app: template-single

@ -0,0 +1,14 @@
apiVersion: v1
kind: ConfigMap
metadata:
name: template-single-configmap
data:
config.yaml: |
server:
address: ":8000"
openapiPath: "/api.json"
swaggerPath: "/swagger"
logger:
level : "all"
stdout: true

@ -0,0 +1,10 @@
apiVersion: apps/v1
kind: Deployment
metadata:
name: template-single
spec:
template:
spec:
containers:
- name : main
image: template-single:develop

@ -0,0 +1,14 @@
apiVersion: kustomize.config.k8s.io/v1beta1
kind: Kustomization
resources:
- ../../base
- configmap.yaml
patchesStrategicMerge:
- deployment.yaml
namespace: default

@ -0,0 +1,16 @@
FROM loads/alpine:3.8
###############################################################################
# INSTALLATION
###############################################################################
ENV WORKDIR /app
ADD resource $WORKDIR/
ADD ./temp/linux_amd64/main $WORKDIR/main
RUN chmod +x $WORKDIR/main
###############################################################################
# START
###############################################################################
WORKDIR $WORKDIR
CMD ./main

@ -0,0 +1,8 @@
#!/bin/bash
# This shell is executed before docker build.

@ -0,0 +1,405 @@
2023-11-16 15:48:26.767 [INFO] pid[7824]: http server started listening on [:8000]
2023-11-16 15:48:26.767 [INFO] {84a27bc4f20a9817035d0e34712a5308} swagger ui is serving at address: http://127.0.0.1:8000/swagger/
2023-11-16 15:48:26.768 [INFO] {84a27bc4f20a9817035d0e34712a5308} openapi specification is serving at address: http://127.0.0.1:8000/api.json
ADDRESS | METHOD | ROUTE | HANDLER | MIDDLEWARE
----------|--------|------------|-----------------------------------------------------------------|----------------------------------
:8000 | ALL | /* | github.com/gogf/gf/v2/net/ghttp.internalMiddlewareServerTracing | GLOBAL MIDDLEWARE
----------|--------|------------|-----------------------------------------------------------------|----------------------------------
:8000 | ALL | /api.json | github.com/gogf/gf/v2/net/ghttp.(*Server).openapiSpec |
----------|--------|------------|-----------------------------------------------------------------|----------------------------------
:8000 | GET | /hello | vistor/internal/controller.(*cHello).Hello | ghttp.MiddlewareHandlerResponse
----------|--------|------------|-----------------------------------------------------------------|----------------------------------
:8000 | ALL | /swagger/* | github.com/gogf/gf/v2/net/ghttp.(*Server).swaggerUI | HOOK_BEFORE_SERVE
----------|--------|------------|-----------------------------------------------------------------|----------------------------------
2023-11-16 15:56:27.939 [INFO] pid[16804]: http server started listening on [:8000]
2023-11-16 15:56:27.939 [INFO] {84a27bc4f20a9817035d0e34712a5308} swagger ui is serving at address: http://127.0.0.1:8000/swagger/
2023-11-16 15:56:27.940 [INFO] {84a27bc4f20a9817035d0e34712a5308} openapi specification is serving at address: http://127.0.0.1:8000/api.json
ADDRESS | METHOD | ROUTE | HANDLER | MIDDLEWARE
----------|--------|------------|-----------------------------------------------------------------|----------------------------------
:8000 | ALL | /* | github.com/gogf/gf/v2/net/ghttp.internalMiddlewareServerTracing | GLOBAL MIDDLEWARE
----------|--------|------------|-----------------------------------------------------------------|----------------------------------
:8000 | ALL | /api.json | github.com/gogf/gf/v2/net/ghttp.(*Server).openapiSpec |
----------|--------|------------|-----------------------------------------------------------------|----------------------------------
:8000 | GET | /hello | vistor/internal/controller.(*cHello).Hello | ghttp.MiddlewareHandlerResponse
----------|--------|------------|-----------------------------------------------------------------|----------------------------------
:8000 | ALL | /swagger/* | github.com/gogf/gf/v2/net/ghttp.(*Server).swaggerUI | HOOK_BEFORE_SERVE
----------|--------|------------|-----------------------------------------------------------------|----------------------------------
2023-11-16 16:01:11.672 [INFO] pid[21080]: http server started listening on [:8000]
2023-11-16 16:01:11.672 [INFO] {84a27bc4f20a9817035d0e34712a5308} swagger ui is serving at address: http://127.0.0.1:8000/swagger/
2023-11-16 16:01:11.672 [INFO] {84a27bc4f20a9817035d0e34712a5308} openapi specification is serving at address: http://127.0.0.1:8000/api.json
ADDRESS | METHOD | ROUTE | HANDLER | MIDDLEWARE
----------|--------|------------|-----------------------------------------------------------------|----------------------------------
:8000 | ALL | /* | github.com/gogf/gf/v2/net/ghttp.internalMiddlewareServerTracing | GLOBAL MIDDLEWARE
----------|--------|------------|-----------------------------------------------------------------|----------------------------------
:8000 | ALL | /api.json | github.com/gogf/gf/v2/net/ghttp.(*Server).openapiSpec |
----------|--------|------------|-----------------------------------------------------------------|----------------------------------
:8000 | GET | /hello | vistor/internal/controller.(*cHello).Hello | ghttp.MiddlewareHandlerResponse
----------|--------|------------|-----------------------------------------------------------------|----------------------------------
:8000 | ALL | /swagger/* | github.com/gogf/gf/v2/net/ghttp.(*Server).swaggerUI | HOOK_BEFORE_SERVE
----------|--------|------------|-----------------------------------------------------------------|----------------------------------
2023-11-16 16:19:44.712 [INFO] pid[18836]: http server started listening on [:8000]
2023-11-16 16:19:44.712 [INFO] {84a27bc4f20a9817035d0e34712a5308} swagger ui is serving at address: http://127.0.0.1:8000/swagger/
2023-11-16 16:19:44.713 [INFO] {84a27bc4f20a9817035d0e34712a5308} openapi specification is serving at address: http://127.0.0.1:8000/api.json
ADDRESS | METHOD | ROUTE | HANDLER | MIDDLEWARE
----------|--------|------------|-----------------------------------------------------------------|----------------------------------
:8000 | ALL | /* | github.com/gogf/gf/v2/net/ghttp.internalMiddlewareServerTracing | GLOBAL MIDDLEWARE
----------|--------|------------|-----------------------------------------------------------------|----------------------------------
:8000 | ALL | /api.json | github.com/gogf/gf/v2/net/ghttp.(*Server).openapiSpec |
----------|--------|------------|-----------------------------------------------------------------|----------------------------------
:8000 | GET | /hello | vistor/internal/controller.(*cHello).Hello | ghttp.MiddlewareHandlerResponse
----------|--------|------------|-----------------------------------------------------------------|----------------------------------
:8000 | ALL | /swagger/* | github.com/gogf/gf/v2/net/ghttp.(*Server).swaggerUI | HOOK_BEFORE_SERVE
----------|--------|------------|-----------------------------------------------------------------|----------------------------------
2023-11-16 16:29:47.354 [INFO] pid[16676]: http server started listening on [:8000]
2023-11-16 16:29:47.354 [INFO] {84a27bc4f20a9817035d0e34712a5308} swagger ui is serving at address: http://127.0.0.1:8000/swagger/
2023-11-16 16:29:47.355 [INFO] {84a27bc4f20a9817035d0e34712a5308} openapi specification is serving at address: http://127.0.0.1:8000/api.json
ADDRESS | METHOD | ROUTE | HANDLER | MIDDLEWARE
----------|--------|------------|-----------------------------------------------------------------|----------------------------------
:8000 | ALL | /* | github.com/gogf/gf/v2/net/ghttp.internalMiddlewareServerTracing | GLOBAL MIDDLEWARE
----------|--------|------------|-----------------------------------------------------------------|----------------------------------
:8000 | ALL | /api.json | github.com/gogf/gf/v2/net/ghttp.(*Server).openapiSpec |
----------|--------|------------|-----------------------------------------------------------------|----------------------------------
:8000 | GET | /hello | vistor/internal/controller.(*cHello).Hello | ghttp.MiddlewareHandlerResponse
----------|--------|------------|-----------------------------------------------------------------|----------------------------------
:8000 | ALL | /swagger/* | github.com/gogf/gf/v2/net/ghttp.(*Server).swaggerUI | HOOK_BEFORE_SERVE
----------|--------|------------|-----------------------------------------------------------------|----------------------------------
2023-11-16 16:31:12.176 [INFO] pid[23736]: http server started listening on [:8000]
2023-11-16 16:31:12.176 [INFO] {84a27bc4f20a9817035d0e34712a5308} swagger ui is serving at address: http://127.0.0.1:8000/swagger/
2023-11-16 16:31:12.176 [INFO] {84a27bc4f20a9817035d0e34712a5308} openapi specification is serving at address: http://127.0.0.1:8000/api.json
ADDRESS | METHOD | ROUTE | HANDLER | MIDDLEWARE
----------|--------|------------|-----------------------------------------------------------------|----------------------------------
:8000 | ALL | /* | github.com/gogf/gf/v2/net/ghttp.internalMiddlewareServerTracing | GLOBAL MIDDLEWARE
----------|--------|------------|-----------------------------------------------------------------|----------------------------------
:8000 | ALL | /api.json | github.com/gogf/gf/v2/net/ghttp.(*Server).openapiSpec |
----------|--------|------------|-----------------------------------------------------------------|----------------------------------
:8000 | GET | /hello | vistor/internal/controller.(*cHello).Hello | ghttp.MiddlewareHandlerResponse
----------|--------|------------|-----------------------------------------------------------------|----------------------------------
:8000 | ALL | /swagger/* | github.com/gogf/gf/v2/net/ghttp.(*Server).swaggerUI | HOOK_BEFORE_SERVE
----------|--------|------------|-----------------------------------------------------------------|----------------------------------
2023-11-16 16:31:41.694 [INFO] pid[19712]: http server started listening on [:8000]
2023-11-16 16:31:41.694 [INFO] {84a27bc4f20a9817035d0e34712a5308} swagger ui is serving at address: http://127.0.0.1:8000/swagger/
2023-11-16 16:31:41.694 [INFO] {84a27bc4f20a9817035d0e34712a5308} openapi specification is serving at address: http://127.0.0.1:8000/api.json
ADDRESS | METHOD | ROUTE | HANDLER | MIDDLEWARE
----------|--------|------------|-----------------------------------------------------------------|----------------------------------
:8000 | ALL | /* | github.com/gogf/gf/v2/net/ghttp.internalMiddlewareServerTracing | GLOBAL MIDDLEWARE
----------|--------|------------|-----------------------------------------------------------------|----------------------------------
:8000 | ALL | /api.json | github.com/gogf/gf/v2/net/ghttp.(*Server).openapiSpec |
----------|--------|------------|-----------------------------------------------------------------|----------------------------------
:8000 | GET | /hello | vistor/internal/controller.(*cHello).Hello | ghttp.MiddlewareHandlerResponse
----------|--------|------------|-----------------------------------------------------------------|----------------------------------
:8000 | ALL | /swagger/* | github.com/gogf/gf/v2/net/ghttp.(*Server).swaggerUI | HOOK_BEFORE_SERVE
----------|--------|------------|-----------------------------------------------------------------|----------------------------------
2023-11-16 16:32:08.878 [INFO] pid[24316]: http server started listening on [:8000]
2023-11-16 16:32:08.878 [INFO] {84a27bc4f20a9817035d0e34712a5308} swagger ui is serving at address: http://127.0.0.1:8000/swagger/
2023-11-16 16:32:08.878 [INFO] {84a27bc4f20a9817035d0e34712a5308} openapi specification is serving at address: http://127.0.0.1:8000/api.json
ADDRESS | METHOD | ROUTE | HANDLER | MIDDLEWARE
----------|--------|------------|-----------------------------------------------------------------|----------------------------------
:8000 | ALL | /* | github.com/gogf/gf/v2/net/ghttp.internalMiddlewareServerTracing | GLOBAL MIDDLEWARE
----------|--------|------------|-----------------------------------------------------------------|----------------------------------
:8000 | ALL | /api.json | github.com/gogf/gf/v2/net/ghttp.(*Server).openapiSpec |
----------|--------|------------|-----------------------------------------------------------------|----------------------------------
:8000 | GET | /hello | vistor/internal/controller.(*cHello).Hello | ghttp.MiddlewareHandlerResponse
----------|--------|------------|-----------------------------------------------------------------|----------------------------------
:8000 | ALL | /swagger/* | github.com/gogf/gf/v2/net/ghttp.(*Server).swaggerUI | HOOK_BEFORE_SERVE
----------|--------|------------|-----------------------------------------------------------------|----------------------------------
2023-11-16 16:32:26.039 [INFO] pid[24060]: http server started listening on [:8000]
2023-11-16 16:32:26.039 [INFO] {84a27bc4f20a9817035d0e34712a5308} swagger ui is serving at address: http://127.0.0.1:8000/swagger/
2023-11-16 16:32:26.040 [INFO] {84a27bc4f20a9817035d0e34712a5308} openapi specification is serving at address: http://127.0.0.1:8000/api.json
ADDRESS | METHOD | ROUTE | HANDLER | MIDDLEWARE
----------|--------|------------|-----------------------------------------------------------------|----------------------------------
:8000 | ALL | /* | github.com/gogf/gf/v2/net/ghttp.internalMiddlewareServerTracing | GLOBAL MIDDLEWARE
----------|--------|------------|-----------------------------------------------------------------|----------------------------------
:8000 | ALL | /api.json | github.com/gogf/gf/v2/net/ghttp.(*Server).openapiSpec |
----------|--------|------------|-----------------------------------------------------------------|----------------------------------
:8000 | GET | /hello | vistor/internal/controller.(*cHello).Hello | ghttp.MiddlewareHandlerResponse
----------|--------|------------|-----------------------------------------------------------------|----------------------------------
:8000 | ALL | /swagger/* | github.com/gogf/gf/v2/net/ghttp.(*Server).swaggerUI | HOOK_BEFORE_SERVE
----------|--------|------------|-----------------------------------------------------------------|----------------------------------
2023-11-16 16:34:54.299 [INFO] pid[23168]: http server started listening on [:8000]
2023-11-16 16:34:54.299 [INFO] {84a27bc4f20a9817035d0e34712a5308} swagger ui is serving at address: http://127.0.0.1:8000/swagger/
2023-11-16 16:34:54.299 [INFO] {84a27bc4f20a9817035d0e34712a5308} openapi specification is serving at address: http://127.0.0.1:8000/api.json
ADDRESS | METHOD | ROUTE | HANDLER | MIDDLEWARE
----------|--------|------------|-----------------------------------------------------------------|----------------------------------
:8000 | ALL | /* | github.com/gogf/gf/v2/net/ghttp.internalMiddlewareServerTracing | GLOBAL MIDDLEWARE
----------|--------|------------|-----------------------------------------------------------------|----------------------------------
:8000 | ALL | /api.json | github.com/gogf/gf/v2/net/ghttp.(*Server).openapiSpec |
----------|--------|------------|-----------------------------------------------------------------|----------------------------------
:8000 | GET | /hello | vistor/internal/controller.(*cHello).Hello | ghttp.MiddlewareHandlerResponse
----------|--------|------------|-----------------------------------------------------------------|----------------------------------
:8000 | ALL | /swagger/* | github.com/gogf/gf/v2/net/ghttp.(*Server).swaggerUI | HOOK_BEFORE_SERVE
----------|--------|------------|-----------------------------------------------------------------|----------------------------------
2023-11-16 16:38:04.251 [INFO] pid[23980]: http server started listening on [:8000]
2023-11-16 16:38:04.251 [INFO] {84a27bc4f20a9817035d0e34712a5308} swagger ui is serving at address: http://127.0.0.1:8000/swagger/
2023-11-16 16:38:04.251 [INFO] {84a27bc4f20a9817035d0e34712a5308} openapi specification is serving at address: http://127.0.0.1:8000/api.json
ADDRESS | METHOD | ROUTE | HANDLER | MIDDLEWARE
----------|--------|------------|-----------------------------------------------------------------|----------------------------------
:8000 | ALL | /* | github.com/gogf/gf/v2/net/ghttp.internalMiddlewareServerTracing | GLOBAL MIDDLEWARE
----------|--------|------------|-----------------------------------------------------------------|----------------------------------
:8000 | ALL | /api.json | github.com/gogf/gf/v2/net/ghttp.(*Server).openapiSpec |
----------|--------|------------|-----------------------------------------------------------------|----------------------------------
:8000 | GET | /hello | vistor/internal/controller.(*cHello).Hello | ghttp.MiddlewareHandlerResponse
----------|--------|------------|-----------------------------------------------------------------|----------------------------------
:8000 | ALL | /swagger/* | github.com/gogf/gf/v2/net/ghttp.(*Server).swaggerUI | HOOK_BEFORE_SERVE
----------|--------|------------|-----------------------------------------------------------------|----------------------------------
2023-11-16 16:38:19.046 [INFO] pid[24052]: http server started listening on [:8000]
2023-11-16 16:38:19.046 [INFO] {84a27bc4f20a9817035d0e34712a5308} swagger ui is serving at address: http://127.0.0.1:8000/swagger/
2023-11-16 16:38:19.046 [INFO] {84a27bc4f20a9817035d0e34712a5308} openapi specification is serving at address: http://127.0.0.1:8000/api.json
ADDRESS | METHOD | ROUTE | HANDLER | MIDDLEWARE
----------|--------|------------|-----------------------------------------------------------------|----------------------------------
:8000 | ALL | /* | github.com/gogf/gf/v2/net/ghttp.internalMiddlewareServerTracing | GLOBAL MIDDLEWARE
----------|--------|------------|-----------------------------------------------------------------|----------------------------------
:8000 | ALL | /api.json | github.com/gogf/gf/v2/net/ghttp.(*Server).openapiSpec |
----------|--------|------------|-----------------------------------------------------------------|----------------------------------
:8000 | GET | /hello | vistor/internal/controller.(*cHello).Hello | ghttp.MiddlewareHandlerResponse
----------|--------|------------|-----------------------------------------------------------------|----------------------------------
:8000 | ALL | /swagger/* | github.com/gogf/gf/v2/net/ghttp.(*Server).swaggerUI | HOOK_BEFORE_SERVE
----------|--------|------------|-----------------------------------------------------------------|----------------------------------
2023-11-16 16:39:23.335 [INFO] pid[23196]: http server started listening on [:8000]
2023-11-16 16:39:23.335 [INFO] {84a27bc4f20a9817035d0e34712a5308} swagger ui is serving at address: http://127.0.0.1:8000/swagger/
2023-11-16 16:39:23.335 [INFO] {84a27bc4f20a9817035d0e34712a5308} openapi specification is serving at address: http://127.0.0.1:8000/api.json
ADDRESS | METHOD | ROUTE | HANDLER | MIDDLEWARE
----------|--------|------------|-----------------------------------------------------------------|----------------------------------
:8000 | ALL | /* | github.com/gogf/gf/v2/net/ghttp.internalMiddlewareServerTracing | GLOBAL MIDDLEWARE
----------|--------|------------|-----------------------------------------------------------------|----------------------------------
:8000 | ALL | /api.json | github.com/gogf/gf/v2/net/ghttp.(*Server).openapiSpec |
----------|--------|------------|-----------------------------------------------------------------|----------------------------------
:8000 | GET | /hello | vistor/internal/controller.(*cHello).Hello | ghttp.MiddlewareHandlerResponse
----------|--------|------------|-----------------------------------------------------------------|----------------------------------
:8000 | ALL | /swagger/* | github.com/gogf/gf/v2/net/ghttp.(*Server).swaggerUI | HOOK_BEFORE_SERVE
----------|--------|------------|-----------------------------------------------------------------|----------------------------------
2023-11-16 16:39:57.577 [INFO] pid[21788]: http server started listening on [:8000]
2023-11-16 16:39:57.577 [INFO] {84a27bc4f20a9817035d0e34712a5308} swagger ui is serving at address: http://127.0.0.1:8000/swagger/
2023-11-16 16:39:57.577 [INFO] {84a27bc4f20a9817035d0e34712a5308} openapi specification is serving at address: http://127.0.0.1:8000/api.json
ADDRESS | METHOD | ROUTE | HANDLER | MIDDLEWARE
----------|--------|-----------------|-----------------------------------------------------------------|----------------------------------
:8000 | ALL | /* | github.com/gogf/gf/v2/net/ghttp.internalMiddlewareServerTracing | GLOBAL MIDDLEWARE
----------|--------|-----------------|-----------------------------------------------------------------|----------------------------------
:8000 | ALL | /api.json | github.com/gogf/gf/v2/net/ghttp.(*Server).openapiSpec |
----------|--------|-----------------|-----------------------------------------------------------------|----------------------------------
:8000 | ALL | /swagger/* | github.com/gogf/gf/v2/net/ghttp.(*Server).swaggerUI | HOOK_BEFORE_SERVE
----------|--------|-----------------|-----------------------------------------------------------------|----------------------------------
:8000 | POST | /visitor_access | vistor/internal/controller.(*cVisitor).VisitorAccess | ghttp.MiddlewareHandlerResponse
----------|--------|-----------------|-----------------------------------------------------------------|----------------------------------
2023-11-16 16:42:19.939 [INFO] pid[22784]: http server started listening on [:8000]
2023-11-16 16:42:19.939 [INFO] {84a27bc4f20a9817035d0e34712a5308} swagger ui is serving at address: http://127.0.0.1:8000/swagger/
2023-11-16 16:42:19.940 [INFO] {84a27bc4f20a9817035d0e34712a5308} openapi specification is serving at address: http://127.0.0.1:8000/api.json
ADDRESS | METHOD | ROUTE | HANDLER | MIDDLEWARE
----------|--------|-----------------|-----------------------------------------------------------------|----------------------------------
:8000 | ALL | /* | github.com/gogf/gf/v2/net/ghttp.internalMiddlewareServerTracing | GLOBAL MIDDLEWARE
----------|--------|-----------------|-----------------------------------------------------------------|----------------------------------
:8000 | ALL | /api.json | github.com/gogf/gf/v2/net/ghttp.(*Server).openapiSpec |
----------|--------|-----------------|-----------------------------------------------------------------|----------------------------------
:8000 | ALL | /swagger/* | github.com/gogf/gf/v2/net/ghttp.(*Server).swaggerUI | HOOK_BEFORE_SERVE
----------|--------|-----------------|-----------------------------------------------------------------|----------------------------------
:8000 | POST | /visitor_access | vistor/internal/controller.(*cVisitor).VisitorAccess | ghttp.MiddlewareHandlerResponse
----------|--------|-----------------|-----------------------------------------------------------------|----------------------------------
2023-11-16 16:44:52.817 [INFO] pid[16120]: http server started listening on [:8000]
2023-11-16 16:44:52.817 [INFO] {84a27bc4f20a9817035d0e34712a5308} swagger ui is serving at address: http://127.0.0.1:8000/swagger/
2023-11-16 16:44:52.817 [INFO] {84a27bc4f20a9817035d0e34712a5308} openapi specification is serving at address: http://127.0.0.1:8000/api.json
ADDRESS | METHOD | ROUTE | HANDLER | MIDDLEWARE
----------|--------|-----------------|-----------------------------------------------------------------|----------------------------------
:8000 | ALL | /* | github.com/gogf/gf/v2/net/ghttp.internalMiddlewareServerTracing | GLOBAL MIDDLEWARE
----------|--------|-----------------|-----------------------------------------------------------------|----------------------------------
:8000 | ALL | /api.json | github.com/gogf/gf/v2/net/ghttp.(*Server).openapiSpec |
----------|--------|-----------------|-----------------------------------------------------------------|----------------------------------
:8000 | ALL | /swagger/* | github.com/gogf/gf/v2/net/ghttp.(*Server).swaggerUI | HOOK_BEFORE_SERVE
----------|--------|-----------------|-----------------------------------------------------------------|----------------------------------
:8000 | POST | /visitor_access | vistor/internal/controller.(*cVisitor).VisitorAccess | ghttp.MiddlewareHandlerResponse
----------|--------|-----------------|-----------------------------------------------------------------|----------------------------------
2023-11-16 16:53:11.373 [INFO] pid[22012]: http server started listening on [:8000]
2023-11-16 16:53:11.373 [INFO] {84a27bc4f20a9817035d0e34712a5308} swagger ui is serving at address: http://127.0.0.1:8000/swagger/
2023-11-16 16:53:11.373 [INFO] {84a27bc4f20a9817035d0e34712a5308} openapi specification is serving at address: http://127.0.0.1:8000/api.json
ADDRESS | METHOD | ROUTE | HANDLER | MIDDLEWARE
----------|--------|-----------------|-----------------------------------------------------------------|----------------------------------
:8000 | ALL | /* | github.com/gogf/gf/v2/net/ghttp.internalMiddlewareServerTracing | GLOBAL MIDDLEWARE
----------|--------|-----------------|-----------------------------------------------------------------|----------------------------------
:8000 | ALL | /api.json | github.com/gogf/gf/v2/net/ghttp.(*Server).openapiSpec |
----------|--------|-----------------|-----------------------------------------------------------------|----------------------------------
:8000 | ALL | /swagger/* | github.com/gogf/gf/v2/net/ghttp.(*Server).swaggerUI | HOOK_BEFORE_SERVE
----------|--------|-----------------|-----------------------------------------------------------------|----------------------------------
:8000 | POST | /visitor_access | vistor/internal/controller.(*cVisitor).VisitorAccess | ghttp.MiddlewareHandlerResponse
----------|--------|-----------------|-----------------------------------------------------------------|----------------------------------
2023-11-16 17:18:48.324 [INFO] pid[16932]: http server started listening on [:8000]
2023-11-16 17:18:48.324 [INFO] {84a27bc4f20a9817035d0e34712a5308} swagger ui is serving at address: http://127.0.0.1:8000/swagger/
2023-11-16 17:18:48.325 [INFO] {84a27bc4f20a9817035d0e34712a5308} openapi specification is serving at address: http://127.0.0.1:8000/api.json
ADDRESS | METHOD | ROUTE | HANDLER | MIDDLEWARE
----------|--------|-----------------|-----------------------------------------------------------------|----------------------------------
:8000 | ALL | /* | github.com/gogf/gf/v2/net/ghttp.internalMiddlewareServerTracing | GLOBAL MIDDLEWARE
----------|--------|-----------------|-----------------------------------------------------------------|----------------------------------
:8000 | ALL | /api.json | github.com/gogf/gf/v2/net/ghttp.(*Server).openapiSpec |
----------|--------|-----------------|-----------------------------------------------------------------|----------------------------------
:8000 | ALL | /swagger/* | github.com/gogf/gf/v2/net/ghttp.(*Server).swaggerUI | HOOK_BEFORE_SERVE
----------|--------|-----------------|-----------------------------------------------------------------|----------------------------------
:8000 | POST | /visitor_access | vistor/internal/controller.(*cVisitor).VisitorAccess | ghttp.MiddlewareHandlerResponse
----------|--------|-----------------|-----------------------------------------------------------------|----------------------------------
2023-11-16 17:27:27.012 [INFO] pid[17396]: http server started listening on [:8000]
2023-11-16 17:27:27.012 [INFO] {84a27bc4f20a9817035d0e34712a5308} swagger ui is serving at address: http://127.0.0.1:8000/swagger/
2023-11-16 17:27:27.013 [INFO] {84a27bc4f20a9817035d0e34712a5308} openapi specification is serving at address: http://127.0.0.1:8000/api.json
ADDRESS | METHOD | ROUTE | HANDLER | MIDDLEWARE
----------|--------|-----------------|-----------------------------------------------------------------|----------------------------------
:8000 | ALL | /* | github.com/gogf/gf/v2/net/ghttp.internalMiddlewareServerTracing | GLOBAL MIDDLEWARE
----------|--------|-----------------|-----------------------------------------------------------------|----------------------------------
:8000 | ALL | /api.json | github.com/gogf/gf/v2/net/ghttp.(*Server).openapiSpec |
----------|--------|-----------------|-----------------------------------------------------------------|----------------------------------
:8000 | ALL | /swagger/* | github.com/gogf/gf/v2/net/ghttp.(*Server).swaggerUI | HOOK_BEFORE_SERVE
----------|--------|-----------------|-----------------------------------------------------------------|----------------------------------
:8000 | POST | /visitor_access | vistor/internal/controller.(*cVisitor).VisitorAccess | ghttp.MiddlewareHandlerResponse
----------|--------|-----------------|-----------------------------------------------------------------|----------------------------------
2023-11-16 17:27:48.509 [INFO] pid[5688]: http server started listening on [:8000]
2023-11-16 17:27:48.509 [INFO] {84a27bc4f20a9817035d0e34712a5308} swagger ui is serving at address: http://127.0.0.1:8000/swagger/
2023-11-16 17:27:48.509 [INFO] {84a27bc4f20a9817035d0e34712a5308} openapi specification is serving at address: http://127.0.0.1:8000/api.json
ADDRESS | METHOD | ROUTE | HANDLER | MIDDLEWARE
----------|--------|-----------------|-----------------------------------------------------------------|----------------------------------
:8000 | ALL | /* | github.com/gogf/gf/v2/net/ghttp.internalMiddlewareServerTracing | GLOBAL MIDDLEWARE
----------|--------|-----------------|-----------------------------------------------------------------|----------------------------------
:8000 | ALL | /api.json | github.com/gogf/gf/v2/net/ghttp.(*Server).openapiSpec |
----------|--------|-----------------|-----------------------------------------------------------------|----------------------------------
:8000 | ALL | /swagger/* | github.com/gogf/gf/v2/net/ghttp.(*Server).swaggerUI | HOOK_BEFORE_SERVE
----------|--------|-----------------|-----------------------------------------------------------------|----------------------------------
:8000 | POST | /visitor_access | vistor/internal/controller.(*cVisitor).VisitorAccess | ghttp.MiddlewareHandlerResponse
----------|--------|-----------------|-----------------------------------------------------------------|----------------------------------
2023-11-16 18:54:52.851 [INFO] pid[23996]: http server started listening on [:8000]
2023-11-16 18:54:52.851 [INFO] {84a27bc4f20a9817035d0e34712a5308} swagger ui is serving at address: http://127.0.0.1:8000/swagger/
2023-11-16 18:54:52.852 [INFO] {84a27bc4f20a9817035d0e34712a5308} openapi specification is serving at address: http://127.0.0.1:8000/api.json
ADDRESS | METHOD | ROUTE | HANDLER | MIDDLEWARE
----------|--------|-----------------|-----------------------------------------------------------------|----------------------------------
:8000 | ALL | /* | github.com/gogf/gf/v2/net/ghttp.internalMiddlewareServerTracing | GLOBAL MIDDLEWARE
----------|--------|-----------------|-----------------------------------------------------------------|----------------------------------
:8000 | ALL | /api.json | github.com/gogf/gf/v2/net/ghttp.(*Server).openapiSpec |
----------|--------|-----------------|-----------------------------------------------------------------|----------------------------------
:8000 | ALL | /swagger/* | github.com/gogf/gf/v2/net/ghttp.(*Server).swaggerUI | HOOK_BEFORE_SERVE
----------|--------|-----------------|-----------------------------------------------------------------|----------------------------------
:8000 | POST | /visitor_access | vistor/internal/controller.(*cVisitor).VisitorAccess | ghttp.MiddlewareHandlerResponse
----------|--------|-----------------|-----------------------------------------------------------------|----------------------------------
2023-11-16 18:55:41.474 [INFO] pid[19720]: http server started listening on [:8000]
2023-11-16 18:55:41.474 [INFO] {84a27bc4f20a9817035d0e34712a5308} swagger ui is serving at address: http://127.0.0.1:8000/swagger/
2023-11-16 18:55:41.475 [INFO] {84a27bc4f20a9817035d0e34712a5308} openapi specification is serving at address: http://127.0.0.1:8000/api.json
ADDRESS | METHOD | ROUTE | HANDLER | MIDDLEWARE
----------|--------|-----------------|-----------------------------------------------------------------|----------------------------------
:8000 | ALL | /* | github.com/gogf/gf/v2/net/ghttp.internalMiddlewareServerTracing | GLOBAL MIDDLEWARE
----------|--------|-----------------|-----------------------------------------------------------------|----------------------------------
:8000 | ALL | /api.json | github.com/gogf/gf/v2/net/ghttp.(*Server).openapiSpec |
----------|--------|-----------------|-----------------------------------------------------------------|----------------------------------
:8000 | ALL | /swagger/* | github.com/gogf/gf/v2/net/ghttp.(*Server).swaggerUI | HOOK_BEFORE_SERVE
----------|--------|-----------------|-----------------------------------------------------------------|----------------------------------
:8000 | POST | /visitor_access | vistor/internal/controller.(*cVisitor).VisitorAccess | ghttp.MiddlewareHandlerResponse
----------|--------|-----------------|-----------------------------------------------------------------|----------------------------------
2023-11-16 18:57:14.759 [INFO] pid[24996]: http server started listening on [:8000]
2023-11-16 18:57:14.759 [INFO] {84a27bc4f20a9817035d0e34712a5308} swagger ui is serving at address: http://127.0.0.1:8000/swagger/
2023-11-16 18:57:14.760 [INFO] {84a27bc4f20a9817035d0e34712a5308} openapi specification is serving at address: http://127.0.0.1:8000/api.json
ADDRESS | METHOD | ROUTE | HANDLER | MIDDLEWARE
----------|--------|-----------------|-----------------------------------------------------------------|----------------------------------
:8000 | ALL | /* | github.com/gogf/gf/v2/net/ghttp.internalMiddlewareServerTracing | GLOBAL MIDDLEWARE
----------|--------|-----------------|-----------------------------------------------------------------|----------------------------------
:8000 | ALL | /api.json | github.com/gogf/gf/v2/net/ghttp.(*Server).openapiSpec |
----------|--------|-----------------|-----------------------------------------------------------------|----------------------------------
:8000 | ALL | /swagger/* | github.com/gogf/gf/v2/net/ghttp.(*Server).swaggerUI | HOOK_BEFORE_SERVE
----------|--------|-----------------|-----------------------------------------------------------------|----------------------------------
:8000 | POST | /visitor_access | vistor/internal/controller.(*cVisitor).VisitorAccess | ghttp.MiddlewareHandlerResponse
----------|--------|-----------------|-----------------------------------------------------------------|----------------------------------
2023-11-16 19:01:08.518 [INFO] pid[16756]: http server started listening on [:8000]
2023-11-16 19:01:08.518 [INFO] {84a27bc4f20a9817035d0e34712a5308} swagger ui is serving at address: http://127.0.0.1:8000/swagger/
2023-11-16 19:01:08.519 [INFO] {84a27bc4f20a9817035d0e34712a5308} openapi specification is serving at address: http://127.0.0.1:8000/api.json
ADDRESS | METHOD | ROUTE | HANDLER | MIDDLEWARE
----------|--------|-----------------|-----------------------------------------------------------------|----------------------------------
:8000 | ALL | /* | github.com/gogf/gf/v2/net/ghttp.internalMiddlewareServerTracing | GLOBAL MIDDLEWARE
----------|--------|-----------------|-----------------------------------------------------------------|----------------------------------
:8000 | ALL | /api.json | github.com/gogf/gf/v2/net/ghttp.(*Server).openapiSpec |
----------|--------|-----------------|-----------------------------------------------------------------|----------------------------------
:8000 | ALL | /swagger/* | github.com/gogf/gf/v2/net/ghttp.(*Server).swaggerUI | HOOK_BEFORE_SERVE
----------|--------|-----------------|-----------------------------------------------------------------|----------------------------------
:8000 | POST | /visitor_access | vistor/internal/controller.(*cVisitor).VisitorAccess | ghttp.MiddlewareHandlerResponse
----------|--------|-----------------|-----------------------------------------------------------------|----------------------------------
2023-11-16 19:06:00.682 [INFO] pid[25264]: http server started listening on [:8000]
2023-11-16 19:06:00.682 [INFO] {84a27bc4f20a9817035d0e34712a5308} swagger ui is serving at address: http://127.0.0.1:8000/swagger/
2023-11-16 19:06:00.682 [INFO] {84a27bc4f20a9817035d0e34712a5308} openapi specification is serving at address: http://127.0.0.1:8000/api.json
ADDRESS | METHOD | ROUTE | HANDLER | MIDDLEWARE
----------|--------|-----------------|-----------------------------------------------------------------|----------------------------------
:8000 | ALL | /* | github.com/gogf/gf/v2/net/ghttp.internalMiddlewareServerTracing | GLOBAL MIDDLEWARE
----------|--------|-----------------|-----------------------------------------------------------------|----------------------------------
:8000 | ALL | /api.json | github.com/gogf/gf/v2/net/ghttp.(*Server).openapiSpec |
----------|--------|-----------------|-----------------------------------------------------------------|----------------------------------
:8000 | ALL | /swagger/* | github.com/gogf/gf/v2/net/ghttp.(*Server).swaggerUI | HOOK_BEFORE_SERVE
----------|--------|-----------------|-----------------------------------------------------------------|----------------------------------
:8000 | POST | /visitor_access | vistor/internal/controller.(*cVisitor).VisitorAccess | ghttp.MiddlewareHandlerResponse
----------|--------|-----------------|-----------------------------------------------------------------|----------------------------------
2023-11-16 19:10:14.201 [INFO] {84a27bc4f20a9817035d0e34712a5308} swagger ui is serving at address: http://127.0.0.1:8000/swagger/
2023-11-16 19:10:14.201 [INFO] pid[22684]: http server started listening on [:8000]
2023-11-16 19:10:14.202 [INFO] {84a27bc4f20a9817035d0e34712a5308} openapi specification is serving at address: http://127.0.0.1:8000/api.json
ADDRESS | METHOD | ROUTE | HANDLER | MIDDLEWARE
----------|--------|-----------------|-----------------------------------------------------------------|----------------------------------
:8000 | ALL | /* | github.com/gogf/gf/v2/net/ghttp.internalMiddlewareServerTracing | GLOBAL MIDDLEWARE
----------|--------|-----------------|-----------------------------------------------------------------|----------------------------------
:8000 | ALL | /api.json | github.com/gogf/gf/v2/net/ghttp.(*Server).openapiSpec |
----------|--------|-----------------|-----------------------------------------------------------------|----------------------------------
:8000 | ALL | /swagger/* | github.com/gogf/gf/v2/net/ghttp.(*Server).swaggerUI | HOOK_BEFORE_SERVE
----------|--------|-----------------|-----------------------------------------------------------------|----------------------------------
:8000 | POST | /visitor_access | vistor/internal/controller.(*cVisitor).VisitorAccess | ghttp.MiddlewareHandlerResponse
----------|--------|-----------------|-----------------------------------------------------------------|----------------------------------
2023-11-16 19:10:31.643 [INFO] pid[21488]: http server started listening on [:8000]
2023-11-16 19:10:31.643 [INFO] {84a27bc4f20a9817035d0e34712a5308} swagger ui is serving at address: http://127.0.0.1:8000/swagger/
2023-11-16 19:10:31.644 [INFO] {84a27bc4f20a9817035d0e34712a5308} openapi specification is serving at address: http://127.0.0.1:8000/api.json
ADDRESS | METHOD | ROUTE | HANDLER | MIDDLEWARE
----------|--------|-----------------|-----------------------------------------------------------------|----------------------------------
:8000 | ALL | /* | github.com/gogf/gf/v2/net/ghttp.internalMiddlewareServerTracing | GLOBAL MIDDLEWARE
----------|--------|-----------------|-----------------------------------------------------------------|----------------------------------
:8000 | ALL | /api.json | github.com/gogf/gf/v2/net/ghttp.(*Server).openapiSpec |
----------|--------|-----------------|-----------------------------------------------------------------|----------------------------------
:8000 | ALL | /swagger/* | github.com/gogf/gf/v2/net/ghttp.(*Server).swaggerUI | HOOK_BEFORE_SERVE
----------|--------|-----------------|-----------------------------------------------------------------|----------------------------------
:8000 | POST | /visitor_access | vistor/internal/controller.(*cVisitor).VisitorAccess | ghttp.MiddlewareHandlerResponse
----------|--------|-----------------|-----------------------------------------------------------------|----------------------------------

@ -0,0 +1,747 @@
2023-11-17 09:12:16.393 [INFO] pid[25124]: http server started listening on [:8000]
2023-11-17 09:12:16.393 [INFO] {84a27bc4f20a9817035d0e34712a5308} swagger ui is serving at address: http://127.0.0.1:8000/swagger/
2023-11-17 09:12:16.394 [INFO] {84a27bc4f20a9817035d0e34712a5308} openapi specification is serving at address: http://127.0.0.1:8000/api.json
ADDRESS | METHOD | ROUTE | HANDLER | MIDDLEWARE
----------|--------|-----------------|-----------------------------------------------------------------|----------------------------------
:8000 | ALL | /* | github.com/gogf/gf/v2/net/ghttp.internalMiddlewareServerTracing | GLOBAL MIDDLEWARE
----------|--------|-----------------|-----------------------------------------------------------------|----------------------------------
:8000 | ALL | /api.json | github.com/gogf/gf/v2/net/ghttp.(*Server).openapiSpec |
----------|--------|-----------------|-----------------------------------------------------------------|----------------------------------
:8000 | ALL | /swagger/* | github.com/gogf/gf/v2/net/ghttp.(*Server).swaggerUI | HOOK_BEFORE_SERVE
----------|--------|-----------------|-----------------------------------------------------------------|----------------------------------
:8000 | POST | /visitor_access | vistor/internal/controller.(*cVisitor).VisitorAccess | ghttp.MiddlewareHandlerResponse
----------|--------|-----------------|-----------------------------------------------------------------|----------------------------------
2023-11-17 09:13:41.998 [INFO] pid[14936]: http server started listening on [:8000]
2023-11-17 09:13:41.998 [INFO] {84a27bc4f20a9817035d0e34712a5308} swagger ui is serving at address: http://127.0.0.1:8000/swagger/
2023-11-17 09:13:41.999 [INFO] {84a27bc4f20a9817035d0e34712a5308} openapi specification is serving at address: http://127.0.0.1:8000/api.json
ADDRESS | METHOD | ROUTE | HANDLER | MIDDLEWARE
----------|--------|-----------------|-----------------------------------------------------------------|----------------------------------
:8000 | ALL | /* | github.com/gogf/gf/v2/net/ghttp.internalMiddlewareServerTracing | GLOBAL MIDDLEWARE
----------|--------|-----------------|-----------------------------------------------------------------|----------------------------------
:8000 | ALL | /api.json | github.com/gogf/gf/v2/net/ghttp.(*Server).openapiSpec |
----------|--------|-----------------|-----------------------------------------------------------------|----------------------------------
:8000 | ALL | /swagger/* | github.com/gogf/gf/v2/net/ghttp.(*Server).swaggerUI | HOOK_BEFORE_SERVE
----------|--------|-----------------|-----------------------------------------------------------------|----------------------------------
:8000 | POST | /visitor_access | vistor/internal/controller.(*cVisitor).VisitorAccess | ghttp.MiddlewareHandlerResponse
----------|--------|-----------------|-----------------------------------------------------------------|----------------------------------
2023-11-17 09:14:49.518 [INFO] pid[23584]: http server started listening on [:8000]
2023-11-17 09:14:49.518 [INFO] {f07287550d449817128f3107e3f9f1aa} swagger ui is serving at address: http://127.0.0.1:8000/swagger/
2023-11-17 09:14:49.518 [INFO] {f07287550d449817128f3107e3f9f1aa} openapi specification is serving at address: http://127.0.0.1:8000/api.json
ADDRESS | METHOD | ROUTE | HANDLER | MIDDLEWARE
----------|--------|-----------------|-----------------------------------------------------------------|----------------------------------
:8000 | ALL | /* | github.com/gogf/gf/v2/net/ghttp.internalMiddlewareServerTracing | GLOBAL MIDDLEWARE
----------|--------|-----------------|-----------------------------------------------------------------|----------------------------------
:8000 | ALL | /api.json | github.com/gogf/gf/v2/net/ghttp.(*Server).openapiSpec |
----------|--------|-----------------|-----------------------------------------------------------------|----------------------------------
:8000 | ALL | /swagger/* | github.com/gogf/gf/v2/net/ghttp.(*Server).swaggerUI | HOOK_BEFORE_SERVE
----------|--------|-----------------|-----------------------------------------------------------------|----------------------------------
:8000 | POST | /visitor_access | vistor/internal/controller.(*cVisitor).VisitorAccess | ghttp.MiddlewareHandlerResponse
----------|--------|-----------------|-----------------------------------------------------------------|----------------------------------
2023-11-17 09:16:33.244 [INFO] pid[24980]: http server started listening on [:8000]
2023-11-17 09:16:33.244 [INFO] {f07287550d449817128f3107e3f9f1aa} swagger ui is serving at address: http://127.0.0.1:8000/swagger/
2023-11-17 09:16:33.245 [INFO] {f07287550d449817128f3107e3f9f1aa} openapi specification is serving at address: http://127.0.0.1:8000/api.json
ADDRESS | METHOD | ROUTE | HANDLER | MIDDLEWARE
----------|--------|-----------------|-----------------------------------------------------------------|----------------------------------
:8000 | ALL | /* | github.com/gogf/gf/v2/net/ghttp.internalMiddlewareServerTracing | GLOBAL MIDDLEWARE
----------|--------|-----------------|-----------------------------------------------------------------|----------------------------------
:8000 | ALL | /api.json | github.com/gogf/gf/v2/net/ghttp.(*Server).openapiSpec |
----------|--------|-----------------|-----------------------------------------------------------------|----------------------------------
:8000 | ALL | /swagger/* | github.com/gogf/gf/v2/net/ghttp.(*Server).swaggerUI | HOOK_BEFORE_SERVE
----------|--------|-----------------|-----------------------------------------------------------------|----------------------------------
:8000 | POST | /visitor_access | vistor/internal/controller.(*cVisitor).VisitorAccess | ghttp.MiddlewareHandlerResponse
----------|--------|-----------------|-----------------------------------------------------------------|----------------------------------
2023-11-17 09:17:21.096 [INFO] pid[1396]: http server started listening on [:8000]
2023-11-17 09:17:21.096 [INFO] {f07287550d449817128f3107e3f9f1aa} swagger ui is serving at address: http://127.0.0.1:8000/swagger/
2023-11-17 09:17:21.097 [INFO] {f07287550d449817128f3107e3f9f1aa} openapi specification is serving at address: http://127.0.0.1:8000/api.json
ADDRESS | METHOD | ROUTE | HANDLER | MIDDLEWARE
----------|--------|-----------------|-----------------------------------------------------------------|----------------------------------
:8000 | ALL | /* | github.com/gogf/gf/v2/net/ghttp.internalMiddlewareServerTracing | GLOBAL MIDDLEWARE
----------|--------|-----------------|-----------------------------------------------------------------|----------------------------------
:8000 | ALL | /api.json | github.com/gogf/gf/v2/net/ghttp.(*Server).openapiSpec |
----------|--------|-----------------|-----------------------------------------------------------------|----------------------------------
:8000 | ALL | /swagger/* | github.com/gogf/gf/v2/net/ghttp.(*Server).swaggerUI | HOOK_BEFORE_SERVE
----------|--------|-----------------|-----------------------------------------------------------------|----------------------------------
:8000 | POST | /visitor_access | vistor/internal/controller.(*cVisitor).VisitorAccess | ghttp.MiddlewareHandlerResponse
----------|--------|-----------------|-----------------------------------------------------------------|----------------------------------
2023-11-17 09:18:05.867 [INFO] pid[18604]: http server started listening on [:8000]
2023-11-17 09:18:05.867 [INFO] {f07287550d449817128f3107e3f9f1aa} swagger ui is serving at address: http://127.0.0.1:8000/swagger/
2023-11-17 09:18:05.867 [INFO] {f07287550d449817128f3107e3f9f1aa} openapi specification is serving at address: http://127.0.0.1:8000/api.json
ADDRESS | METHOD | ROUTE | HANDLER | MIDDLEWARE
----------|--------|-----------------|-----------------------------------------------------------------|----------------------------------
:8000 | ALL | /* | github.com/gogf/gf/v2/net/ghttp.internalMiddlewareServerTracing | GLOBAL MIDDLEWARE
----------|--------|-----------------|-----------------------------------------------------------------|----------------------------------
:8000 | ALL | /api.json | github.com/gogf/gf/v2/net/ghttp.(*Server).openapiSpec |
----------|--------|-----------------|-----------------------------------------------------------------|----------------------------------
:8000 | ALL | /swagger/* | github.com/gogf/gf/v2/net/ghttp.(*Server).swaggerUI | HOOK_BEFORE_SERVE
----------|--------|-----------------|-----------------------------------------------------------------|----------------------------------
:8000 | POST | /visitor_access | vistor/internal/controller.(*cVisitor).VisitorAccess | ghttp.MiddlewareHandlerResponse
----------|--------|-----------------|-----------------------------------------------------------------|----------------------------------
2023-11-17 09:37:40.913 [INFO] pid[20832]: http server started listening on [:8000]
2023-11-17 09:37:40.913 [INFO] {f07287550d449817128f3107e3f9f1aa} swagger ui is serving at address: http://127.0.0.1:8000/swagger/
2023-11-17 09:37:40.913 [INFO] {f07287550d449817128f3107e3f9f1aa} openapi specification is serving at address: http://127.0.0.1:8000/api.json
ADDRESS | METHOD | ROUTE | HANDLER | MIDDLEWARE
----------|--------|-----------------|-----------------------------------------------------------------|----------------------------------
:8000 | ALL | /* | github.com/gogf/gf/v2/net/ghttp.internalMiddlewareServerTracing | GLOBAL MIDDLEWARE
----------|--------|-----------------|-----------------------------------------------------------------|----------------------------------
:8000 | ALL | /api.json | github.com/gogf/gf/v2/net/ghttp.(*Server).openapiSpec |
----------|--------|-----------------|-----------------------------------------------------------------|----------------------------------
:8000 | ALL | /swagger/* | github.com/gogf/gf/v2/net/ghttp.(*Server).swaggerUI | HOOK_BEFORE_SERVE
----------|--------|-----------------|-----------------------------------------------------------------|----------------------------------
:8000 | POST | /visitor_access | vistor/internal/controller.(*cVisitor).VisitorAccess | ghttp.MiddlewareHandlerResponse
----------|--------|-----------------|-----------------------------------------------------------------|----------------------------------
2023-11-17 09:39:01.081 [INFO] pid[19660]: http server started listening on [:8000]
2023-11-17 09:39:01.081 [INFO] {f07287550d449817128f3107e3f9f1aa} swagger ui is serving at address: http://127.0.0.1:8000/swagger/
2023-11-17 09:39:01.082 [INFO] {f07287550d449817128f3107e3f9f1aa} openapi specification is serving at address: http://127.0.0.1:8000/api.json
ADDRESS | METHOD | ROUTE | HANDLER | MIDDLEWARE
----------|--------|-----------------|-----------------------------------------------------------------|----------------------------------
:8000 | ALL | /* | github.com/gogf/gf/v2/net/ghttp.internalMiddlewareServerTracing | GLOBAL MIDDLEWARE
----------|--------|-----------------|-----------------------------------------------------------------|----------------------------------
:8000 | ALL | /api.json | github.com/gogf/gf/v2/net/ghttp.(*Server).openapiSpec |
----------|--------|-----------------|-----------------------------------------------------------------|----------------------------------
:8000 | ALL | /swagger/* | github.com/gogf/gf/v2/net/ghttp.(*Server).swaggerUI | HOOK_BEFORE_SERVE
----------|--------|-----------------|-----------------------------------------------------------------|----------------------------------
:8000 | POST | /visitor_access | vistor/internal/controller.(*cVisitor).VisitorAccess | ghttp.MiddlewareHandlerResponse
----------|--------|-----------------|-----------------------------------------------------------------|----------------------------------
2023-11-17 09:39:32.867 [INFO] pid[19900]: http server started listening on [:8000]
2023-11-17 09:39:32.867 [INFO] {f07287550d449817128f3107e3f9f1aa} swagger ui is serving at address: http://127.0.0.1:8000/swagger/
2023-11-17 09:39:32.867 [INFO] {f07287550d449817128f3107e3f9f1aa} openapi specification is serving at address: http://127.0.0.1:8000/api.json
ADDRESS | METHOD | ROUTE | HANDLER | MIDDLEWARE
----------|--------|-----------------|-----------------------------------------------------------------|----------------------------------
:8000 | ALL | /* | github.com/gogf/gf/v2/net/ghttp.internalMiddlewareServerTracing | GLOBAL MIDDLEWARE
----------|--------|-----------------|-----------------------------------------------------------------|----------------------------------
:8000 | ALL | /api.json | github.com/gogf/gf/v2/net/ghttp.(*Server).openapiSpec |
----------|--------|-----------------|-----------------------------------------------------------------|----------------------------------
:8000 | ALL | /swagger/* | github.com/gogf/gf/v2/net/ghttp.(*Server).swaggerUI | HOOK_BEFORE_SERVE
----------|--------|-----------------|-----------------------------------------------------------------|----------------------------------
:8000 | POST | /visitor_access | vistor/internal/controller.(*cVisitor).VisitorAccess | ghttp.MiddlewareHandlerResponse
----------|--------|-----------------|-----------------------------------------------------------------|----------------------------------
2023-11-17 09:40:29.416 [INFO] pid[23304]: http server started listening on [:8000]
2023-11-17 09:40:29.416 [INFO] {f07287550d449817128f3107e3f9f1aa} swagger ui is serving at address: http://127.0.0.1:8000/swagger/
2023-11-17 09:40:29.417 [INFO] {f07287550d449817128f3107e3f9f1aa} openapi specification is serving at address: http://127.0.0.1:8000/api.json
ADDRESS | METHOD | ROUTE | HANDLER | MIDDLEWARE
----------|--------|-----------------|-----------------------------------------------------------------|-----------------------------
:8000 | ALL | /* | github.com/gogf/gf/v2/net/ghttp.internalMiddlewareServerTracing | GLOBAL MIDDLEWARE
----------|--------|-----------------|-----------------------------------------------------------------|-----------------------------
:8000 | ALL | /api.json | github.com/gogf/gf/v2/net/ghttp.(*Server).openapiSpec |
----------|--------|-----------------|-----------------------------------------------------------------|-----------------------------
:8000 | ALL | /swagger/* | github.com/gogf/gf/v2/net/ghttp.(*Server).swaggerUI | HOOK_BEFORE_SERVE
----------|--------|-----------------|-----------------------------------------------------------------|-----------------------------
:8000 | POST | /visitor_access | vistor/internal/controller.(*cVisitor).VisitorAccess | middleware.HandlerResponse
----------|--------|-----------------|-----------------------------------------------------------------|-----------------------------
2023-11-17 10:17:40.526 [INFO] pid[16268]: http server started listening on [:8000]
2023-11-17 10:17:40.526 [INFO] {f07287550d449817128f3107e3f9f1aa} swagger ui is serving at address: http://127.0.0.1:8000/swagger/
2023-11-17 10:17:40.526 [INFO] {f07287550d449817128f3107e3f9f1aa} openapi specification is serving at address: http://127.0.0.1:8000/api.json
ADDRESS | METHOD | ROUTE | HANDLER | MIDDLEWARE
----------|--------|-----------------|-----------------------------------------------------------------|-----------------------------
:8000 | ALL | /* | github.com/gogf/gf/v2/net/ghttp.internalMiddlewareServerTracing | GLOBAL MIDDLEWARE
----------|--------|-----------------|-----------------------------------------------------------------|-----------------------------
:8000 | ALL | /api.json | github.com/gogf/gf/v2/net/ghttp.(*Server).openapiSpec |
----------|--------|-----------------|-----------------------------------------------------------------|-----------------------------
:8000 | ALL | /swagger/* | github.com/gogf/gf/v2/net/ghttp.(*Server).swaggerUI | HOOK_BEFORE_SERVE
----------|--------|-----------------|-----------------------------------------------------------------|-----------------------------
:8000 | POST | /visitor_access | vistor/internal/controller.(*cVisitor).VisitorAccess | middleware.HandlerResponse
----------|--------|-----------------|-----------------------------------------------------------------|-----------------------------
2023-11-17 10:25:36.628 [INFO] pid[8484]: http server started listening on [:8000]
2023-11-17 10:25:36.628 [INFO] {f07287550d449817128f3107e3f9f1aa} swagger ui is serving at address: http://127.0.0.1:8000/swagger/
2023-11-17 10:25:36.628 [INFO] {f07287550d449817128f3107e3f9f1aa} openapi specification is serving at address: http://127.0.0.1:8000/api.json
ADDRESS | METHOD | ROUTE | HANDLER | MIDDLEWARE
----------|--------|-----------------|-----------------------------------------------------------------|-----------------------------
:8000 | ALL | /* | github.com/gogf/gf/v2/net/ghttp.internalMiddlewareServerTracing | GLOBAL MIDDLEWARE
----------|--------|-----------------|-----------------------------------------------------------------|-----------------------------
:8000 | ALL | /api.json | github.com/gogf/gf/v2/net/ghttp.(*Server).openapiSpec |
----------|--------|-----------------|-----------------------------------------------------------------|-----------------------------
:8000 | ALL | /swagger/* | github.com/gogf/gf/v2/net/ghttp.(*Server).swaggerUI | HOOK_BEFORE_SERVE
----------|--------|-----------------|-----------------------------------------------------------------|-----------------------------
:8000 | POST | /visitor_access | vistor/internal/controller.(*cVisitor).VisitorAccess | middleware.HandlerResponse
----------|--------|-----------------|-----------------------------------------------------------------|-----------------------------
2023-11-17 10:30:09.521 [INFO] pid[23520]: http server started listening on [:8000]
2023-11-17 10:30:09.521 [INFO] {f07287550d449817128f3107e3f9f1aa} swagger ui is serving at address: http://127.0.0.1:8000/swagger/
2023-11-17 10:30:09.521 [INFO] {f07287550d449817128f3107e3f9f1aa} openapi specification is serving at address: http://127.0.0.1:8000/api.json
ADDRESS | METHOD | ROUTE | HANDLER | MIDDLEWARE
----------|--------|-----------------|-----------------------------------------------------------------|-----------------------------
:8000 | ALL | /* | github.com/gogf/gf/v2/net/ghttp.internalMiddlewareServerTracing | GLOBAL MIDDLEWARE
----------|--------|-----------------|-----------------------------------------------------------------|-----------------------------
:8000 | ALL | /api.json | github.com/gogf/gf/v2/net/ghttp.(*Server).openapiSpec |
----------|--------|-----------------|-----------------------------------------------------------------|-----------------------------
:8000 | ALL | /swagger/* | github.com/gogf/gf/v2/net/ghttp.(*Server).swaggerUI | HOOK_BEFORE_SERVE
----------|--------|-----------------|-----------------------------------------------------------------|-----------------------------
:8000 | POST | /visitor_access | vistor/internal/controller.(*cVisitor).VisitorAccess | middleware.HandlerResponse
----------|--------|-----------------|-----------------------------------------------------------------|-----------------------------
2023-11-17 10:30:25.756 [INFO] pid[2636]: http server started listening on [:8000]
2023-11-17 10:30:25.756 [INFO] {f07287550d449817128f3107e3f9f1aa} swagger ui is serving at address: http://127.0.0.1:8000/swagger/
2023-11-17 10:30:25.756 [INFO] {f07287550d449817128f3107e3f9f1aa} openapi specification is serving at address: http://127.0.0.1:8000/api.json
ADDRESS | METHOD | ROUTE | HANDLER | MIDDLEWARE
----------|--------|-----------------|-----------------------------------------------------------------|-----------------------------
:8000 | ALL | /* | github.com/gogf/gf/v2/net/ghttp.internalMiddlewareServerTracing | GLOBAL MIDDLEWARE
----------|--------|-----------------|-----------------------------------------------------------------|-----------------------------
:8000 | ALL | /api.json | github.com/gogf/gf/v2/net/ghttp.(*Server).openapiSpec |
----------|--------|-----------------|-----------------------------------------------------------------|-----------------------------
:8000 | ALL | /swagger/* | github.com/gogf/gf/v2/net/ghttp.(*Server).swaggerUI | HOOK_BEFORE_SERVE
----------|--------|-----------------|-----------------------------------------------------------------|-----------------------------
:8000 | POST | /visitor_access | vistor/internal/controller.(*cVisitor).VisitorAccess | middleware.HandlerResponse
----------|--------|-----------------|-----------------------------------------------------------------|-----------------------------
2023-11-17 10:30:38.945 [INFO] pid[13008]: http server started listening on [:8000]
2023-11-17 10:30:38.945 [INFO] {f07287550d449817128f3107e3f9f1aa} swagger ui is serving at address: http://127.0.0.1:8000/swagger/
2023-11-17 10:30:38.945 [INFO] {f07287550d449817128f3107e3f9f1aa} openapi specification is serving at address: http://127.0.0.1:8000/api.json
ADDRESS | METHOD | ROUTE | HANDLER | MIDDLEWARE
----------|--------|-----------------|-----------------------------------------------------------------|-----------------------------
:8000 | ALL | /* | github.com/gogf/gf/v2/net/ghttp.internalMiddlewareServerTracing | GLOBAL MIDDLEWARE
----------|--------|-----------------|-----------------------------------------------------------------|-----------------------------
:8000 | ALL | /api.json | github.com/gogf/gf/v2/net/ghttp.(*Server).openapiSpec |
----------|--------|-----------------|-----------------------------------------------------------------|-----------------------------
:8000 | ALL | /swagger/* | github.com/gogf/gf/v2/net/ghttp.(*Server).swaggerUI | HOOK_BEFORE_SERVE
----------|--------|-----------------|-----------------------------------------------------------------|-----------------------------
:8000 | POST | /visitor_access | vistor/internal/controller.(*cVisitor).VisitorAccess | middleware.HandlerResponse
----------|--------|-----------------|-----------------------------------------------------------------|-----------------------------
2023-11-17 10:37:45.933 [INFO] pid[15156]: http server started listening on [:8000]
2023-11-17 10:37:45.933 [INFO] {f07287550d449817128f3107e3f9f1aa} swagger ui is serving at address: http://127.0.0.1:8000/swagger/
2023-11-17 10:37:45.933 [INFO] {f07287550d449817128f3107e3f9f1aa} openapi specification is serving at address: http://127.0.0.1:8000/api.json
ADDRESS | METHOD | ROUTE | HANDLER | MIDDLEWARE
----------|--------|-----------------|-----------------------------------------------------------------|-----------------------------
:8000 | ALL | /* | github.com/gogf/gf/v2/net/ghttp.internalMiddlewareServerTracing | GLOBAL MIDDLEWARE
----------|--------|-----------------|-----------------------------------------------------------------|-----------------------------
:8000 | ALL | /api.json | github.com/gogf/gf/v2/net/ghttp.(*Server).openapiSpec |
----------|--------|-----------------|-----------------------------------------------------------------|-----------------------------
:8000 | ALL | /swagger/* | github.com/gogf/gf/v2/net/ghttp.(*Server).swaggerUI | HOOK_BEFORE_SERVE
----------|--------|-----------------|-----------------------------------------------------------------|-----------------------------
:8000 | POST | /visitor_access | vistor/internal/controller.(*cVisitor).VisitorAccess | middleware.HandlerResponse
----------|--------|-----------------|-----------------------------------------------------------------|-----------------------------
2023-11-17 10:39:32.075 [INFO] pid[13432]: http server started listening on [:8000]
2023-11-17 10:39:32.075 [INFO] {f07287550d449817128f3107e3f9f1aa} swagger ui is serving at address: http://127.0.0.1:8000/swagger/
2023-11-17 10:39:32.075 [INFO] {f07287550d449817128f3107e3f9f1aa} openapi specification is serving at address: http://127.0.0.1:8000/api.json
ADDRESS | METHOD | ROUTE | HANDLER | MIDDLEWARE
----------|--------|-----------------|-----------------------------------------------------------------|-----------------------------
:8000 | ALL | /* | github.com/gogf/gf/v2/net/ghttp.internalMiddlewareServerTracing | GLOBAL MIDDLEWARE
----------|--------|-----------------|-----------------------------------------------------------------|-----------------------------
:8000 | ALL | /api.json | github.com/gogf/gf/v2/net/ghttp.(*Server).openapiSpec |
----------|--------|-----------------|-----------------------------------------------------------------|-----------------------------
:8000 | ALL | /swagger/* | github.com/gogf/gf/v2/net/ghttp.(*Server).swaggerUI | HOOK_BEFORE_SERVE
----------|--------|-----------------|-----------------------------------------------------------------|-----------------------------
:8000 | POST | /visitor_access | vistor/internal/controller.(*cVisitor).VisitorAccess | middleware.HandlerResponse
----------|--------|-----------------|-----------------------------------------------------------------|-----------------------------
2023-11-17 10:46:59.185 [INFO] pid[23272]: http server started listening on [:8000]
2023-11-17 10:46:59.185 [INFO] {f07287550d449817128f3107e3f9f1aa} swagger ui is serving at address: http://127.0.0.1:8000/swagger/
2023-11-17 10:46:59.186 [INFO] {f07287550d449817128f3107e3f9f1aa} openapi specification is serving at address: http://127.0.0.1:8000/api.json
ADDRESS | METHOD | ROUTE | HANDLER | MIDDLEWARE
----------|--------|-----------------|-----------------------------------------------------------------|-----------------------------
:8000 | ALL | /* | github.com/gogf/gf/v2/net/ghttp.internalMiddlewareServerTracing | GLOBAL MIDDLEWARE
----------|--------|-----------------|-----------------------------------------------------------------|-----------------------------
:8000 | ALL | /api.json | github.com/gogf/gf/v2/net/ghttp.(*Server).openapiSpec |
----------|--------|-----------------|-----------------------------------------------------------------|-----------------------------
:8000 | ALL | /swagger/* | github.com/gogf/gf/v2/net/ghttp.(*Server).swaggerUI | HOOK_BEFORE_SERVE
----------|--------|-----------------|-----------------------------------------------------------------|-----------------------------
:8000 | POST | /visitor_access | vistor/internal/controller.(*cVisitor).VisitorAccess | middleware.HandlerResponse
----------|--------|-----------------|-----------------------------------------------------------------|-----------------------------
2023-11-17 10:54:54.656 [INFO] pid[20840]: http server started listening on [:8000]
2023-11-17 10:54:54.656 [INFO] {f07287550d449817128f3107e3f9f1aa} swagger ui is serving at address: http://127.0.0.1:8000/swagger/
2023-11-17 10:54:54.657 [INFO] {f07287550d449817128f3107e3f9f1aa} openapi specification is serving at address: http://127.0.0.1:8000/api.json
ADDRESS | METHOD | ROUTE | HANDLER | MIDDLEWARE
----------|--------|-----------------|-----------------------------------------------------------------|-----------------------------
:8000 | ALL | /* | github.com/gogf/gf/v2/net/ghttp.internalMiddlewareServerTracing | GLOBAL MIDDLEWARE
----------|--------|-----------------|-----------------------------------------------------------------|-----------------------------
:8000 | ALL | /api.json | github.com/gogf/gf/v2/net/ghttp.(*Server).openapiSpec |
----------|--------|-----------------|-----------------------------------------------------------------|-----------------------------
:8000 | ALL | /swagger/* | github.com/gogf/gf/v2/net/ghttp.(*Server).swaggerUI | HOOK_BEFORE_SERVE
----------|--------|-----------------|-----------------------------------------------------------------|-----------------------------
:8000 | POST | /visitor_access | vistor/internal/controller.(*cVisitor).VisitorAccess | middleware.HandlerResponse
----------|--------|-----------------|-----------------------------------------------------------------|-----------------------------
2023-11-17 10:56:11.539 [INFO] pid[23392]: http server started listening on [:8000]
2023-11-17 10:56:11.539 [INFO] {f07287550d449817128f3107e3f9f1aa} swagger ui is serving at address: http://127.0.0.1:8000/swagger/
2023-11-17 10:56:11.539 [INFO] {f07287550d449817128f3107e3f9f1aa} openapi specification is serving at address: http://127.0.0.1:8000/api.json
ADDRESS | METHOD | ROUTE | HANDLER | MIDDLEWARE
----------|--------|-----------------|-----------------------------------------------------------------|-----------------------------
:8000 | ALL | /* | github.com/gogf/gf/v2/net/ghttp.internalMiddlewareServerTracing | GLOBAL MIDDLEWARE
----------|--------|-----------------|-----------------------------------------------------------------|-----------------------------
:8000 | ALL | /api.json | github.com/gogf/gf/v2/net/ghttp.(*Server).openapiSpec |
----------|--------|-----------------|-----------------------------------------------------------------|-----------------------------
:8000 | ALL | /swagger/* | github.com/gogf/gf/v2/net/ghttp.(*Server).swaggerUI | HOOK_BEFORE_SERVE
----------|--------|-----------------|-----------------------------------------------------------------|-----------------------------
:8000 | POST | /visitor_access | vistor/internal/controller.(*cVisitor).VisitorAccess | middleware.HandlerResponse
----------|--------|-----------------|-----------------------------------------------------------------|-----------------------------
2023-11-17 10:56:33.536 [INFO] pid[23636]: http server started listening on [:8000]
2023-11-17 10:56:33.536 [INFO] {f07287550d449817128f3107e3f9f1aa} swagger ui is serving at address: http://127.0.0.1:8000/swagger/
2023-11-17 10:56:33.536 [INFO] {f07287550d449817128f3107e3f9f1aa} openapi specification is serving at address: http://127.0.0.1:8000/api.json
ADDRESS | METHOD | ROUTE | HANDLER | MIDDLEWARE
----------|--------|-----------------|-----------------------------------------------------------------|-----------------------------
:8000 | ALL | /* | github.com/gogf/gf/v2/net/ghttp.internalMiddlewareServerTracing | GLOBAL MIDDLEWARE
----------|--------|-----------------|-----------------------------------------------------------------|-----------------------------
:8000 | ALL | /api.json | github.com/gogf/gf/v2/net/ghttp.(*Server).openapiSpec |
----------|--------|-----------------|-----------------------------------------------------------------|-----------------------------
:8000 | ALL | /swagger/* | github.com/gogf/gf/v2/net/ghttp.(*Server).swaggerUI | HOOK_BEFORE_SERVE
----------|--------|-----------------|-----------------------------------------------------------------|-----------------------------
:8000 | POST | /visitor_access | vistor/internal/controller.(*cVisitor).VisitorAccess | middleware.HandlerResponse
----------|--------|-----------------|-----------------------------------------------------------------|-----------------------------
2023-11-17 10:57:39.525 [INFO] pid[25360]: http server started listening on [:8000]
2023-11-17 10:57:39.525 [INFO] {f07287550d449817128f3107e3f9f1aa} swagger ui is serving at address: http://127.0.0.1:8000/swagger/
2023-11-17 10:57:39.525 [INFO] {f07287550d449817128f3107e3f9f1aa} openapi specification is serving at address: http://127.0.0.1:8000/api.json
ADDRESS | METHOD | ROUTE | HANDLER | MIDDLEWARE
----------|--------|-----------------|-----------------------------------------------------------------|-----------------------------
:8000 | ALL | /* | github.com/gogf/gf/v2/net/ghttp.internalMiddlewareServerTracing | GLOBAL MIDDLEWARE
----------|--------|-----------------|-----------------------------------------------------------------|-----------------------------
:8000 | ALL | /api.json | github.com/gogf/gf/v2/net/ghttp.(*Server).openapiSpec |
----------|--------|-----------------|-----------------------------------------------------------------|-----------------------------
:8000 | ALL | /swagger/* | github.com/gogf/gf/v2/net/ghttp.(*Server).swaggerUI | HOOK_BEFORE_SERVE
----------|--------|-----------------|-----------------------------------------------------------------|-----------------------------
:8000 | POST | /visitor_access | vistor/internal/controller.(*cVisitor).VisitorAccess | middleware.HandlerResponse
----------|--------|-----------------|-----------------------------------------------------------------|-----------------------------
2023-11-17 10:58:02.649 [INFO] pid[24024]: http server started listening on [:8000]
2023-11-17 10:58:02.649 [INFO] {f07287550d449817128f3107e3f9f1aa} swagger ui is serving at address: http://127.0.0.1:8000/swagger/
2023-11-17 10:58:02.650 [INFO] {f07287550d449817128f3107e3f9f1aa} openapi specification is serving at address: http://127.0.0.1:8000/api.json
ADDRESS | METHOD | ROUTE | HANDLER | MIDDLEWARE
----------|--------|-----------------|-----------------------------------------------------------------|-----------------------------
:8000 | ALL | /* | github.com/gogf/gf/v2/net/ghttp.internalMiddlewareServerTracing | GLOBAL MIDDLEWARE
----------|--------|-----------------|-----------------------------------------------------------------|-----------------------------
:8000 | ALL | /api.json | github.com/gogf/gf/v2/net/ghttp.(*Server).openapiSpec |
----------|--------|-----------------|-----------------------------------------------------------------|-----------------------------
:8000 | ALL | /swagger/* | github.com/gogf/gf/v2/net/ghttp.(*Server).swaggerUI | HOOK_BEFORE_SERVE
----------|--------|-----------------|-----------------------------------------------------------------|-----------------------------
:8000 | POST | /visitor_access | vistor/internal/controller.(*cVisitor).VisitorAccess | middleware.HandlerResponse
----------|--------|-----------------|-----------------------------------------------------------------|-----------------------------
2023-11-17 10:58:24.755 [INFO] pid[16768]: http server started listening on [:8000]
2023-11-17 10:58:24.755 [INFO] {f07287550d449817128f3107e3f9f1aa} swagger ui is serving at address: http://127.0.0.1:8000/swagger/
2023-11-17 10:58:24.756 [INFO] {f07287550d449817128f3107e3f9f1aa} openapi specification is serving at address: http://127.0.0.1:8000/api.json
ADDRESS | METHOD | ROUTE | HANDLER | MIDDLEWARE
----------|--------|-----------------|-----------------------------------------------------------------|-----------------------------
:8000 | ALL | /* | github.com/gogf/gf/v2/net/ghttp.internalMiddlewareServerTracing | GLOBAL MIDDLEWARE
----------|--------|-----------------|-----------------------------------------------------------------|-----------------------------
:8000 | ALL | /api.json | github.com/gogf/gf/v2/net/ghttp.(*Server).openapiSpec |
----------|--------|-----------------|-----------------------------------------------------------------|-----------------------------
:8000 | ALL | /swagger/* | github.com/gogf/gf/v2/net/ghttp.(*Server).swaggerUI | HOOK_BEFORE_SERVE
----------|--------|-----------------|-----------------------------------------------------------------|-----------------------------
:8000 | POST | /visitor_access | vistor/internal/controller.(*cVisitor).VisitorAccess | middleware.HandlerResponse
----------|--------|-----------------|-----------------------------------------------------------------|-----------------------------
2023-11-17 10:59:07.540 [INFO] pid[23768]: http server started listening on [:8000]
2023-11-17 10:59:07.540 [INFO] {f07287550d449817128f3107e3f9f1aa} swagger ui is serving at address: http://127.0.0.1:8000/swagger/
2023-11-17 10:59:07.540 [INFO] {f07287550d449817128f3107e3f9f1aa} openapi specification is serving at address: http://127.0.0.1:8000/api.json
ADDRESS | METHOD | ROUTE | HANDLER | MIDDLEWARE
----------|--------|-----------------|-----------------------------------------------------------------|-----------------------------
:8000 | ALL | /* | github.com/gogf/gf/v2/net/ghttp.internalMiddlewareServerTracing | GLOBAL MIDDLEWARE
----------|--------|-----------------|-----------------------------------------------------------------|-----------------------------
:8000 | ALL | /api.json | github.com/gogf/gf/v2/net/ghttp.(*Server).openapiSpec |
----------|--------|-----------------|-----------------------------------------------------------------|-----------------------------
:8000 | ALL | /swagger/* | github.com/gogf/gf/v2/net/ghttp.(*Server).swaggerUI | HOOK_BEFORE_SERVE
----------|--------|-----------------|-----------------------------------------------------------------|-----------------------------
:8000 | POST | /visitor_access | vistor/internal/controller.(*cVisitor).VisitorAccess | middleware.HandlerResponse
----------|--------|-----------------|-----------------------------------------------------------------|-----------------------------
2023-11-17 11:10:03.622 [INFO] pid[21812]: http server started listening on [:8000]
2023-11-17 11:10:03.622 [INFO] {f07287550d449817128f3107e3f9f1aa} swagger ui is serving at address: http://127.0.0.1:8000/swagger/
2023-11-17 11:10:03.623 [INFO] {f07287550d449817128f3107e3f9f1aa} openapi specification is serving at address: http://127.0.0.1:8000/api.json
ADDRESS | METHOD | ROUTE | HANDLER | MIDDLEWARE
----------|--------|-----------------|-----------------------------------------------------------------|-----------------------------
:8000 | ALL | /* | github.com/gogf/gf/v2/net/ghttp.internalMiddlewareServerTracing | GLOBAL MIDDLEWARE
----------|--------|-----------------|-----------------------------------------------------------------|-----------------------------
:8000 | ALL | /api.json | github.com/gogf/gf/v2/net/ghttp.(*Server).openapiSpec |
----------|--------|-----------------|-----------------------------------------------------------------|-----------------------------
:8000 | ALL | /swagger/* | github.com/gogf/gf/v2/net/ghttp.(*Server).swaggerUI | HOOK_BEFORE_SERVE
----------|--------|-----------------|-----------------------------------------------------------------|-----------------------------
:8000 | POST | /visitor_access | vistor/internal/controller.(*cVisitor).VisitorAccess | middleware.HandlerResponse
----------|--------|-----------------|-----------------------------------------------------------------|-----------------------------
2023-11-17 11:13:08.179 [INFO] pid[22852]: http server started listening on [:8000]
2023-11-17 11:13:08.179 [INFO] {f07287550d449817128f3107e3f9f1aa} swagger ui is serving at address: http://127.0.0.1:8000/swagger/
2023-11-17 11:13:08.179 [INFO] {f07287550d449817128f3107e3f9f1aa} openapi specification is serving at address: http://127.0.0.1:8000/api.json
ADDRESS | METHOD | ROUTE | HANDLER | MIDDLEWARE
----------|--------|--------------------|-----------------------------------------------------------------|-----------------------------
:8000 | ALL | /* | github.com/gogf/gf/v2/net/ghttp.internalMiddlewareServerTracing | GLOBAL MIDDLEWARE
----------|--------|--------------------|-----------------------------------------------------------------|-----------------------------
:8000 | ALL | /api.json | github.com/gogf/gf/v2/net/ghttp.(*Server).openapiSpec |
----------|--------|--------------------|-----------------------------------------------------------------|-----------------------------
:8000 | ALL | /swagger/* | github.com/gogf/gf/v2/net/ghttp.(*Server).swaggerUI | HOOK_BEFORE_SERVE
----------|--------|--------------------|-----------------------------------------------------------------|-----------------------------
:8000 | POST | /visitor_access | vistor/internal/controller.(*cVisitor).VisitorAccess | middleware.HandlerResponse
----------|--------|--------------------|-----------------------------------------------------------------|-----------------------------
:8000 | POST | /visitor_statistic | vistor/internal/controller.(*cVisitor).VisitorStatistic | middleware.HandlerResponse
----------|--------|--------------------|-----------------------------------------------------------------|-----------------------------
2023-11-17 11:13:18.685 [INFO] pid[24420]: http server started listening on [:8000]
2023-11-17 11:13:18.685 [INFO] {f07287550d449817128f3107e3f9f1aa} swagger ui is serving at address: http://127.0.0.1:8000/swagger/
2023-11-17 11:13:18.685 [INFO] {f07287550d449817128f3107e3f9f1aa} openapi specification is serving at address: http://127.0.0.1:8000/api.json
ADDRESS | METHOD | ROUTE | HANDLER | MIDDLEWARE
----------|--------|--------------------|-----------------------------------------------------------------|-----------------------------
:8000 | ALL | /* | github.com/gogf/gf/v2/net/ghttp.internalMiddlewareServerTracing | GLOBAL MIDDLEWARE
----------|--------|--------------------|-----------------------------------------------------------------|-----------------------------
:8000 | ALL | /api.json | github.com/gogf/gf/v2/net/ghttp.(*Server).openapiSpec |
----------|--------|--------------------|-----------------------------------------------------------------|-----------------------------
:8000 | ALL | /swagger/* | github.com/gogf/gf/v2/net/ghttp.(*Server).swaggerUI | HOOK_BEFORE_SERVE
----------|--------|--------------------|-----------------------------------------------------------------|-----------------------------
:8000 | POST | /visitor_access | vistor/internal/controller.(*cVisitor).VisitorAccess | middleware.HandlerResponse
----------|--------|--------------------|-----------------------------------------------------------------|-----------------------------
:8000 | POST | /visitor_statistic | vistor/internal/controller.(*cVisitor).VisitorStatistic | middleware.HandlerResponse
----------|--------|--------------------|-----------------------------------------------------------------|-----------------------------
2023-11-17 11:13:46.786 [INFO] pid[19196]: http server started listening on [:8000]
2023-11-17 11:13:46.786 [INFO] {f07287550d449817128f3107e3f9f1aa} swagger ui is serving at address: http://127.0.0.1:8000/swagger/
2023-11-17 11:13:46.786 [INFO] {f07287550d449817128f3107e3f9f1aa} openapi specification is serving at address: http://127.0.0.1:8000/api.json
ADDRESS | METHOD | ROUTE | HANDLER | MIDDLEWARE
----------|--------|--------------------|-----------------------------------------------------------------|-----------------------------
:8000 | ALL | /* | github.com/gogf/gf/v2/net/ghttp.internalMiddlewareServerTracing | GLOBAL MIDDLEWARE
----------|--------|--------------------|-----------------------------------------------------------------|-----------------------------
:8000 | ALL | /api.json | github.com/gogf/gf/v2/net/ghttp.(*Server).openapiSpec |
----------|--------|--------------------|-----------------------------------------------------------------|-----------------------------
:8000 | ALL | /swagger/* | github.com/gogf/gf/v2/net/ghttp.(*Server).swaggerUI | HOOK_BEFORE_SERVE
----------|--------|--------------------|-----------------------------------------------------------------|-----------------------------
:8000 | POST | /visitor_access | vistor/internal/controller.(*cVisitor).VisitorAccess | middleware.HandlerResponse
----------|--------|--------------------|-----------------------------------------------------------------|-----------------------------
:8000 | POST | /visitor_statistic | vistor/internal/controller.(*cVisitor).VisitorStatistic | middleware.HandlerResponse
----------|--------|--------------------|-----------------------------------------------------------------|-----------------------------
2023-11-17 11:42:00.861 [INFO] pid[21496]: http server started listening on [:8000]
2023-11-17 11:42:00.861 [INFO] {f07287550d449817128f3107e3f9f1aa} swagger ui is serving at address: http://127.0.0.1:8000/swagger/
2023-11-17 11:42:00.861 [INFO] {f07287550d449817128f3107e3f9f1aa} openapi specification is serving at address: http://127.0.0.1:8000/api.json
ADDRESS | METHOD | ROUTE | HANDLER | MIDDLEWARE
----------|--------|--------------------|-----------------------------------------------------------------|-----------------------------
:8000 | ALL | /* | github.com/gogf/gf/v2/net/ghttp.internalMiddlewareServerTracing | GLOBAL MIDDLEWARE
----------|--------|--------------------|-----------------------------------------------------------------|-----------------------------
:8000 | ALL | /api.json | github.com/gogf/gf/v2/net/ghttp.(*Server).openapiSpec |
----------|--------|--------------------|-----------------------------------------------------------------|-----------------------------
:8000 | ALL | /swagger/* | github.com/gogf/gf/v2/net/ghttp.(*Server).swaggerUI | HOOK_BEFORE_SERVE
----------|--------|--------------------|-----------------------------------------------------------------|-----------------------------
:8000 | POST | /visitor_access | vistor/internal/controller.(*cVisitor).VisitorAccess | middleware.HandlerResponse
----------|--------|--------------------|-----------------------------------------------------------------|-----------------------------
:8000 | POST | /visitor_statistic | vistor/internal/controller.(*cVisitor).VisitorStatistic | middleware.HandlerResponse
----------|--------|--------------------|-----------------------------------------------------------------|-----------------------------
2023-11-17 11:42:30.866 [INFO] pid[6436]: http server started listening on [:8000]
2023-11-17 11:42:30.866 [INFO] {f07287550d449817128f3107e3f9f1aa} swagger ui is serving at address: http://127.0.0.1:8000/swagger/
2023-11-17 11:42:30.866 [INFO] {f07287550d449817128f3107e3f9f1aa} openapi specification is serving at address: http://127.0.0.1:8000/api.json
ADDRESS | METHOD | ROUTE | HANDLER | MIDDLEWARE
----------|--------|--------------------|-----------------------------------------------------------------|-----------------------------
:8000 | ALL | /* | github.com/gogf/gf/v2/net/ghttp.internalMiddlewareServerTracing | GLOBAL MIDDLEWARE
----------|--------|--------------------|-----------------------------------------------------------------|-----------------------------
:8000 | ALL | /api.json | github.com/gogf/gf/v2/net/ghttp.(*Server).openapiSpec |
----------|--------|--------------------|-----------------------------------------------------------------|-----------------------------
:8000 | ALL | /swagger/* | github.com/gogf/gf/v2/net/ghttp.(*Server).swaggerUI | HOOK_BEFORE_SERVE
----------|--------|--------------------|-----------------------------------------------------------------|-----------------------------
:8000 | POST | /visitor_access | vistor/internal/controller.(*cVisitor).VisitorAccess | middleware.HandlerResponse
----------|--------|--------------------|-----------------------------------------------------------------|-----------------------------
:8000 | POST | /visitor_statistic | vistor/internal/controller.(*cVisitor).VisitorStatistic | middleware.HandlerResponse
----------|--------|--------------------|-----------------------------------------------------------------|-----------------------------
2023-11-17 11:44:36.729 [INFO] pid[20624]: http server started listening on [:8000]
2023-11-17 11:44:36.729 [INFO] {f07287550d449817128f3107e3f9f1aa} swagger ui is serving at address: http://127.0.0.1:8000/swagger/
2023-11-17 11:44:36.730 [INFO] {f07287550d449817128f3107e3f9f1aa} openapi specification is serving at address: http://127.0.0.1:8000/api.json
ADDRESS | METHOD | ROUTE | HANDLER | MIDDLEWARE
----------|--------|--------------------|-----------------------------------------------------------------|-----------------------------
:8000 | ALL | /* | github.com/gogf/gf/v2/net/ghttp.internalMiddlewareServerTracing | GLOBAL MIDDLEWARE
----------|--------|--------------------|-----------------------------------------------------------------|-----------------------------
:8000 | ALL | /api.json | github.com/gogf/gf/v2/net/ghttp.(*Server).openapiSpec |
----------|--------|--------------------|-----------------------------------------------------------------|-----------------------------
:8000 | ALL | /swagger/* | github.com/gogf/gf/v2/net/ghttp.(*Server).swaggerUI | HOOK_BEFORE_SERVE
----------|--------|--------------------|-----------------------------------------------------------------|-----------------------------
:8000 | POST | /visitor_access | vistor/internal/controller.(*cVisitor).VisitorAccess | middleware.HandlerResponse
----------|--------|--------------------|-----------------------------------------------------------------|-----------------------------
:8000 | POST | /visitor_statistic | vistor/internal/controller.(*cVisitor).VisitorStatistic | middleware.HandlerResponse
----------|--------|--------------------|-----------------------------------------------------------------|-----------------------------
2023-11-17 11:45:21.513 [INFO] {f07287550d449817128f3107e3f9f1aa} swagger ui is serving at address: http://127.0.0.1:8000/swagger/
2023-11-17 11:45:21.513 [INFO] pid[24548]: http server started listening on [:8000]
2023-11-17 11:45:21.513 [INFO] {f07287550d449817128f3107e3f9f1aa} openapi specification is serving at address: http://127.0.0.1:8000/api.json
ADDRESS | METHOD | ROUTE | HANDLER | MIDDLEWARE
----------|--------|--------------------|-----------------------------------------------------------------|-----------------------------
:8000 | ALL | /* | github.com/gogf/gf/v2/net/ghttp.internalMiddlewareServerTracing | GLOBAL MIDDLEWARE
----------|--------|--------------------|-----------------------------------------------------------------|-----------------------------
:8000 | ALL | /api.json | github.com/gogf/gf/v2/net/ghttp.(*Server).openapiSpec |
----------|--------|--------------------|-----------------------------------------------------------------|-----------------------------
:8000 | ALL | /swagger/* | github.com/gogf/gf/v2/net/ghttp.(*Server).swaggerUI | HOOK_BEFORE_SERVE
----------|--------|--------------------|-----------------------------------------------------------------|-----------------------------
:8000 | POST | /visitor_access | vistor/internal/controller.(*cVisitor).VisitorAccess | middleware.HandlerResponse
----------|--------|--------------------|-----------------------------------------------------------------|-----------------------------
:8000 | POST | /visitor_statistic | vistor/internal/controller.(*cVisitor).VisitorStatistic | middleware.HandlerResponse
----------|--------|--------------------|-----------------------------------------------------------------|-----------------------------
2023-11-17 11:55:29.990 [INFO] pid[16604]: http server started listening on [:8000]
2023-11-17 11:55:29.990 [INFO] {f07287550d449817128f3107e3f9f1aa} swagger ui is serving at address: http://127.0.0.1:8000/swagger/
2023-11-17 11:55:29.990 [INFO] {f07287550d449817128f3107e3f9f1aa} openapi specification is serving at address: http://127.0.0.1:8000/api.json
ADDRESS | METHOD | ROUTE | HANDLER | MIDDLEWARE
----------|--------|--------------------|-----------------------------------------------------------------|-----------------------------
:8000 | ALL | /* | github.com/gogf/gf/v2/net/ghttp.internalMiddlewareServerTracing | GLOBAL MIDDLEWARE
----------|--------|--------------------|-----------------------------------------------------------------|-----------------------------
:8000 | ALL | /api.json | github.com/gogf/gf/v2/net/ghttp.(*Server).openapiSpec |
----------|--------|--------------------|-----------------------------------------------------------------|-----------------------------
:8000 | ALL | /swagger/* | github.com/gogf/gf/v2/net/ghttp.(*Server).swaggerUI | HOOK_BEFORE_SERVE
----------|--------|--------------------|-----------------------------------------------------------------|-----------------------------
:8000 | POST | /visitor_access | vistor/internal/controller.(*cVisitor).VisitorAccess | middleware.HandlerResponse
----------|--------|--------------------|-----------------------------------------------------------------|-----------------------------
:8000 | POST | /visitor_statistic | vistor/internal/controller.(*cVisitor).VisitorStatistic | middleware.HandlerResponse
----------|--------|--------------------|-----------------------------------------------------------------|-----------------------------
2023-11-17 11:56:31.371 [INFO] pid[15644]: http server started listening on [:8000]
2023-11-17 11:56:31.371 [INFO] {f07287550d449817128f3107e3f9f1aa} swagger ui is serving at address: http://127.0.0.1:8000/swagger/
2023-11-17 11:56:31.372 [INFO] {f07287550d449817128f3107e3f9f1aa} openapi specification is serving at address: http://127.0.0.1:8000/api.json
ADDRESS | METHOD | ROUTE | HANDLER | MIDDLEWARE
----------|--------|--------------------|-----------------------------------------------------------------|-----------------------------
:8000 | ALL | /* | github.com/gogf/gf/v2/net/ghttp.internalMiddlewareServerTracing | GLOBAL MIDDLEWARE
----------|--------|--------------------|-----------------------------------------------------------------|-----------------------------
:8000 | ALL | /api.json | github.com/gogf/gf/v2/net/ghttp.(*Server).openapiSpec |
----------|--------|--------------------|-----------------------------------------------------------------|-----------------------------
:8000 | ALL | /swagger/* | github.com/gogf/gf/v2/net/ghttp.(*Server).swaggerUI | HOOK_BEFORE_SERVE
----------|--------|--------------------|-----------------------------------------------------------------|-----------------------------
:8000 | POST | /visitor_access | vistor/internal/controller.(*cVisitor).VisitorAccess | middleware.HandlerResponse
----------|--------|--------------------|-----------------------------------------------------------------|-----------------------------
:8000 | POST | /visitor_statistic | vistor/internal/controller.(*cVisitor).VisitorStatistic | middleware.HandlerResponse
----------|--------|--------------------|-----------------------------------------------------------------|-----------------------------
2023-11-17 11:57:37.300 [INFO] pid[22240]: http server started listening on [:8000]
2023-11-17 11:57:37.300 [INFO] {f07287550d449817128f3107e3f9f1aa} swagger ui is serving at address: http://127.0.0.1:8000/swagger/
2023-11-17 11:57:37.300 [INFO] {f07287550d449817128f3107e3f9f1aa} openapi specification is serving at address: http://127.0.0.1:8000/api.json
ADDRESS | METHOD | ROUTE | HANDLER | MIDDLEWARE
----------|--------|--------------------|-----------------------------------------------------------------|-----------------------------
:8000 | ALL | /* | github.com/gogf/gf/v2/net/ghttp.internalMiddlewareServerTracing | GLOBAL MIDDLEWARE
----------|--------|--------------------|-----------------------------------------------------------------|-----------------------------
:8000 | ALL | /api.json | github.com/gogf/gf/v2/net/ghttp.(*Server).openapiSpec |
----------|--------|--------------------|-----------------------------------------------------------------|-----------------------------
:8000 | ALL | /swagger/* | github.com/gogf/gf/v2/net/ghttp.(*Server).swaggerUI | HOOK_BEFORE_SERVE
----------|--------|--------------------|-----------------------------------------------------------------|-----------------------------
:8000 | POST | /visitor_access | vistor/internal/controller.(*cVisitor).VisitorAccess | middleware.HandlerResponse
----------|--------|--------------------|-----------------------------------------------------------------|-----------------------------
:8000 | POST | /visitor_statistic | vistor/internal/controller.(*cVisitor).VisitorStatistic | middleware.HandlerResponse
----------|--------|--------------------|-----------------------------------------------------------------|-----------------------------
2023-11-17 11:57:49.974 [INFO] pid[7516]: http server started listening on [:8000]
2023-11-17 11:57:49.974 [INFO] {f07287550d449817128f3107e3f9f1aa} swagger ui is serving at address: http://127.0.0.1:8000/swagger/
2023-11-17 11:57:49.974 [INFO] {f07287550d449817128f3107e3f9f1aa} openapi specification is serving at address: http://127.0.0.1:8000/api.json
ADDRESS | METHOD | ROUTE | HANDLER | MIDDLEWARE
----------|--------|--------------------|-----------------------------------------------------------------|-----------------------------
:8000 | ALL | /* | github.com/gogf/gf/v2/net/ghttp.internalMiddlewareServerTracing | GLOBAL MIDDLEWARE
----------|--------|--------------------|-----------------------------------------------------------------|-----------------------------
:8000 | ALL | /api.json | github.com/gogf/gf/v2/net/ghttp.(*Server).openapiSpec |
----------|--------|--------------------|-----------------------------------------------------------------|-----------------------------
:8000 | ALL | /swagger/* | github.com/gogf/gf/v2/net/ghttp.(*Server).swaggerUI | HOOK_BEFORE_SERVE
----------|--------|--------------------|-----------------------------------------------------------------|-----------------------------
:8000 | POST | /visitor_access | vistor/internal/controller.(*cVisitor).VisitorAccess | middleware.HandlerResponse
----------|--------|--------------------|-----------------------------------------------------------------|-----------------------------
:8000 | POST | /visitor_statistic | vistor/internal/controller.(*cVisitor).VisitorStatistic | middleware.HandlerResponse
----------|--------|--------------------|-----------------------------------------------------------------|-----------------------------
2023-11-17 12:15:10.024 [INFO] pid[15380]: http server started listening on [:8000]
2023-11-17 12:15:10.024 [INFO] {f07287550d449817128f3107e3f9f1aa} swagger ui is serving at address: http://127.0.0.1:8000/swagger/
2023-11-17 12:15:10.024 [INFO] {f07287550d449817128f3107e3f9f1aa} openapi specification is serving at address: http://127.0.0.1:8000/api.json
ADDRESS | METHOD | ROUTE | HANDLER | MIDDLEWARE
----------|--------|--------------------|-----------------------------------------------------------------|-----------------------------
:8000 | ALL | /* | github.com/gogf/gf/v2/net/ghttp.internalMiddlewareServerTracing | GLOBAL MIDDLEWARE
----------|--------|--------------------|-----------------------------------------------------------------|-----------------------------
:8000 | ALL | /api.json | github.com/gogf/gf/v2/net/ghttp.(*Server).openapiSpec |
----------|--------|--------------------|-----------------------------------------------------------------|-----------------------------
:8000 | ALL | /swagger/* | github.com/gogf/gf/v2/net/ghttp.(*Server).swaggerUI | HOOK_BEFORE_SERVE
----------|--------|--------------------|-----------------------------------------------------------------|-----------------------------
:8000 | POST | /visitor_access | vistor/internal/controller.(*cVisitor).VisitorAccess | middleware.HandlerResponse
----------|--------|--------------------|-----------------------------------------------------------------|-----------------------------
:8000 | POST | /visitor_statistic | vistor/internal/controller.(*cVisitor).VisitorStatistic | middleware.HandlerResponse
----------|--------|--------------------|-----------------------------------------------------------------|-----------------------------
2023-11-17 12:15:40.561 [INFO] pid[2636]: http server started listening on [:8000]
2023-11-17 12:15:40.561 [INFO] {f07287550d449817128f3107e3f9f1aa} swagger ui is serving at address: http://127.0.0.1:8000/swagger/
2023-11-17 12:15:40.561 [INFO] {f07287550d449817128f3107e3f9f1aa} openapi specification is serving at address: http://127.0.0.1:8000/api.json
ADDRESS | METHOD | ROUTE | HANDLER | MIDDLEWARE
----------|--------|--------------------|-----------------------------------------------------------------|-----------------------------
:8000 | ALL | /* | github.com/gogf/gf/v2/net/ghttp.internalMiddlewareServerTracing | GLOBAL MIDDLEWARE
----------|--------|--------------------|-----------------------------------------------------------------|-----------------------------
:8000 | ALL | /api.json | github.com/gogf/gf/v2/net/ghttp.(*Server).openapiSpec |
----------|--------|--------------------|-----------------------------------------------------------------|-----------------------------
:8000 | ALL | /swagger/* | github.com/gogf/gf/v2/net/ghttp.(*Server).swaggerUI | HOOK_BEFORE_SERVE
----------|--------|--------------------|-----------------------------------------------------------------|-----------------------------
:8000 | POST | /visitor_access | vistor/internal/controller.(*cVisitor).VisitorAccess | middleware.HandlerResponse
----------|--------|--------------------|-----------------------------------------------------------------|-----------------------------
:8000 | POST | /visitor_statistic | vistor/internal/controller.(*cVisitor).VisitorStatistic | middleware.HandlerResponse
----------|--------|--------------------|-----------------------------------------------------------------|-----------------------------
2023-11-17 12:19:46.369 [INFO] pid[19932]: http server started listening on [:8000]
2023-11-17 12:19:46.369 [INFO] {f07287550d449817128f3107e3f9f1aa} swagger ui is serving at address: http://127.0.0.1:8000/swagger/
2023-11-17 12:19:46.370 [INFO] {f07287550d449817128f3107e3f9f1aa} openapi specification is serving at address: http://127.0.0.1:8000/api.json
ADDRESS | METHOD | ROUTE | HANDLER | MIDDLEWARE
----------|--------|--------------------|-----------------------------------------------------------------|-----------------------------
:8000 | ALL | /* | github.com/gogf/gf/v2/net/ghttp.internalMiddlewareServerTracing | GLOBAL MIDDLEWARE
----------|--------|--------------------|-----------------------------------------------------------------|-----------------------------
:8000 | ALL | /api.json | github.com/gogf/gf/v2/net/ghttp.(*Server).openapiSpec |
----------|--------|--------------------|-----------------------------------------------------------------|-----------------------------
:8000 | ALL | /swagger/* | github.com/gogf/gf/v2/net/ghttp.(*Server).swaggerUI | HOOK_BEFORE_SERVE
----------|--------|--------------------|-----------------------------------------------------------------|-----------------------------
:8000 | POST | /visitor_access | vistor/internal/controller.(*cVisitor).VisitorAccess | middleware.HandlerResponse
----------|--------|--------------------|-----------------------------------------------------------------|-----------------------------
:8000 | POST | /visitor_statistic | vistor/internal/controller.(*cVisitor).VisitorStatistic | middleware.HandlerResponse
----------|--------|--------------------|-----------------------------------------------------------------|-----------------------------
2023-11-17 13:18:09.379 [INFO] pid[22468]: http server started listening on [:8000]
2023-11-17 13:18:09.379 [INFO] {f07287550d449817128f3107e3f9f1aa} swagger ui is serving at address: http://127.0.0.1:8000/swagger/
2023-11-17 13:18:09.380 [INFO] {f07287550d449817128f3107e3f9f1aa} openapi specification is serving at address: http://127.0.0.1:8000/api.json
ADDRESS | METHOD | ROUTE | HANDLER | MIDDLEWARE
----------|--------|--------------------|-----------------------------------------------------------------|-----------------------------
:8000 | ALL | /* | github.com/gogf/gf/v2/net/ghttp.internalMiddlewareServerTracing | GLOBAL MIDDLEWARE
----------|--------|--------------------|-----------------------------------------------------------------|-----------------------------
:8000 | ALL | /api.json | github.com/gogf/gf/v2/net/ghttp.(*Server).openapiSpec |
----------|--------|--------------------|-----------------------------------------------------------------|-----------------------------
:8000 | ALL | /swagger/* | github.com/gogf/gf/v2/net/ghttp.(*Server).swaggerUI | HOOK_BEFORE_SERVE
----------|--------|--------------------|-----------------------------------------------------------------|-----------------------------
:8000 | POST | /visitor_access | vistor/internal/controller.(*cVisitor).VisitorAccess | middleware.HandlerResponse
----------|--------|--------------------|-----------------------------------------------------------------|-----------------------------
:8000 | POST | /visitor_statistic | vistor/internal/controller.(*cVisitor).VisitorStatistic | middleware.HandlerResponse
----------|--------|--------------------|-----------------------------------------------------------------|-----------------------------
2023-11-17 15:29:37.671 [INFO] pid[23384]: http server started listening on [:8000]
2023-11-17 15:29:37.671 [INFO] {f07287550d449817128f3107e3f9f1aa} swagger ui is serving at address: http://127.0.0.1:8000/swagger/
2023-11-17 15:29:37.671 [INFO] {f07287550d449817128f3107e3f9f1aa} openapi specification is serving at address: http://127.0.0.1:8000/api.json
ADDRESS | METHOD | ROUTE | HANDLER | MIDDLEWARE
----------|--------|--------------------|-----------------------------------------------------------------|-----------------------------
:8000 | ALL | /* | github.com/gogf/gf/v2/net/ghttp.internalMiddlewareServerTracing | GLOBAL MIDDLEWARE
----------|--------|--------------------|-----------------------------------------------------------------|-----------------------------
:8000 | ALL | /api.json | github.com/gogf/gf/v2/net/ghttp.(*Server).openapiSpec |
----------|--------|--------------------|-----------------------------------------------------------------|-----------------------------
:8000 | ALL | /swagger/* | github.com/gogf/gf/v2/net/ghttp.(*Server).swaggerUI | HOOK_BEFORE_SERVE
----------|--------|--------------------|-----------------------------------------------------------------|-----------------------------
:8000 | POST | /visitor_access | vistor/internal/controller.(*cVisitor).VisitorAccess | middleware.HandlerResponse
----------|--------|--------------------|-----------------------------------------------------------------|-----------------------------
:8000 | POST | /visitor_statistic | vistor/internal/controller.(*cVisitor).VisitorStatistic | middleware.HandlerResponse
----------|--------|--------------------|-----------------------------------------------------------------|-----------------------------
2023-11-17 15:37:52.595 [INFO] pid[20048]: http server started listening on [:8000]
2023-11-17 15:37:52.595 [INFO] {f07287550d449817128f3107e3f9f1aa} swagger ui is serving at address: http://127.0.0.1:8000/swagger/
2023-11-17 15:37:52.595 [INFO] {f07287550d449817128f3107e3f9f1aa} openapi specification is serving at address: http://127.0.0.1:8000/api.json
ADDRESS | METHOD | ROUTE | HANDLER | MIDDLEWARE
----------|--------|--------------------|-----------------------------------------------------------------|-----------------------------
:8000 | ALL | /* | github.com/gogf/gf/v2/net/ghttp.internalMiddlewareServerTracing | GLOBAL MIDDLEWARE
----------|--------|--------------------|-----------------------------------------------------------------|-----------------------------
:8000 | ALL | /api.json | github.com/gogf/gf/v2/net/ghttp.(*Server).openapiSpec |
----------|--------|--------------------|-----------------------------------------------------------------|-----------------------------
:8000 | ALL | /swagger/* | github.com/gogf/gf/v2/net/ghttp.(*Server).swaggerUI | HOOK_BEFORE_SERVE
----------|--------|--------------------|-----------------------------------------------------------------|-----------------------------
:8000 | POST | /visitor_access | vistor/internal/controller.(*cVisitor).VisitorAccess | middleware.HandlerResponse
----------|--------|--------------------|-----------------------------------------------------------------|-----------------------------
:8000 | POST | /visitor_statistic | vistor/internal/controller.(*cVisitor).VisitorStatistic | middleware.HandlerResponse
----------|--------|--------------------|-----------------------------------------------------------------|-----------------------------
2023-11-17 15:40:14.970 [INFO] pid[24684]: http server started listening on [:8000]
2023-11-17 15:40:14.970 [INFO] {f07287550d449817128f3107e3f9f1aa} swagger ui is serving at address: http://127.0.0.1:8000/swagger/
2023-11-17 15:40:14.970 [INFO] {f07287550d449817128f3107e3f9f1aa} openapi specification is serving at address: http://127.0.0.1:8000/api.json
ADDRESS | METHOD | ROUTE | HANDLER | MIDDLEWARE
----------|--------|--------------------|-----------------------------------------------------------------|-----------------------------
:8000 | ALL | /* | github.com/gogf/gf/v2/net/ghttp.internalMiddlewareServerTracing | GLOBAL MIDDLEWARE
----------|--------|--------------------|-----------------------------------------------------------------|-----------------------------
:8000 | ALL | /api.json | github.com/gogf/gf/v2/net/ghttp.(*Server).openapiSpec |
----------|--------|--------------------|-----------------------------------------------------------------|-----------------------------
:8000 | ALL | /swagger/* | github.com/gogf/gf/v2/net/ghttp.(*Server).swaggerUI | HOOK_BEFORE_SERVE
----------|--------|--------------------|-----------------------------------------------------------------|-----------------------------
:8000 | POST | /visitor_access | vistor/internal/controller.(*cVisitor).VisitorAccess | middleware.HandlerResponse
----------|--------|--------------------|-----------------------------------------------------------------|-----------------------------
:8000 | POST | /visitor_statistic | vistor/internal/controller.(*cVisitor).VisitorStatistic | middleware.HandlerResponse
----------|--------|--------------------|-----------------------------------------------------------------|-----------------------------
2023-11-17 16:03:40.620 [INFO] pid[11448]: http server started listening on [:8000]
2023-11-17 16:03:40.620 [INFO] {f07287550d449817128f3107e3f9f1aa} swagger ui is serving at address: http://127.0.0.1:8000/swagger/
2023-11-17 16:03:40.621 [INFO] {f07287550d449817128f3107e3f9f1aa} openapi specification is serving at address: http://127.0.0.1:8000/api.json
ADDRESS | METHOD | ROUTE | HANDLER | MIDDLEWARE
----------|--------|--------------------|-----------------------------------------------------------------|-----------------------------
:8000 | ALL | /* | github.com/gogf/gf/v2/net/ghttp.internalMiddlewareServerTracing | GLOBAL MIDDLEWARE
----------|--------|--------------------|-----------------------------------------------------------------|-----------------------------
:8000 | ALL | /api.json | github.com/gogf/gf/v2/net/ghttp.(*Server).openapiSpec |
----------|--------|--------------------|-----------------------------------------------------------------|-----------------------------
:8000 | ALL | /swagger/* | github.com/gogf/gf/v2/net/ghttp.(*Server).swaggerUI | HOOK_BEFORE_SERVE
----------|--------|--------------------|-----------------------------------------------------------------|-----------------------------
:8000 | POST | /visitor_access | vistor/internal/controller.(*cVisitor).VisitorAccess | middleware.HandlerResponse
----------|--------|--------------------|-----------------------------------------------------------------|-----------------------------
:8000 | POST | /visitor_statistic | vistor/internal/controller.(*cVisitor).VisitorStatistic | middleware.HandlerResponse
----------|--------|--------------------|-----------------------------------------------------------------|-----------------------------
2023-11-17 17:49:58.113 [INFO] pid[25516]: http server started listening on [:8000]
2023-11-17 17:49:58.113 [INFO] {f07287550d449817128f3107e3f9f1aa} swagger ui is serving at address: http://127.0.0.1:8000/swagger/
2023-11-17 17:49:58.114 [INFO] {f07287550d449817128f3107e3f9f1aa} openapi specification is serving at address: http://127.0.0.1:8000/api.json
ADDRESS | METHOD | ROUTE | HANDLER | MIDDLEWARE
----------|--------|--------------------|-----------------------------------------------------------------|-----------------------------
:8000 | ALL | /* | github.com/gogf/gf/v2/net/ghttp.internalMiddlewareServerTracing | GLOBAL MIDDLEWARE
----------|--------|--------------------|-----------------------------------------------------------------|-----------------------------
:8000 | ALL | /api.json | github.com/gogf/gf/v2/net/ghttp.(*Server).openapiSpec |
----------|--------|--------------------|-----------------------------------------------------------------|-----------------------------
:8000 | ALL | /swagger/* | github.com/gogf/gf/v2/net/ghttp.(*Server).swaggerUI | HOOK_BEFORE_SERVE
----------|--------|--------------------|-----------------------------------------------------------------|-----------------------------
:8000 | POST | /visitor_access | vistor/internal/controller.(*cVisitor).VisitorAccess | middleware.HandlerResponse
----------|--------|--------------------|-----------------------------------------------------------------|-----------------------------
:8000 | POST | /visitor_statistic | vistor/internal/controller.(*cVisitor).VisitorStatistic | middleware.HandlerResponse
----------|--------|--------------------|-----------------------------------------------------------------|-----------------------------
2023-11-17 17:50:43.731 [INFO] pid[19784]: http server started listening on [:8000]
2023-11-17 17:50:43.731 [INFO] {f07287550d449817128f3107e3f9f1aa} swagger ui is serving at address: http://127.0.0.1:8000/swagger/
2023-11-17 17:50:43.731 [INFO] {f07287550d449817128f3107e3f9f1aa} openapi specification is serving at address: http://127.0.0.1:8000/api.json
ADDRESS | METHOD | ROUTE | HANDLER | MIDDLEWARE
----------|--------|--------------------|-----------------------------------------------------------------|-----------------------------
:8000 | ALL | /* | github.com/gogf/gf/v2/net/ghttp.internalMiddlewareServerTracing | GLOBAL MIDDLEWARE
----------|--------|--------------------|-----------------------------------------------------------------|-----------------------------
:8000 | ALL | /api.json | github.com/gogf/gf/v2/net/ghttp.(*Server).openapiSpec |
----------|--------|--------------------|-----------------------------------------------------------------|-----------------------------
:8000 | ALL | /swagger/* | github.com/gogf/gf/v2/net/ghttp.(*Server).swaggerUI | HOOK_BEFORE_SERVE
----------|--------|--------------------|-----------------------------------------------------------------|-----------------------------
:8000 | POST | /visitor_access | vistor/internal/controller.(*cVisitor).VisitorAccess | middleware.HandlerResponse
----------|--------|--------------------|-----------------------------------------------------------------|-----------------------------
:8000 | POST | /visitor_statistic | vistor/internal/controller.(*cVisitor).VisitorStatistic | middleware.HandlerResponse
----------|--------|--------------------|-----------------------------------------------------------------|-----------------------------

@ -0,0 +1,697 @@
2023-11-18 09:56:54.746 [INFO] pid[14044]: http server started listening on [:8000]
2023-11-18 09:56:54.746 [INFO] {f07287550d449817128f3107e3f9f1aa} swagger ui is serving at address: http://127.0.0.1:8000/swagger/
2023-11-18 09:56:54.746 [INFO] {f07287550d449817128f3107e3f9f1aa} openapi specification is serving at address: http://127.0.0.1:8000/api.json
ADDRESS | METHOD | ROUTE | HANDLER | MIDDLEWARE
----------|--------|--------------------|-----------------------------------------------------------------|-----------------------------
:8000 | ALL | /* | github.com/gogf/gf/v2/net/ghttp.internalMiddlewareServerTracing | GLOBAL MIDDLEWARE
----------|--------|--------------------|-----------------------------------------------------------------|-----------------------------
:8000 | ALL | /api.json | github.com/gogf/gf/v2/net/ghttp.(*Server).openapiSpec |
----------|--------|--------------------|-----------------------------------------------------------------|-----------------------------
:8000 | ALL | /swagger/* | github.com/gogf/gf/v2/net/ghttp.(*Server).swaggerUI | HOOK_BEFORE_SERVE
----------|--------|--------------------|-----------------------------------------------------------------|-----------------------------
:8000 | POST | /visitor_access | vistor/internal/controller.(*cVisitor).VisitorAccess | middleware.HandlerResponse
----------|--------|--------------------|-----------------------------------------------------------------|-----------------------------
:8000 | POST | /visitor_statistic | vistor/internal/controller.(*cVisitor).VisitorStatistic | middleware.HandlerResponse
----------|--------|--------------------|-----------------------------------------------------------------|-----------------------------
2023-11-18 09:57:54.919 [INFO] pid[25128]: http server started listening on [:8000]
2023-11-18 09:57:54.919 [INFO] {f07287550d449817128f3107e3f9f1aa} swagger ui is serving at address: http://127.0.0.1:8000/swagger/
2023-11-18 09:57:54.919 [INFO] {f07287550d449817128f3107e3f9f1aa} openapi specification is serving at address: http://127.0.0.1:8000/api.json
ADDRESS | METHOD | ROUTE | HANDLER | MIDDLEWARE
----------|--------|--------------------|-----------------------------------------------------------------|-----------------------------
:8000 | ALL | /* | github.com/gogf/gf/v2/net/ghttp.internalMiddlewareServerTracing | GLOBAL MIDDLEWARE
----------|--------|--------------------|-----------------------------------------------------------------|-----------------------------
:8000 | ALL | /api.json | github.com/gogf/gf/v2/net/ghttp.(*Server).openapiSpec |
----------|--------|--------------------|-----------------------------------------------------------------|-----------------------------
:8000 | ALL | /swagger/* | github.com/gogf/gf/v2/net/ghttp.(*Server).swaggerUI | HOOK_BEFORE_SERVE
----------|--------|--------------------|-----------------------------------------------------------------|-----------------------------
:8000 | POST | /visitor_access | vistor/internal/controller.(*cVisitor).VisitorAccess | middleware.HandlerResponse
----------|--------|--------------------|-----------------------------------------------------------------|-----------------------------
:8000 | POST | /visitor_statistic | vistor/internal/controller.(*cVisitor).VisitorStatistic | middleware.HandlerResponse
----------|--------|--------------------|-----------------------------------------------------------------|-----------------------------
2023-11-18 09:59:01.616 [INFO] pid[7816]: http server started listening on [:8000]
2023-11-18 09:59:01.616 [INFO] {f07287550d449817128f3107e3f9f1aa} swagger ui is serving at address: http://127.0.0.1:8000/swagger/
2023-11-18 09:59:01.616 [INFO] {f07287550d449817128f3107e3f9f1aa} openapi specification is serving at address: http://127.0.0.1:8000/api.json
ADDRESS | METHOD | ROUTE | HANDLER | MIDDLEWARE
----------|--------|--------------------|-----------------------------------------------------------------|-----------------------------
:8000 | ALL | /* | github.com/gogf/gf/v2/net/ghttp.internalMiddlewareServerTracing | GLOBAL MIDDLEWARE
----------|--------|--------------------|-----------------------------------------------------------------|-----------------------------
:8000 | ALL | /api.json | github.com/gogf/gf/v2/net/ghttp.(*Server).openapiSpec |
----------|--------|--------------------|-----------------------------------------------------------------|-----------------------------
:8000 | ALL | /swagger/* | github.com/gogf/gf/v2/net/ghttp.(*Server).swaggerUI | HOOK_BEFORE_SERVE
----------|--------|--------------------|-----------------------------------------------------------------|-----------------------------
:8000 | POST | /visitor_access | vistor/internal/controller.(*cVisitor).VisitorAccess | middleware.HandlerResponse
----------|--------|--------------------|-----------------------------------------------------------------|-----------------------------
:8000 | POST | /visitor_statistic | vistor/internal/controller.(*cVisitor).VisitorStatistic | middleware.HandlerResponse
----------|--------|--------------------|-----------------------------------------------------------------|-----------------------------
2023-11-18 10:13:49.957 [INFO] pid[2416]: http server started listening on [:8000]
2023-11-18 10:13:49.957 [INFO] {f07287550d449817128f3107e3f9f1aa} swagger ui is serving at address: http://127.0.0.1:8000/swagger/
2023-11-18 10:13:49.957 [INFO] {f07287550d449817128f3107e3f9f1aa} openapi specification is serving at address: http://127.0.0.1:8000/api.json
ADDRESS | METHOD | ROUTE | HANDLER | MIDDLEWARE
----------|--------|--------------------|-----------------------------------------------------------------|-----------------------------
:8000 | ALL | /* | github.com/gogf/gf/v2/net/ghttp.internalMiddlewareServerTracing | GLOBAL MIDDLEWARE
----------|--------|--------------------|-----------------------------------------------------------------|-----------------------------
:8000 | ALL | /api.json | github.com/gogf/gf/v2/net/ghttp.(*Server).openapiSpec |
----------|--------|--------------------|-----------------------------------------------------------------|-----------------------------
:8000 | ALL | /swagger/* | github.com/gogf/gf/v2/net/ghttp.(*Server).swaggerUI | HOOK_BEFORE_SERVE
----------|--------|--------------------|-----------------------------------------------------------------|-----------------------------
:8000 | POST | /visitor_access | vistor/internal/controller.(*cVisitor).VisitorAccess | middleware.HandlerResponse
----------|--------|--------------------|-----------------------------------------------------------------|-----------------------------
:8000 | POST | /visitor_statistic | vistor/internal/controller.(*cVisitor).VisitorStatistic | middleware.HandlerResponse
----------|--------|--------------------|-----------------------------------------------------------------|-----------------------------
2023-11-18 10:17:56.696 [INFO] pid[20260]: http server started listening on [:8000]
2023-11-18 10:17:56.696 [INFO] {f07287550d449817128f3107e3f9f1aa} swagger ui is serving at address: http://127.0.0.1:8000/swagger/
2023-11-18 10:17:56.696 [INFO] {f07287550d449817128f3107e3f9f1aa} openapi specification is serving at address: http://127.0.0.1:8000/api.json
ADDRESS | METHOD | ROUTE | HANDLER | MIDDLEWARE
----------|--------|--------------------|-----------------------------------------------------------------|-----------------------------
:8000 | ALL | /* | github.com/gogf/gf/v2/net/ghttp.internalMiddlewareServerTracing | GLOBAL MIDDLEWARE
----------|--------|--------------------|-----------------------------------------------------------------|-----------------------------
:8000 | ALL | /api.json | github.com/gogf/gf/v2/net/ghttp.(*Server).openapiSpec |
----------|--------|--------------------|-----------------------------------------------------------------|-----------------------------
:8000 | ALL | /swagger/* | github.com/gogf/gf/v2/net/ghttp.(*Server).swaggerUI | HOOK_BEFORE_SERVE
----------|--------|--------------------|-----------------------------------------------------------------|-----------------------------
:8000 | POST | /visitor_access | vistor/internal/controller.(*cVisitor).VisitorAccess | middleware.HandlerResponse
----------|--------|--------------------|-----------------------------------------------------------------|-----------------------------
:8000 | POST | /visitor_statistic | vistor/internal/controller.(*cVisitor).VisitorStatistic | middleware.HandlerResponse
----------|--------|--------------------|-----------------------------------------------------------------|-----------------------------
2023-11-18 10:40:44.673 [INFO] pid[14308]: http server started listening on [:8000]
2023-11-18 10:40:44.673 [INFO] {f07287550d449817128f3107e3f9f1aa} swagger ui is serving at address: http://127.0.0.1:8000/swagger/
2023-11-18 10:40:44.673 [INFO] {f07287550d449817128f3107e3f9f1aa} openapi specification is serving at address: http://127.0.0.1:8000/api.json
ADDRESS | METHOD | ROUTE | HANDLER | MIDDLEWARE
----------|--------|--------------------|-----------------------------------------------------------------|-----------------------------
:8000 | ALL | /* | github.com/gogf/gf/v2/net/ghttp.internalMiddlewareServerTracing | GLOBAL MIDDLEWARE
----------|--------|--------------------|-----------------------------------------------------------------|-----------------------------
:8000 | ALL | /api.json | github.com/gogf/gf/v2/net/ghttp.(*Server).openapiSpec |
----------|--------|--------------------|-----------------------------------------------------------------|-----------------------------
:8000 | ALL | /swagger/* | github.com/gogf/gf/v2/net/ghttp.(*Server).swaggerUI | HOOK_BEFORE_SERVE
----------|--------|--------------------|-----------------------------------------------------------------|-----------------------------
:8000 | POST | /visitor_access | vistor/internal/controller.(*cVisitor).VisitorAccess | middleware.HandlerResponse
----------|--------|--------------------|-----------------------------------------------------------------|-----------------------------
:8000 | POST | /visitor_statistic | vistor/internal/controller.(*cVisitor).VisitorStatistic | middleware.HandlerResponse
----------|--------|--------------------|-----------------------------------------------------------------|-----------------------------
2023-11-18 11:02:44.484 [INFO] pid[24648]: http server started listening on [:8000]
2023-11-18 11:02:44.484 [INFO] {f07287550d449817128f3107e3f9f1aa} swagger ui is serving at address: http://127.0.0.1:8000/swagger/
2023-11-18 11:02:44.485 [INFO] {f07287550d449817128f3107e3f9f1aa} openapi specification is serving at address: http://127.0.0.1:8000/api.json
ADDRESS | METHOD | ROUTE | HANDLER | MIDDLEWARE
----------|--------|--------------------|-----------------------------------------------------------------|-----------------------------
:8000 | ALL | /* | github.com/gogf/gf/v2/net/ghttp.internalMiddlewareServerTracing | GLOBAL MIDDLEWARE
----------|--------|--------------------|-----------------------------------------------------------------|-----------------------------
:8000 | ALL | /api.json | github.com/gogf/gf/v2/net/ghttp.(*Server).openapiSpec |
----------|--------|--------------------|-----------------------------------------------------------------|-----------------------------
:8000 | ALL | /swagger/* | github.com/gogf/gf/v2/net/ghttp.(*Server).swaggerUI | HOOK_BEFORE_SERVE
----------|--------|--------------------|-----------------------------------------------------------------|-----------------------------
:8000 | POST | /visitor_access | vistor/internal/controller.(*cVisitor).VisitorAccess | middleware.HandlerResponse
----------|--------|--------------------|-----------------------------------------------------------------|-----------------------------
:8000 | POST | /visitor_statistic | vistor/internal/controller.(*cVisitor).VisitorStatistic | middleware.HandlerResponse
----------|--------|--------------------|-----------------------------------------------------------------|-----------------------------
2023-11-18 11:16:52.441 [INFO] pid[19804]: http server started listening on [:8000]
2023-11-18 11:16:52.441 [INFO] {f07287550d449817128f3107e3f9f1aa} swagger ui is serving at address: http://127.0.0.1:8000/swagger/
2023-11-18 11:16:52.441 [INFO] {f07287550d449817128f3107e3f9f1aa} openapi specification is serving at address: http://127.0.0.1:8000/api.json
ADDRESS | METHOD | ROUTE | HANDLER | MIDDLEWARE
----------|--------|--------------------|-----------------------------------------------------------------|-----------------------------
:8000 | ALL | /* | github.com/gogf/gf/v2/net/ghttp.internalMiddlewareServerTracing | GLOBAL MIDDLEWARE
----------|--------|--------------------|-----------------------------------------------------------------|-----------------------------
:8000 | ALL | /api.json | github.com/gogf/gf/v2/net/ghttp.(*Server).openapiSpec |
----------|--------|--------------------|-----------------------------------------------------------------|-----------------------------
:8000 | ALL | /swagger/* | github.com/gogf/gf/v2/net/ghttp.(*Server).swaggerUI | HOOK_BEFORE_SERVE
----------|--------|--------------------|-----------------------------------------------------------------|-----------------------------
:8000 | POST | /visitor_access | vistor/internal/controller.(*cVisitor).VisitorAccess | middleware.HandlerResponse
----------|--------|--------------------|-----------------------------------------------------------------|-----------------------------
:8000 | POST | /visitor_statistic | vistor/internal/controller.(*cVisitor).VisitorStatistic | middleware.HandlerResponse
----------|--------|--------------------|-----------------------------------------------------------------|-----------------------------
2023-11-18 14:51:07.955 [INFO] pid[21300]: http server started listening on [:8000]
2023-11-18 14:51:07.955 [INFO] {f07287550d449817128f3107e3f9f1aa} swagger ui is serving at address: http://127.0.0.1:8000/swagger/
2023-11-18 14:51:07.956 [INFO] {f07287550d449817128f3107e3f9f1aa} openapi specification is serving at address: http://127.0.0.1:8000/api.json
ADDRESS | METHOD | ROUTE | HANDLER | MIDDLEWARE
----------|--------|--------------------|-----------------------------------------------------------------|-----------------------------
:8000 | ALL | /* | github.com/gogf/gf/v2/net/ghttp.internalMiddlewareServerTracing | GLOBAL MIDDLEWARE
----------|--------|--------------------|-----------------------------------------------------------------|-----------------------------
:8000 | ALL | /api.json | github.com/gogf/gf/v2/net/ghttp.(*Server).openapiSpec |
----------|--------|--------------------|-----------------------------------------------------------------|-----------------------------
:8000 | ALL | /swagger/* | github.com/gogf/gf/v2/net/ghttp.(*Server).swaggerUI | HOOK_BEFORE_SERVE
----------|--------|--------------------|-----------------------------------------------------------------|-----------------------------
:8000 | POST | /visitor_access | vistor/internal/controller.(*cVisitor).VisitorAccess | middleware.HandlerResponse
----------|--------|--------------------|-----------------------------------------------------------------|-----------------------------
:8000 | POST | /visitor_statistic | vistor/internal/controller.(*cVisitor).VisitorStatistic | middleware.HandlerResponse
----------|--------|--------------------|-----------------------------------------------------------------|-----------------------------
2023-11-18 14:52:40.200 [INFO] pid[23636]: http server started listening on [:8000]
2023-11-18 14:52:40.200 [INFO] {f07287550d449817128f3107e3f9f1aa} swagger ui is serving at address: http://127.0.0.1:8000/swagger/
2023-11-18 14:52:40.200 [INFO] {f07287550d449817128f3107e3f9f1aa} openapi specification is serving at address: http://127.0.0.1:8000/api.json
ADDRESS | METHOD | ROUTE | HANDLER | MIDDLEWARE
----------|--------|--------------------|-----------------------------------------------------------------|-----------------------------
:8000 | ALL | /* | github.com/gogf/gf/v2/net/ghttp.internalMiddlewareServerTracing | GLOBAL MIDDLEWARE
----------|--------|--------------------|-----------------------------------------------------------------|-----------------------------
:8000 | ALL | /api.json | github.com/gogf/gf/v2/net/ghttp.(*Server).openapiSpec |
----------|--------|--------------------|-----------------------------------------------------------------|-----------------------------
:8000 | ALL | /swagger/* | github.com/gogf/gf/v2/net/ghttp.(*Server).swaggerUI | HOOK_BEFORE_SERVE
----------|--------|--------------------|-----------------------------------------------------------------|-----------------------------
:8000 | POST | /visitor_access | vistor/internal/controller.(*cVisitor).VisitorAccess | middleware.HandlerResponse
----------|--------|--------------------|-----------------------------------------------------------------|-----------------------------
:8000 | POST | /visitor_statistic | vistor/internal/controller.(*cVisitor).VisitorStatistic | middleware.HandlerResponse
----------|--------|--------------------|-----------------------------------------------------------------|-----------------------------
2023-11-18 14:55:19.372 [INFO] pid[6808]: http server started listening on [:8000]
2023-11-18 14:55:19.372 [INFO] {f07287550d449817128f3107e3f9f1aa} swagger ui is serving at address: http://127.0.0.1:8000/swagger/
2023-11-18 14:55:19.372 [INFO] {f07287550d449817128f3107e3f9f1aa} openapi specification is serving at address: http://127.0.0.1:8000/api.json
ADDRESS | METHOD | ROUTE | HANDLER | MIDDLEWARE
----------|--------|--------------------|-----------------------------------------------------------------|-----------------------------
:8000 | ALL | /* | github.com/gogf/gf/v2/net/ghttp.internalMiddlewareServerTracing | GLOBAL MIDDLEWARE
----------|--------|--------------------|-----------------------------------------------------------------|-----------------------------
:8000 | ALL | /api.json | github.com/gogf/gf/v2/net/ghttp.(*Server).openapiSpec |
----------|--------|--------------------|-----------------------------------------------------------------|-----------------------------
:8000 | ALL | /swagger/* | github.com/gogf/gf/v2/net/ghttp.(*Server).swaggerUI | HOOK_BEFORE_SERVE
----------|--------|--------------------|-----------------------------------------------------------------|-----------------------------
:8000 | POST | /visitor_access | vistor/internal/controller.(*cVisitor).VisitorAccess | middleware.HandlerResponse
----------|--------|--------------------|-----------------------------------------------------------------|-----------------------------
:8000 | POST | /visitor_statistic | vistor/internal/controller.(*cVisitor).VisitorStatistic | middleware.HandlerResponse
----------|--------|--------------------|-----------------------------------------------------------------|-----------------------------
2023-11-18 14:57:19.279 [INFO] pid[23416]: http server started listening on [:8000]
2023-11-18 14:57:19.279 [INFO] {f07287550d449817128f3107e3f9f1aa} swagger ui is serving at address: http://127.0.0.1:8000/swagger/
2023-11-18 14:57:19.279 [INFO] {f07287550d449817128f3107e3f9f1aa} openapi specification is serving at address: http://127.0.0.1:8000/api.json
ADDRESS | METHOD | ROUTE | HANDLER | MIDDLEWARE
----------|--------|--------------------|-----------------------------------------------------------------|-----------------------------
:8000 | ALL | /* | github.com/gogf/gf/v2/net/ghttp.internalMiddlewareServerTracing | GLOBAL MIDDLEWARE
----------|--------|--------------------|-----------------------------------------------------------------|-----------------------------
:8000 | ALL | /api.json | github.com/gogf/gf/v2/net/ghttp.(*Server).openapiSpec |
----------|--------|--------------------|-----------------------------------------------------------------|-----------------------------
:8000 | ALL | /swagger/* | github.com/gogf/gf/v2/net/ghttp.(*Server).swaggerUI | HOOK_BEFORE_SERVE
----------|--------|--------------------|-----------------------------------------------------------------|-----------------------------
:8000 | POST | /visitor_access | vistor/internal/controller.(*cVisitor).VisitorAccess | middleware.HandlerResponse
----------|--------|--------------------|-----------------------------------------------------------------|-----------------------------
:8000 | POST | /visitor_statistic | vistor/internal/controller.(*cVisitor).VisitorStatistic | middleware.HandlerResponse
----------|--------|--------------------|-----------------------------------------------------------------|-----------------------------
2023-11-18 14:58:29.751 [INFO] pid[24864]: http server started listening on [:8000]
2023-11-18 14:58:29.751 [INFO] {f07287550d449817128f3107e3f9f1aa} swagger ui is serving at address: http://127.0.0.1:8000/swagger/
2023-11-18 14:58:29.752 [INFO] {f07287550d449817128f3107e3f9f1aa} openapi specification is serving at address: http://127.0.0.1:8000/api.json
ADDRESS | METHOD | ROUTE | HANDLER | MIDDLEWARE
----------|--------|--------------------|-----------------------------------------------------------------|-----------------------------
:8000 | ALL | /* | github.com/gogf/gf/v2/net/ghttp.internalMiddlewareServerTracing | GLOBAL MIDDLEWARE
----------|--------|--------------------|-----------------------------------------------------------------|-----------------------------
:8000 | ALL | /api.json | github.com/gogf/gf/v2/net/ghttp.(*Server).openapiSpec |
----------|--------|--------------------|-----------------------------------------------------------------|-----------------------------
:8000 | ALL | /swagger/* | github.com/gogf/gf/v2/net/ghttp.(*Server).swaggerUI | HOOK_BEFORE_SERVE
----------|--------|--------------------|-----------------------------------------------------------------|-----------------------------
:8000 | POST | /visitor_access | vistor/internal/controller.(*cVisitor).VisitorAccess | middleware.HandlerResponse
----------|--------|--------------------|-----------------------------------------------------------------|-----------------------------
:8000 | POST | /visitor_statistic | vistor/internal/controller.(*cVisitor).VisitorStatistic | middleware.HandlerResponse
----------|--------|--------------------|-----------------------------------------------------------------|-----------------------------
2023-11-18 15:04:04.406 [INFO] pid[13928]: http server started listening on [:8000]
2023-11-18 15:04:04.406 [INFO] {f07287550d449817128f3107e3f9f1aa} swagger ui is serving at address: http://127.0.0.1:8000/swagger/
2023-11-18 15:04:04.407 [INFO] {f07287550d449817128f3107e3f9f1aa} openapi specification is serving at address: http://127.0.0.1:8000/api.json
ADDRESS | METHOD | ROUTE | HANDLER | MIDDLEWARE
----------|--------|--------------------|-----------------------------------------------------------------|-----------------------------
:8000 | ALL | /* | github.com/gogf/gf/v2/net/ghttp.internalMiddlewareServerTracing | GLOBAL MIDDLEWARE
----------|--------|--------------------|-----------------------------------------------------------------|-----------------------------
:8000 | ALL | /api.json | github.com/gogf/gf/v2/net/ghttp.(*Server).openapiSpec |
----------|--------|--------------------|-----------------------------------------------------------------|-----------------------------
:8000 | ALL | /swagger/* | github.com/gogf/gf/v2/net/ghttp.(*Server).swaggerUI | HOOK_BEFORE_SERVE
----------|--------|--------------------|-----------------------------------------------------------------|-----------------------------
:8000 | POST | /visitor_access | vistor/internal/controller.(*cVisitor).VisitorAccess | middleware.HandlerResponse
----------|--------|--------------------|-----------------------------------------------------------------|-----------------------------
:8000 | POST | /visitor_statistic | vistor/internal/controller.(*cVisitor).VisitorStatistic | middleware.HandlerResponse
----------|--------|--------------------|-----------------------------------------------------------------|-----------------------------
2023-11-18 15:04:46.370 [INFO] pid[21368]: http server started listening on [:8000]
2023-11-18 15:04:46.370 [INFO] {f07287550d449817128f3107e3f9f1aa} swagger ui is serving at address: http://127.0.0.1:8000/swagger/
2023-11-18 15:04:46.370 [INFO] {f07287550d449817128f3107e3f9f1aa} openapi specification is serving at address: http://127.0.0.1:8000/api.json
ADDRESS | METHOD | ROUTE | HANDLER | MIDDLEWARE
----------|--------|--------------------|-----------------------------------------------------------------|-----------------------------
:8000 | ALL | /* | github.com/gogf/gf/v2/net/ghttp.internalMiddlewareServerTracing | GLOBAL MIDDLEWARE
----------|--------|--------------------|-----------------------------------------------------------------|-----------------------------
:8000 | ALL | /api.json | github.com/gogf/gf/v2/net/ghttp.(*Server).openapiSpec |
----------|--------|--------------------|-----------------------------------------------------------------|-----------------------------
:8000 | ALL | /swagger/* | github.com/gogf/gf/v2/net/ghttp.(*Server).swaggerUI | HOOK_BEFORE_SERVE
----------|--------|--------------------|-----------------------------------------------------------------|-----------------------------
:8000 | POST | /visitor_access | vistor/internal/controller.(*cVisitor).VisitorAccess | middleware.HandlerResponse
----------|--------|--------------------|-----------------------------------------------------------------|-----------------------------
:8000 | POST | /visitor_statistic | vistor/internal/controller.(*cVisitor).VisitorStatistic | middleware.HandlerResponse
----------|--------|--------------------|-----------------------------------------------------------------|-----------------------------
2023-11-18 15:06:17.327 [INFO] pid[15004]: http server started listening on [:8000]
2023-11-18 15:06:17.327 [INFO] {f07287550d449817128f3107e3f9f1aa} swagger ui is serving at address: http://127.0.0.1:8000/swagger/
2023-11-18 15:06:17.327 [INFO] {f07287550d449817128f3107e3f9f1aa} openapi specification is serving at address: http://127.0.0.1:8000/api.json
ADDRESS | METHOD | ROUTE | HANDLER | MIDDLEWARE
----------|--------|--------------------|-----------------------------------------------------------------|-----------------------------
:8000 | ALL | /* | github.com/gogf/gf/v2/net/ghttp.internalMiddlewareServerTracing | GLOBAL MIDDLEWARE
----------|--------|--------------------|-----------------------------------------------------------------|-----------------------------
:8000 | ALL | /api.json | github.com/gogf/gf/v2/net/ghttp.(*Server).openapiSpec |
----------|--------|--------------------|-----------------------------------------------------------------|-----------------------------
:8000 | ALL | /swagger/* | github.com/gogf/gf/v2/net/ghttp.(*Server).swaggerUI | HOOK_BEFORE_SERVE
----------|--------|--------------------|-----------------------------------------------------------------|-----------------------------
:8000 | POST | /visitor_access | vistor/internal/controller.(*cVisitor).VisitorAccess | middleware.HandlerResponse
----------|--------|--------------------|-----------------------------------------------------------------|-----------------------------
:8000 | POST | /visitor_statistic | vistor/internal/controller.(*cVisitor).VisitorStatistic | middleware.HandlerResponse
----------|--------|--------------------|-----------------------------------------------------------------|-----------------------------
2023-11-18 15:08:01.382 [INFO] pid[2984]: http server started listening on [:8000]
2023-11-18 15:08:01.382 [INFO] {f07287550d449817128f3107e3f9f1aa} swagger ui is serving at address: http://127.0.0.1:8000/swagger/
2023-11-18 15:08:01.382 [INFO] {f07287550d449817128f3107e3f9f1aa} openapi specification is serving at address: http://127.0.0.1:8000/api.json
ADDRESS | METHOD | ROUTE | HANDLER | MIDDLEWARE
----------|--------|--------------------|-----------------------------------------------------------------|-----------------------------
:8000 | ALL | /* | github.com/gogf/gf/v2/net/ghttp.internalMiddlewareServerTracing | GLOBAL MIDDLEWARE
----------|--------|--------------------|-----------------------------------------------------------------|-----------------------------
:8000 | ALL | /api.json | github.com/gogf/gf/v2/net/ghttp.(*Server).openapiSpec |
----------|--------|--------------------|-----------------------------------------------------------------|-----------------------------
:8000 | ALL | /swagger/* | github.com/gogf/gf/v2/net/ghttp.(*Server).swaggerUI | HOOK_BEFORE_SERVE
----------|--------|--------------------|-----------------------------------------------------------------|-----------------------------
:8000 | POST | /visitor_access | vistor/internal/controller.(*cVisitor).VisitorAccess | middleware.HandlerResponse
----------|--------|--------------------|-----------------------------------------------------------------|-----------------------------
:8000 | POST | /visitor_statistic | vistor/internal/controller.(*cVisitor).VisitorStatistic | middleware.HandlerResponse
----------|--------|--------------------|-----------------------------------------------------------------|-----------------------------
2023-11-18 15:08:37.407 [INFO] pid[21972]: http server started listening on [:8000]
2023-11-18 15:08:37.407 [INFO] {f07287550d449817128f3107e3f9f1aa} swagger ui is serving at address: http://127.0.0.1:8000/swagger/
2023-11-18 15:08:37.408 [INFO] {f07287550d449817128f3107e3f9f1aa} openapi specification is serving at address: http://127.0.0.1:8000/api.json
ADDRESS | METHOD | ROUTE | HANDLER | MIDDLEWARE
----------|--------|--------------------|-----------------------------------------------------------------|-----------------------------
:8000 | ALL | /* | github.com/gogf/gf/v2/net/ghttp.internalMiddlewareServerTracing | GLOBAL MIDDLEWARE
----------|--------|--------------------|-----------------------------------------------------------------|-----------------------------
:8000 | ALL | /api.json | github.com/gogf/gf/v2/net/ghttp.(*Server).openapiSpec |
----------|--------|--------------------|-----------------------------------------------------------------|-----------------------------
:8000 | ALL | /swagger/* | github.com/gogf/gf/v2/net/ghttp.(*Server).swaggerUI | HOOK_BEFORE_SERVE
----------|--------|--------------------|-----------------------------------------------------------------|-----------------------------
:8000 | POST | /visitor_access | vistor/internal/controller.(*cVisitor).VisitorAccess | middleware.HandlerResponse
----------|--------|--------------------|-----------------------------------------------------------------|-----------------------------
:8000 | POST | /visitor_statistic | vistor/internal/controller.(*cVisitor).VisitorStatistic | middleware.HandlerResponse
----------|--------|--------------------|-----------------------------------------------------------------|-----------------------------
2023-11-18 15:08:59.608 [INFO] pid[19824]: http server started listening on [:8000]
2023-11-18 15:08:59.608 [INFO] {f07287550d449817128f3107e3f9f1aa} swagger ui is serving at address: http://127.0.0.1:8000/swagger/
2023-11-18 15:08:59.608 [INFO] {f07287550d449817128f3107e3f9f1aa} openapi specification is serving at address: http://127.0.0.1:8000/api.json
ADDRESS | METHOD | ROUTE | HANDLER | MIDDLEWARE
----------|--------|--------------------|-----------------------------------------------------------------|-----------------------------
:8000 | ALL | /* | github.com/gogf/gf/v2/net/ghttp.internalMiddlewareServerTracing | GLOBAL MIDDLEWARE
----------|--------|--------------------|-----------------------------------------------------------------|-----------------------------
:8000 | ALL | /api.json | github.com/gogf/gf/v2/net/ghttp.(*Server).openapiSpec |
----------|--------|--------------------|-----------------------------------------------------------------|-----------------------------
:8000 | ALL | /swagger/* | github.com/gogf/gf/v2/net/ghttp.(*Server).swaggerUI | HOOK_BEFORE_SERVE
----------|--------|--------------------|-----------------------------------------------------------------|-----------------------------
:8000 | POST | /visitor_access | vistor/internal/controller.(*cVisitor).VisitorAccess | middleware.HandlerResponse
----------|--------|--------------------|-----------------------------------------------------------------|-----------------------------
:8000 | POST | /visitor_statistic | vistor/internal/controller.(*cVisitor).VisitorStatistic | middleware.HandlerResponse
----------|--------|--------------------|-----------------------------------------------------------------|-----------------------------
2023-11-18 15:10:27.269 [INFO] pid[19272]: http server started listening on [:8000]
2023-11-18 15:10:27.269 [INFO] {f07287550d449817128f3107e3f9f1aa} swagger ui is serving at address: http://127.0.0.1:8000/swagger/
2023-11-18 15:10:27.269 [INFO] {f07287550d449817128f3107e3f9f1aa} openapi specification is serving at address: http://127.0.0.1:8000/api.json
ADDRESS | METHOD | ROUTE | HANDLER | MIDDLEWARE
----------|--------|--------------------|-----------------------------------------------------------------|-----------------------------
:8000 | ALL | /* | github.com/gogf/gf/v2/net/ghttp.internalMiddlewareServerTracing | GLOBAL MIDDLEWARE
----------|--------|--------------------|-----------------------------------------------------------------|-----------------------------
:8000 | ALL | /api.json | github.com/gogf/gf/v2/net/ghttp.(*Server).openapiSpec |
----------|--------|--------------------|-----------------------------------------------------------------|-----------------------------
:8000 | ALL | /swagger/* | github.com/gogf/gf/v2/net/ghttp.(*Server).swaggerUI | HOOK_BEFORE_SERVE
----------|--------|--------------------|-----------------------------------------------------------------|-----------------------------
:8000 | POST | /visitor_access | vistor/internal/controller.(*cVisitor).VisitorAccess | middleware.HandlerResponse
----------|--------|--------------------|-----------------------------------------------------------------|-----------------------------
:8000 | POST | /visitor_statistic | vistor/internal/controller.(*cVisitor).VisitorStatistic | middleware.HandlerResponse
----------|--------|--------------------|-----------------------------------------------------------------|-----------------------------
2023-11-18 16:08:50.296 [INFO] pid[19148]: http server started listening on [:8000]
2023-11-18 16:08:50.296 [INFO] {f07287550d449817128f3107e3f9f1aa} swagger ui is serving at address: http://127.0.0.1:8000/swagger/
2023-11-18 16:08:50.297 [INFO] {f07287550d449817128f3107e3f9f1aa} openapi specification is serving at address: http://127.0.0.1:8000/api.json
ADDRESS | METHOD | ROUTE | HANDLER | MIDDLEWARE
----------|--------|--------------------|-----------------------------------------------------------------|-----------------------------
:8000 | ALL | /* | github.com/gogf/gf/v2/net/ghttp.internalMiddlewareServerTracing | GLOBAL MIDDLEWARE
----------|--------|--------------------|-----------------------------------------------------------------|-----------------------------
:8000 | ALL | /api.json | github.com/gogf/gf/v2/net/ghttp.(*Server).openapiSpec |
----------|--------|--------------------|-----------------------------------------------------------------|-----------------------------
:8000 | ALL | /swagger/* | github.com/gogf/gf/v2/net/ghttp.(*Server).swaggerUI | HOOK_BEFORE_SERVE
----------|--------|--------------------|-----------------------------------------------------------------|-----------------------------
:8000 | POST | /visitor_access | vistor/internal/controller.(*cVisitor).VisitorAccess | middleware.HandlerResponse
----------|--------|--------------------|-----------------------------------------------------------------|-----------------------------
:8000 | POST | /visitor_statistic | vistor/internal/controller.(*cVisitor).VisitorStatistic | middleware.HandlerResponse
----------|--------|--------------------|-----------------------------------------------------------------|-----------------------------
2023-11-18 16:10:49.535 [INFO] pid[7420]: http server started listening on [:8000]
2023-11-18 16:10:49.535 [INFO] {f07287550d449817128f3107e3f9f1aa} swagger ui is serving at address: http://127.0.0.1:8000/swagger/
2023-11-18 16:10:49.535 [INFO] {f07287550d449817128f3107e3f9f1aa} openapi specification is serving at address: http://127.0.0.1:8000/api.json
ADDRESS | METHOD | ROUTE | HANDLER | MIDDLEWARE
----------|--------|--------------------|-----------------------------------------------------------------|-----------------------------
:8000 | ALL | /* | github.com/gogf/gf/v2/net/ghttp.internalMiddlewareServerTracing | GLOBAL MIDDLEWARE
----------|--------|--------------------|-----------------------------------------------------------------|-----------------------------
:8000 | ALL | /api.json | github.com/gogf/gf/v2/net/ghttp.(*Server).openapiSpec |
----------|--------|--------------------|-----------------------------------------------------------------|-----------------------------
:8000 | ALL | /swagger/* | github.com/gogf/gf/v2/net/ghttp.(*Server).swaggerUI | HOOK_BEFORE_SERVE
----------|--------|--------------------|-----------------------------------------------------------------|-----------------------------
:8000 | POST | /visitor_access | vistor/internal/controller.(*cVisitor).VisitorAccess | middleware.HandlerResponse
----------|--------|--------------------|-----------------------------------------------------------------|-----------------------------
:8000 | POST | /visitor_statistic | vistor/internal/controller.(*cVisitor).VisitorStatistic | middleware.HandlerResponse
----------|--------|--------------------|-----------------------------------------------------------------|-----------------------------
2023-11-18 16:11:28.953 [INFO] pid[7312]: http server started listening on [:8000]
2023-11-18 16:11:28.953 [INFO] {f07287550d449817128f3107e3f9f1aa} swagger ui is serving at address: http://127.0.0.1:8000/swagger/
2023-11-18 16:11:28.953 [INFO] {f07287550d449817128f3107e3f9f1aa} openapi specification is serving at address: http://127.0.0.1:8000/api.json
ADDRESS | METHOD | ROUTE | HANDLER | MIDDLEWARE
----------|--------|--------------------|-----------------------------------------------------------------|-----------------------------
:8000 | ALL | /* | github.com/gogf/gf/v2/net/ghttp.internalMiddlewareServerTracing | GLOBAL MIDDLEWARE
----------|--------|--------------------|-----------------------------------------------------------------|-----------------------------
:8000 | ALL | /api.json | github.com/gogf/gf/v2/net/ghttp.(*Server).openapiSpec |
----------|--------|--------------------|-----------------------------------------------------------------|-----------------------------
:8000 | ALL | /swagger/* | github.com/gogf/gf/v2/net/ghttp.(*Server).swaggerUI | HOOK_BEFORE_SERVE
----------|--------|--------------------|-----------------------------------------------------------------|-----------------------------
:8000 | POST | /visitor_access | vistor/internal/controller.(*cVisitor).VisitorAccess | middleware.HandlerResponse
----------|--------|--------------------|-----------------------------------------------------------------|-----------------------------
:8000 | POST | /visitor_statistic | vistor/internal/controller.(*cVisitor).VisitorStatistic | middleware.HandlerResponse
----------|--------|--------------------|-----------------------------------------------------------------|-----------------------------
2023-11-18 16:14:15.046 [INFO] pid[9784]: http server started listening on [:8000]
2023-11-18 16:14:15.046 [INFO] {f07287550d449817128f3107e3f9f1aa} swagger ui is serving at address: http://127.0.0.1:8000/swagger/
2023-11-18 16:14:15.047 [INFO] {f07287550d449817128f3107e3f9f1aa} openapi specification is serving at address: http://127.0.0.1:8000/api.json
ADDRESS | METHOD | ROUTE | HANDLER | MIDDLEWARE
----------|--------|--------------------|-----------------------------------------------------------------|-----------------------------
:8000 | ALL | /* | github.com/gogf/gf/v2/net/ghttp.internalMiddlewareServerTracing | GLOBAL MIDDLEWARE
----------|--------|--------------------|-----------------------------------------------------------------|-----------------------------
:8000 | ALL | /api.json | github.com/gogf/gf/v2/net/ghttp.(*Server).openapiSpec |
----------|--------|--------------------|-----------------------------------------------------------------|-----------------------------
:8000 | ALL | /swagger/* | github.com/gogf/gf/v2/net/ghttp.(*Server).swaggerUI | HOOK_BEFORE_SERVE
----------|--------|--------------------|-----------------------------------------------------------------|-----------------------------
:8000 | POST | /visitor_access | vistor/internal/controller.(*cVisitor).VisitorAccess | middleware.HandlerResponse
----------|--------|--------------------|-----------------------------------------------------------------|-----------------------------
:8000 | POST | /visitor_statistic | vistor/internal/controller.(*cVisitor).VisitorStatistic | middleware.HandlerResponse
----------|--------|--------------------|-----------------------------------------------------------------|-----------------------------
2023-11-18 16:16:06.354 [INFO] pid[23236]: http server started listening on [:8000]
2023-11-18 16:16:06.354 [INFO] {f07287550d449817128f3107e3f9f1aa} swagger ui is serving at address: http://127.0.0.1:8000/swagger/
2023-11-18 16:16:06.355 [INFO] {f07287550d449817128f3107e3f9f1aa} openapi specification is serving at address: http://127.0.0.1:8000/api.json
ADDRESS | METHOD | ROUTE | HANDLER | MIDDLEWARE
----------|--------|--------------------|-----------------------------------------------------------------|-----------------------------
:8000 | ALL | /* | github.com/gogf/gf/v2/net/ghttp.internalMiddlewareServerTracing | GLOBAL MIDDLEWARE
----------|--------|--------------------|-----------------------------------------------------------------|-----------------------------
:8000 | ALL | /api.json | github.com/gogf/gf/v2/net/ghttp.(*Server).openapiSpec |
----------|--------|--------------------|-----------------------------------------------------------------|-----------------------------
:8000 | ALL | /swagger/* | github.com/gogf/gf/v2/net/ghttp.(*Server).swaggerUI | HOOK_BEFORE_SERVE
----------|--------|--------------------|-----------------------------------------------------------------|-----------------------------
:8000 | POST | /visitor_access | vistor/internal/controller.(*cVisitor).VisitorAccess | middleware.HandlerResponse
----------|--------|--------------------|-----------------------------------------------------------------|-----------------------------
:8000 | POST | /visitor_statistic | vistor/internal/controller.(*cVisitor).VisitorStatistic | middleware.HandlerResponse
----------|--------|--------------------|-----------------------------------------------------------------|-----------------------------
2023-11-18 16:16:47.907 [INFO] pid[6272]: http server started listening on [:8000]
2023-11-18 16:16:47.907 [INFO] {d8def07da8a9981706cbb6231198e0a3} swagger ui is serving at address: http://127.0.0.1:8000/swagger/
2023-11-18 16:16:47.907 [INFO] {d8def07da8a9981706cbb6231198e0a3} openapi specification is serving at address: http://127.0.0.1:8000/api.json
ADDRESS | METHOD | ROUTE | HANDLER | MIDDLEWARE
----------|--------|--------------------|-----------------------------------------------------------------|-----------------------------
:8000 | ALL | /* | github.com/gogf/gf/v2/net/ghttp.internalMiddlewareServerTracing | GLOBAL MIDDLEWARE
----------|--------|--------------------|-----------------------------------------------------------------|-----------------------------
:8000 | ALL | /api.json | github.com/gogf/gf/v2/net/ghttp.(*Server).openapiSpec |
----------|--------|--------------------|-----------------------------------------------------------------|-----------------------------
:8000 | ALL | /swagger/* | github.com/gogf/gf/v2/net/ghttp.(*Server).swaggerUI | HOOK_BEFORE_SERVE
----------|--------|--------------------|-----------------------------------------------------------------|-----------------------------
:8000 | POST | /visitor_access | vistor/internal/controller.(*cVisitor).VisitorAccess | middleware.HandlerResponse
----------|--------|--------------------|-----------------------------------------------------------------|-----------------------------
:8000 | POST | /visitor_statistic | vistor/internal/controller.(*cVisitor).VisitorStatistic | middleware.HandlerResponse
----------|--------|--------------------|-----------------------------------------------------------------|-----------------------------
2023-11-18 16:25:10.918 [INFO] pid[24828]: http server started listening on [:8000]
2023-11-18 16:25:10.918 [INFO] {d8def07da8a9981706cbb6231198e0a3} swagger ui is serving at address: http://127.0.0.1:8000/swagger/
2023-11-18 16:25:10.919 [INFO] {d8def07da8a9981706cbb6231198e0a3} openapi specification is serving at address: http://127.0.0.1:8000/api.json
ADDRESS | METHOD | ROUTE | HANDLER | MIDDLEWARE
----------|--------|--------------------|-----------------------------------------------------------------|-----------------------------
:8000 | ALL | /* | github.com/gogf/gf/v2/net/ghttp.internalMiddlewareServerTracing | GLOBAL MIDDLEWARE
----------|--------|--------------------|-----------------------------------------------------------------|-----------------------------
:8000 | ALL | /api.json | github.com/gogf/gf/v2/net/ghttp.(*Server).openapiSpec |
----------|--------|--------------------|-----------------------------------------------------------------|-----------------------------
:8000 | ALL | /swagger/* | github.com/gogf/gf/v2/net/ghttp.(*Server).swaggerUI | HOOK_BEFORE_SERVE
----------|--------|--------------------|-----------------------------------------------------------------|-----------------------------
:8000 | POST | /visitor_access | vistor/internal/controller.(*cVisitor).VisitorAccess | middleware.HandlerResponse
----------|--------|--------------------|-----------------------------------------------------------------|-----------------------------
:8000 | POST | /visitor_statistic | vistor/internal/controller.(*cVisitor).VisitorStatistic | middleware.HandlerResponse
----------|--------|--------------------|-----------------------------------------------------------------|-----------------------------
2023-11-18 16:25:56.863 [INFO] pid[14892]: http server started listening on [:8000]
2023-11-18 16:25:56.863 [INFO] {d8def07da8a9981706cbb6231198e0a3} swagger ui is serving at address: http://127.0.0.1:8000/swagger/
2023-11-18 16:25:56.863 [INFO] {d8def07da8a9981706cbb6231198e0a3} openapi specification is serving at address: http://127.0.0.1:8000/api.json
ADDRESS | METHOD | ROUTE | HANDLER | MIDDLEWARE
----------|--------|--------------------|-----------------------------------------------------------------|-----------------------------
:8000 | ALL | /* | github.com/gogf/gf/v2/net/ghttp.internalMiddlewareServerTracing | GLOBAL MIDDLEWARE
----------|--------|--------------------|-----------------------------------------------------------------|-----------------------------
:8000 | ALL | /api.json | github.com/gogf/gf/v2/net/ghttp.(*Server).openapiSpec |
----------|--------|--------------------|-----------------------------------------------------------------|-----------------------------
:8000 | ALL | /swagger/* | github.com/gogf/gf/v2/net/ghttp.(*Server).swaggerUI | HOOK_BEFORE_SERVE
----------|--------|--------------------|-----------------------------------------------------------------|-----------------------------
:8000 | POST | /visitor_access | vistor/internal/controller.(*cVisitor).VisitorAccess | middleware.HandlerResponse
----------|--------|--------------------|-----------------------------------------------------------------|-----------------------------
:8000 | POST | /visitor_statistic | vistor/internal/controller.(*cVisitor).VisitorStatistic | middleware.HandlerResponse
----------|--------|--------------------|-----------------------------------------------------------------|-----------------------------
2023-11-18 16:27:47.723 [INFO] pid[19632]: http server started listening on [:8000]
2023-11-18 16:27:47.723 [INFO] {d8def07da8a9981706cbb6231198e0a3} swagger ui is serving at address: http://127.0.0.1:8000/swagger/
2023-11-18 16:27:47.723 [INFO] {d8def07da8a9981706cbb6231198e0a3} openapi specification is serving at address: http://127.0.0.1:8000/api.json
ADDRESS | METHOD | ROUTE | HANDLER | MIDDLEWARE
----------|--------|--------------------|-----------------------------------------------------------------|-----------------------------
:8000 | ALL | /* | github.com/gogf/gf/v2/net/ghttp.internalMiddlewareServerTracing | GLOBAL MIDDLEWARE
----------|--------|--------------------|-----------------------------------------------------------------|-----------------------------
:8000 | ALL | /api.json | github.com/gogf/gf/v2/net/ghttp.(*Server).openapiSpec |
----------|--------|--------------------|-----------------------------------------------------------------|-----------------------------
:8000 | ALL | /swagger/* | github.com/gogf/gf/v2/net/ghttp.(*Server).swaggerUI | HOOK_BEFORE_SERVE
----------|--------|--------------------|-----------------------------------------------------------------|-----------------------------
:8000 | POST | /visitor_access | vistor/internal/controller.(*cVisitor).VisitorAccess | middleware.HandlerResponse
----------|--------|--------------------|-----------------------------------------------------------------|-----------------------------
:8000 | POST | /visitor_statistic | vistor/internal/controller.(*cVisitor).VisitorStatistic | middleware.HandlerResponse
----------|--------|--------------------|-----------------------------------------------------------------|-----------------------------
2023-11-18 16:28:36.107 [INFO] pid[2920]: http server started listening on [:8000]
2023-11-18 16:28:36.107 [INFO] {d8def07da8a9981706cbb6231198e0a3} swagger ui is serving at address: http://127.0.0.1:8000/swagger/
2023-11-18 16:28:36.107 [INFO] {d8def07da8a9981706cbb6231198e0a3} openapi specification is serving at address: http://127.0.0.1:8000/api.json
ADDRESS | METHOD | ROUTE | HANDLER | MIDDLEWARE
----------|--------|--------------------|-----------------------------------------------------------------|-----------------------------
:8000 | ALL | /* | github.com/gogf/gf/v2/net/ghttp.internalMiddlewareServerTracing | GLOBAL MIDDLEWARE
----------|--------|--------------------|-----------------------------------------------------------------|-----------------------------
:8000 | ALL | /api.json | github.com/gogf/gf/v2/net/ghttp.(*Server).openapiSpec |
----------|--------|--------------------|-----------------------------------------------------------------|-----------------------------
:8000 | ALL | /swagger/* | github.com/gogf/gf/v2/net/ghttp.(*Server).swaggerUI | HOOK_BEFORE_SERVE
----------|--------|--------------------|-----------------------------------------------------------------|-----------------------------
:8000 | POST | /visitor_access | vistor/internal/controller.(*cVisitor).VisitorAccess | middleware.HandlerResponse
----------|--------|--------------------|-----------------------------------------------------------------|-----------------------------
:8000 | POST | /visitor_statistic | vistor/internal/controller.(*cVisitor).VisitorStatistic | middleware.HandlerResponse
----------|--------|--------------------|-----------------------------------------------------------------|-----------------------------
2023-11-18 16:34:43.431 [INFO] pid[12708]: http server started listening on [:8000]
2023-11-18 16:34:43.431 [INFO] {d8def07da8a9981706cbb6231198e0a3} swagger ui is serving at address: http://127.0.0.1:8000/swagger/
2023-11-18 16:34:43.431 [INFO] {d8def07da8a9981706cbb6231198e0a3} openapi specification is serving at address: http://127.0.0.1:8000/api.json
ADDRESS | METHOD | ROUTE | HANDLER | MIDDLEWARE
----------|--------|--------------------|-----------------------------------------------------------------|-----------------------------
:8000 | ALL | /* | github.com/gogf/gf/v2/net/ghttp.internalMiddlewareServerTracing | GLOBAL MIDDLEWARE
----------|--------|--------------------|-----------------------------------------------------------------|-----------------------------
:8000 | ALL | /api.json | github.com/gogf/gf/v2/net/ghttp.(*Server).openapiSpec |
----------|--------|--------------------|-----------------------------------------------------------------|-----------------------------
:8000 | ALL | /swagger/* | github.com/gogf/gf/v2/net/ghttp.(*Server).swaggerUI | HOOK_BEFORE_SERVE
----------|--------|--------------------|-----------------------------------------------------------------|-----------------------------
:8000 | POST | /visitor_access | vistor/internal/controller.(*cVisitor).VisitorAccess | middleware.HandlerResponse
----------|--------|--------------------|-----------------------------------------------------------------|-----------------------------
:8000 | POST | /visitor_statistic | vistor/internal/controller.(*cVisitor).VisitorStatistic | middleware.HandlerResponse
----------|--------|--------------------|-----------------------------------------------------------------|-----------------------------
2023-11-18 16:35:39.824 [INFO] pid[24868]: http server started listening on [:8000]
2023-11-18 16:35:39.824 [INFO] {d8def07da8a9981706cbb6231198e0a3} swagger ui is serving at address: http://127.0.0.1:8000/swagger/
2023-11-18 16:35:39.824 [INFO] {d8def07da8a9981706cbb6231198e0a3} openapi specification is serving at address: http://127.0.0.1:8000/api.json
ADDRESS | METHOD | ROUTE | HANDLER | MIDDLEWARE
----------|--------|--------------------|-----------------------------------------------------------------|-----------------------------
:8000 | ALL | /* | github.com/gogf/gf/v2/net/ghttp.internalMiddlewareServerTracing | GLOBAL MIDDLEWARE
----------|--------|--------------------|-----------------------------------------------------------------|-----------------------------
:8000 | ALL | /api.json | github.com/gogf/gf/v2/net/ghttp.(*Server).openapiSpec |
----------|--------|--------------------|-----------------------------------------------------------------|-----------------------------
:8000 | ALL | /swagger/* | github.com/gogf/gf/v2/net/ghttp.(*Server).swaggerUI | HOOK_BEFORE_SERVE
----------|--------|--------------------|-----------------------------------------------------------------|-----------------------------
:8000 | POST | /visitor_access | vistor/internal/controller.(*cVisitor).VisitorAccess | middleware.HandlerResponse
----------|--------|--------------------|-----------------------------------------------------------------|-----------------------------
:8000 | POST | /visitor_statistic | vistor/internal/controller.(*cVisitor).VisitorStatistic | middleware.HandlerResponse
----------|--------|--------------------|-----------------------------------------------------------------|-----------------------------
2023-11-18 16:49:17.846 [INFO] {d8def07da8a9981706cbb6231198e0a3} swagger ui is serving at address: http://127.0.0.1:8000/swagger/
2023-11-18 16:49:17.846 [INFO] pid[20512]: http server started listening on [:8000]
2023-11-18 16:49:17.846 [INFO] {d8def07da8a9981706cbb6231198e0a3} openapi specification is serving at address: http://127.0.0.1:8000/api.json
ADDRESS | METHOD | ROUTE | HANDLER | MIDDLEWARE
----------|--------|--------------------|-----------------------------------------------------------------|-----------------------------
:8000 | ALL | /* | github.com/gogf/gf/v2/net/ghttp.internalMiddlewareServerTracing | GLOBAL MIDDLEWARE
----------|--------|--------------------|-----------------------------------------------------------------|-----------------------------
:8000 | ALL | /api.json | github.com/gogf/gf/v2/net/ghttp.(*Server).openapiSpec |
----------|--------|--------------------|-----------------------------------------------------------------|-----------------------------
:8000 | ALL | /swagger/* | github.com/gogf/gf/v2/net/ghttp.(*Server).swaggerUI | HOOK_BEFORE_SERVE
----------|--------|--------------------|-----------------------------------------------------------------|-----------------------------
:8000 | POST | /visitor_access | vistor/internal/controller.(*cVisitor).VisitorAccess | middleware.HandlerResponse
----------|--------|--------------------|-----------------------------------------------------------------|-----------------------------
:8000 | POST | /visitor_statistic | vistor/internal/controller.(*cVisitor).VisitorStatistic | middleware.HandlerResponse
----------|--------|--------------------|-----------------------------------------------------------------|-----------------------------
2023-11-18 16:50:58.485 [INFO] pid[21316]: http server started listening on [:8000]
2023-11-18 16:50:58.485 [INFO] {d8def07da8a9981706cbb6231198e0a3} swagger ui is serving at address: http://127.0.0.1:8000/swagger/
2023-11-18 16:50:58.485 [INFO] {d8def07da8a9981706cbb6231198e0a3} openapi specification is serving at address: http://127.0.0.1:8000/api.json
ADDRESS | METHOD | ROUTE | HANDLER | MIDDLEWARE
----------|--------|--------------------|-----------------------------------------------------------------|-----------------------------
:8000 | ALL | /* | github.com/gogf/gf/v2/net/ghttp.internalMiddlewareServerTracing | GLOBAL MIDDLEWARE
----------|--------|--------------------|-----------------------------------------------------------------|-----------------------------
:8000 | ALL | /api.json | github.com/gogf/gf/v2/net/ghttp.(*Server).openapiSpec |
----------|--------|--------------------|-----------------------------------------------------------------|-----------------------------
:8000 | ALL | /swagger/* | github.com/gogf/gf/v2/net/ghttp.(*Server).swaggerUI | HOOK_BEFORE_SERVE
----------|--------|--------------------|-----------------------------------------------------------------|-----------------------------
:8000 | POST | /visitor_access | vistor/internal/controller.(*cVisitor).VisitorAccess | middleware.HandlerResponse
----------|--------|--------------------|-----------------------------------------------------------------|-----------------------------
:8000 | POST | /visitor_statistic | vistor/internal/controller.(*cVisitor).VisitorStatistic | middleware.HandlerResponse
----------|--------|--------------------|-----------------------------------------------------------------|-----------------------------
2023-11-18 16:51:24.602 [INFO] pid[20560]: http server started listening on [:8000]
2023-11-18 16:51:24.602 [INFO] {d8def07da8a9981706cbb6231198e0a3} swagger ui is serving at address: http://127.0.0.1:8000/swagger/
2023-11-18 16:51:24.602 [INFO] {d8def07da8a9981706cbb6231198e0a3} openapi specification is serving at address: http://127.0.0.1:8000/api.json
ADDRESS | METHOD | ROUTE | HANDLER | MIDDLEWARE
----------|--------|--------------------|-----------------------------------------------------------------|-----------------------------
:8000 | ALL | /* | github.com/gogf/gf/v2/net/ghttp.internalMiddlewareServerTracing | GLOBAL MIDDLEWARE
----------|--------|--------------------|-----------------------------------------------------------------|-----------------------------
:8000 | ALL | /api.json | github.com/gogf/gf/v2/net/ghttp.(*Server).openapiSpec |
----------|--------|--------------------|-----------------------------------------------------------------|-----------------------------
:8000 | ALL | /swagger/* | github.com/gogf/gf/v2/net/ghttp.(*Server).swaggerUI | HOOK_BEFORE_SERVE
----------|--------|--------------------|-----------------------------------------------------------------|-----------------------------
:8000 | POST | /visitor_access | vistor/internal/controller.(*cVisitor).VisitorAccess | middleware.HandlerResponse
----------|--------|--------------------|-----------------------------------------------------------------|-----------------------------
:8000 | POST | /visitor_statistic | vistor/internal/controller.(*cVisitor).VisitorStatistic | middleware.HandlerResponse
----------|--------|--------------------|-----------------------------------------------------------------|-----------------------------
2023-11-18 16:58:54.411 [INFO] pid[23296]: http server started listening on [:8000]
2023-11-18 16:58:54.411 [INFO] {d8def07da8a9981706cbb6231198e0a3} swagger ui is serving at address: http://127.0.0.1:8000/swagger/
2023-11-18 16:58:54.411 [INFO] {d8def07da8a9981706cbb6231198e0a3} openapi specification is serving at address: http://127.0.0.1:8000/api.json
ADDRESS | METHOD | ROUTE | HANDLER | MIDDLEWARE
----------|--------|--------------------|-----------------------------------------------------------------|-----------------------------
:8000 | ALL | /* | github.com/gogf/gf/v2/net/ghttp.internalMiddlewareServerTracing | GLOBAL MIDDLEWARE
----------|--------|--------------------|-----------------------------------------------------------------|-----------------------------
:8000 | ALL | /api.json | github.com/gogf/gf/v2/net/ghttp.(*Server).openapiSpec |
----------|--------|--------------------|-----------------------------------------------------------------|-----------------------------
:8000 | ALL | /swagger/* | github.com/gogf/gf/v2/net/ghttp.(*Server).swaggerUI | HOOK_BEFORE_SERVE
----------|--------|--------------------|-----------------------------------------------------------------|-----------------------------
:8000 | POST | /visitor_access | vistor/internal/controller.(*cVisitor).VisitorAccess | middleware.HandlerResponse
----------|--------|--------------------|-----------------------------------------------------------------|-----------------------------
:8000 | POST | /visitor_statistic | vistor/internal/controller.(*cVisitor).VisitorStatistic | middleware.HandlerResponse
----------|--------|--------------------|-----------------------------------------------------------------|-----------------------------
2023-11-18 16:59:09.327 [INFO] pid[12708]: http server started listening on [:8000]
2023-11-18 16:59:09.327 [INFO] {d8def07da8a9981706cbb6231198e0a3} swagger ui is serving at address: http://127.0.0.1:8000/swagger/
2023-11-18 16:59:09.327 [INFO] {d8def07da8a9981706cbb6231198e0a3} openapi specification is serving at address: http://127.0.0.1:8000/api.json
ADDRESS | METHOD | ROUTE | HANDLER | MIDDLEWARE
----------|--------|--------------------|-----------------------------------------------------------------|-----------------------------
:8000 | ALL | /* | github.com/gogf/gf/v2/net/ghttp.internalMiddlewareServerTracing | GLOBAL MIDDLEWARE
----------|--------|--------------------|-----------------------------------------------------------------|-----------------------------
:8000 | ALL | /api.json | github.com/gogf/gf/v2/net/ghttp.(*Server).openapiSpec |
----------|--------|--------------------|-----------------------------------------------------------------|-----------------------------
:8000 | ALL | /swagger/* | github.com/gogf/gf/v2/net/ghttp.(*Server).swaggerUI | HOOK_BEFORE_SERVE
----------|--------|--------------------|-----------------------------------------------------------------|-----------------------------
:8000 | POST | /visitor_access | vistor/internal/controller.(*cVisitor).VisitorAccess | middleware.HandlerResponse
----------|--------|--------------------|-----------------------------------------------------------------|-----------------------------
:8000 | POST | /visitor_statistic | vistor/internal/controller.(*cVisitor).VisitorStatistic | middleware.HandlerResponse
----------|--------|--------------------|-----------------------------------------------------------------|-----------------------------
2023-11-18 17:09:01.480 [INFO] pid[24000]: http server started listening on [:8000]
2023-11-18 17:09:01.480 [INFO] {d8def07da8a9981706cbb6231198e0a3} swagger ui is serving at address: http://127.0.0.1:8000/swagger/
2023-11-18 17:09:01.480 [INFO] {d8def07da8a9981706cbb6231198e0a3} openapi specification is serving at address: http://127.0.0.1:8000/api.json
ADDRESS | METHOD | ROUTE | HANDLER | MIDDLEWARE
----------|--------|--------------------|-----------------------------------------------------------------|-----------------------------
:8000 | ALL | /* | github.com/gogf/gf/v2/net/ghttp.internalMiddlewareServerTracing | GLOBAL MIDDLEWARE
----------|--------|--------------------|-----------------------------------------------------------------|-----------------------------
:8000 | ALL | /api.json | github.com/gogf/gf/v2/net/ghttp.(*Server).openapiSpec |
----------|--------|--------------------|-----------------------------------------------------------------|-----------------------------
:8000 | ALL | /swagger/* | github.com/gogf/gf/v2/net/ghttp.(*Server).swaggerUI | HOOK_BEFORE_SERVE
----------|--------|--------------------|-----------------------------------------------------------------|-----------------------------
:8000 | POST | /visitor_access | vistor/internal/controller.(*cVisitor).VisitorAccess | middleware.HandlerResponse
----------|--------|--------------------|-----------------------------------------------------------------|-----------------------------
:8000 | POST | /visitor_statistic | vistor/internal/controller.(*cVisitor).VisitorStatistic | middleware.HandlerResponse
----------|--------|--------------------|-----------------------------------------------------------------|-----------------------------
2023-11-18 17:09:14.029 [INFO] pid[18148]: http server started listening on [:8000]
2023-11-18 17:09:14.029 [INFO] {d8def07da8a9981706cbb6231198e0a3} swagger ui is serving at address: http://127.0.0.1:8000/swagger/
2023-11-18 17:09:14.030 [INFO] {d8def07da8a9981706cbb6231198e0a3} openapi specification is serving at address: http://127.0.0.1:8000/api.json
ADDRESS | METHOD | ROUTE | HANDLER | MIDDLEWARE
----------|--------|--------------------|-----------------------------------------------------------------|-----------------------------
:8000 | ALL | /* | github.com/gogf/gf/v2/net/ghttp.internalMiddlewareServerTracing | GLOBAL MIDDLEWARE
----------|--------|--------------------|-----------------------------------------------------------------|-----------------------------
:8000 | ALL | /api.json | github.com/gogf/gf/v2/net/ghttp.(*Server).openapiSpec |
----------|--------|--------------------|-----------------------------------------------------------------|-----------------------------
:8000 | ALL | /swagger/* | github.com/gogf/gf/v2/net/ghttp.(*Server).swaggerUI | HOOK_BEFORE_SERVE
----------|--------|--------------------|-----------------------------------------------------------------|-----------------------------
:8000 | POST | /visitor_access | vistor/internal/controller.(*cVisitor).VisitorAccess | middleware.HandlerResponse
----------|--------|--------------------|-----------------------------------------------------------------|-----------------------------
:8000 | POST | /visitor_statistic | vistor/internal/controller.(*cVisitor).VisitorStatistic | middleware.HandlerResponse
----------|--------|--------------------|-----------------------------------------------------------------|-----------------------------
2023-11-18 17:09:35.559 [INFO] pid[25028]: http server started listening on [:8000]
2023-11-18 17:09:35.559 [INFO] {d8def07da8a9981706cbb6231198e0a3} swagger ui is serving at address: http://127.0.0.1:8000/swagger/
2023-11-18 17:09:35.559 [INFO] {d8def07da8a9981706cbb6231198e0a3} openapi specification is serving at address: http://127.0.0.1:8000/api.json
ADDRESS | METHOD | ROUTE | HANDLER | MIDDLEWARE
----------|--------|--------------------|-----------------------------------------------------------------|-----------------------------
:8000 | ALL | /* | github.com/gogf/gf/v2/net/ghttp.internalMiddlewareServerTracing | GLOBAL MIDDLEWARE
----------|--------|--------------------|-----------------------------------------------------------------|-----------------------------
:8000 | ALL | /api.json | github.com/gogf/gf/v2/net/ghttp.(*Server).openapiSpec |
----------|--------|--------------------|-----------------------------------------------------------------|-----------------------------
:8000 | ALL | /swagger/* | github.com/gogf/gf/v2/net/ghttp.(*Server).swaggerUI | HOOK_BEFORE_SERVE
----------|--------|--------------------|-----------------------------------------------------------------|-----------------------------
:8000 | POST | /visitor_access | vistor/internal/controller.(*cVisitor).VisitorAccess | middleware.HandlerResponse
----------|--------|--------------------|-----------------------------------------------------------------|-----------------------------
:8000 | POST | /visitor_statistic | vistor/internal/controller.(*cVisitor).VisitorStatistic | middleware.HandlerResponse
----------|--------|--------------------|-----------------------------------------------------------------|-----------------------------
2023-11-18 17:31:56.706 [INFO] pid[24624]: http server started listening on [:8000]
2023-11-18 17:31:56.706 [INFO] {d8def07da8a9981706cbb6231198e0a3} swagger ui is serving at address: http://127.0.0.1:8000/swagger/
2023-11-18 17:31:56.706 [INFO] {d8def07da8a9981706cbb6231198e0a3} openapi specification is serving at address: http://127.0.0.1:8000/api.json
ADDRESS | METHOD | ROUTE | HANDLER | MIDDLEWARE
----------|--------|--------------------|-----------------------------------------------------------------|-----------------------------
:8000 | ALL | /* | github.com/gogf/gf/v2/net/ghttp.internalMiddlewareServerTracing | GLOBAL MIDDLEWARE
----------|--------|--------------------|-----------------------------------------------------------------|-----------------------------
:8000 | ALL | /api.json | github.com/gogf/gf/v2/net/ghttp.(*Server).openapiSpec |
----------|--------|--------------------|-----------------------------------------------------------------|-----------------------------
:8000 | ALL | /swagger/* | github.com/gogf/gf/v2/net/ghttp.(*Server).swaggerUI | HOOK_BEFORE_SERVE
----------|--------|--------------------|-----------------------------------------------------------------|-----------------------------
:8000 | POST | /visitor_access | vistor/internal/controller.(*cVisitor).VisitorAccess | middleware.HandlerResponse
----------|--------|--------------------|-----------------------------------------------------------------|-----------------------------
:8000 | POST | /visitor_statistic | vistor/internal/controller.(*cVisitor).VisitorStatistic | middleware.HandlerResponse
----------|--------|--------------------|-----------------------------------------------------------------|-----------------------------

File diff suppressed because it is too large Load Diff

@ -0,0 +1,6 @@
2023-11-16 16:43:12.679 {70eea712f20d98179c69984dfa03ccb3} 200 "POST http 127.0.0.1:8000 /visitor_access HTTP/1.1" 0.001, 127.0.0.1, "", "apifox/1.0.0 (https://www.apifox.cn)"
2023-11-16 16:53:14.187 {bc155a1f7e0e9817f89c7330becbb6d2} 200 "POST http 127.0.0.1:8000 /visitor_access HTTP/1.1" 0.000, 127.0.0.1, "", "apifox/1.0.0 (https://www.apifox.cn)"
2023-11-16 19:08:17.860 {c8cfdde7dc159817959b552da0caf3d7} 200 "POST http 127.0.0.1:8000 /visitor_access HTTP/1.1" 0.000, 127.0.0.1, "", "apifox/1.0.0 (https://www.apifox.cn)"
2023-11-16 19:08:23.403 {34ee4d32de159817969b552de4a8e235} 200 "POST http 127.0.0.1:8000 /visitor_access HTTP/1.1" 0.000, 127.0.0.1, "", "apifox/1.0.0 (https://www.apifox.cn)"
2023-11-16 19:09:39.081 {ec2800d1ef159817979b552d499ebfef} 200 "POST http 127.0.0.1:8000 /visitor_access HTTP/1.1" 0.000, 127.0.0.1, "", "apifox/1.0.0 (https://www.apifox.cn)"
2023-11-16 19:10:45.012 {40e2de2aff159817ca12d232311b05e3} 200 "POST http 127.0.0.1:8000 /visitor_access HTTP/1.1" 0.000, 127.0.0.1, "", "apifox/1.0.0 (https://www.apifox.cn)"

@ -0,0 +1,53 @@
2023-11-17 09:12:37.188 {c4dc14f3ef4398173e700e3bfe9e13a6} 500 "POST http 127.0.0.1:8000 /visitor_access HTTP/1.1" 0.001, 127.0.0.1, "", "apifox/1.0.0 (https://www.apifox.cn)"
2023-11-17 09:13:54.617 {dc573ff60144981766680a23b577388b} 500 "POST http 127.0.0.1:8000 /visitor_access HTTP/1.1" 0.067, 127.0.0.1, "", "apifox/1.0.0 (https://www.apifox.cn)"
2023-11-17 09:14:33.135 {e49ce5ef0a44981767680a23bd29ac24} 500 "POST http 127.0.0.1:8000 /visitor_access HTTP/1.1" 0.038, 127.0.0.1, "", "apifox/1.0.0 (https://www.apifox.cn)"
2023-11-17 09:14:51.084 {78a7b51d0f44981783c1267e8827690a} 500 "POST http 127.0.0.1:8000 /visitor_access HTTP/1.1" 0.038, 127.0.0.1, "", "apifox/1.0.0 (https://www.apifox.cn)"
2023-11-17 09:16:49.401 {b4af67a72a4498176b33ce25de35cdc6} 200 "POST http 127.0.0.1:8000 /visitor_access HTTP/1.1" 0.080, 127.0.0.1, "", "apifox/1.0.0 (https://www.apifox.cn)"
2023-11-17 09:17:42.372 {786a02ff36449817024b2d318829f342} 200 "POST http 127.0.0.1:8000 /visitor_access HTTP/1.1" 0.042, 127.0.0.1, "", "apifox/1.0.0 (https://www.apifox.cn)"
2023-11-17 09:19:25.323 {a810d6f64e449817f2deff166522109f} 200 "POST http 127.0.0.1:8000 /visitor_access HTTP/1.1" 0.052, 127.0.0.1, "", "apifox/1.0.0 (https://www.apifox.cn)"
2023-11-17 09:26:50.458 {a4fa5b9bb6449817f3deff16fc734d50} 200 "POST http 192.168.26.30:8000 /visitor_access HTTP/1.1" 0.045, 192.168.26.30, "", "apifox/1.0.0 (https://www.apifox.cn)"
2023-11-17 09:40:34.645 {acb7977f7645981723e64d571605a8fd} 200 "POST http 192.168.26.30:8000 /visitor_access HTTP/1.1" 0.064, 192.168.26.30, "", "apifox/1.0.0 (https://www.apifox.cn)"
2023-11-17 09:51:55.011 {884958e91446981724e64d571a0bd24c} 200 "POST http 192.168.26.30:8000 /visitor_access HTTP/1.1" 0.051, 192.168.26.29, "", "apifox/1.0.0 (https://www.apifox.cn)"
2023-11-17 10:26:33.566 {3c3320daf8479817b785724426572a40} 200 "POST http 192.168.26.30:8000 /visitor_access HTTP/1.1" 0.097, 192.168.26.30, "", "apifox/1.0.0 (https://www.apifox.cn)"
2023-11-17 10:31:39.439 {901c6213404898178a2a4316f4451ff8} 200 "POST http 192.168.26.30:8000 /visitor_access HTTP/1.1" 0.067, 192.168.26.30, "", "apifox/1.0.0 (https://www.apifox.cn)"
2023-11-17 10:42:29.769 {1084f181d7489817361e175032131938} 200 "OPTIONS http 192.168.26.30:8000 /visitor_access HTTP/1.1" 0.001, 192.168.26.29, "http://localhost:8080/", "Mozilla/5.0 (iPhone; CPU iPhone OS 16_6 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/16.6 Mobile/15E148 Safari/604.1"
2023-11-17 10:46:34.568 {60992b8110499817371e1750c42284ce} 200 "OPTIONS http 192.168.26.30:8000 /visitor_access HTTP/1.1" 0.000, 192.168.26.29, "http://localhost:8080/", "Mozilla/5.0 (iPhone; CPU iPhone OS 16_6 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/16.6 Mobile/15E148 Safari/604.1"
2023-11-17 10:47:31.521 {f838b8c31d4998170dea0e3142dcff51} 200 "OPTIONS http 192.168.26.30:8000 /visitor_access HTTP/1.1" 0.001, 192.168.26.29, "http://localhost:8080/", "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/119.0.0.0 Safari/537.36"
2023-11-17 10:50:28.636 {682aa500474998170eea0e31be974635} 200 "OPTIONS http 192.168.26.30:8000 /visitor_access HTTP/1.1" 0.001, 192.168.26.29, "http://localhost:8080/", "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/119.0.0.0 Safari/537.36"
2023-11-17 10:53:05.263 {343c67786b4998170fea0e319803cbc1} 200 "OPTIONS http 192.168.26.30:8000 /visitor_access HTTP/1.1" 0.000, 192.168.26.29, "http://localhost:8080/", "Mozilla/5.0 (iPhone; CPU iPhone OS 16_6 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/16.6 Mobile/15E148 Safari/604.1"
2023-11-17 10:53:34.887 {1484205e7249981710ea0e318845e5b1} 200 "POST http 192.168.26.30:8000 /visitor_access HTTP/1.1" 0.001, 127.0.0.1, "http://localhost:8080/", "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/119.0.0.0 Safari/537.36"
2023-11-17 10:54:40.701 {4409d7b08149981711ea0e31ec142a8f} 200 "POST http 192.168.26.30:8000 /visitor_access HTTP/1.1" 0.002, 127.0.0.1, "http://localhost:8080/", "Mozilla/5.0 (iPhone; CPU iPhone OS 16_6 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/16.6 Mobile/15E148 Safari/604.1"
2023-11-17 10:56:16.597 {70e1cc04984998179fb26c372c75eb0c} 200 "POST http 192.168.26.30:8000 /visitor_access HTTP/1.1" 0.001, 127.0.0.1, "http://localhost:8080/", "Mozilla/5.0 (iPhone; CPU iPhone OS 16_6 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/16.6 Mobile/15E148 Safari/604.1"
2023-11-17 10:56:29.388 {40e145ff9a499817a0b26c37575b1905} 200 "POST http 192.168.26.30:8000 /visitor_access HTTP/1.1" 0.001, 127.0.0.1, "http://localhost:8080/", "Mozilla/5.0 (iPhone; CPU iPhone OS 16_6 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/16.6 Mobile/15E148 Safari/604.1"
2023-11-17 11:13:17.592 {4c63d7bc854a98175dd99673cbf8c363} 200 "POST http 192.168.26.30:8000 /visitor_statistic HTTP/1.1" 0.001, 192.168.26.30, "", "apifox/1.0.0 (https://www.apifox.cn)"
2023-11-17 11:13:47.643 {f006f8bb8c4a9817f1a2b366949be107} 200 "POST http 192.168.26.30:8000 /visitor_statistic HTTP/1.1" 0.001, 192.168.26.30, "", "apifox/1.0.0 (https://www.apifox.cn)"
2023-11-17 11:19:26.383 {d0e5839adb4a9817f2a2b366c32edc36} 200 "POST http 192.168.26.30:8000 /visitor_access HTTP/1.1" 0.000, 192.168.14.203, "http://192.168.26.29:8080/", "Mozilla/5.0 (iPhone; CPU iPhone OS 16_4_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Mobile/15E148 MicroMessenger/8.0.43(0x18002b2c) NetType/WIFI Language/zh_CN"
2023-11-17 14:27:51.156 {18c199af235598178232e27a6e4b1bc4} 200 "POST http 192.168.26.30:8000 /visitor_access HTTP/1.1" 0.066, 192.168.26.30, "", "apifox/1.0.0 (https://www.apifox.cn)"
2023-11-17 14:27:52.287 {c0e0f4f5235598178332e27a4c10f88b} 200 "POST http 192.168.26.30:8000 /visitor_access HTTP/1.1" 0.016, 192.168.26.30, "", "apifox/1.0.0 (https://www.apifox.cn)"
2023-11-17 14:27:53.595 {b094e443245598178432e27a6e5f3306} 200 "POST http 192.168.26.30:8000 /visitor_access HTTP/1.1" 0.017, 192.168.26.30, "", "apifox/1.0.0 (https://www.apifox.cn)"
2023-11-17 14:27:54.411 {342d8374245598178532e27a5909c826} 200 "POST http 192.168.26.30:8000 /visitor_access HTTP/1.1" 0.017, 192.168.26.30, "", "apifox/1.0.0 (https://www.apifox.cn)"
2023-11-17 14:27:55.157 {cc51fea0245598178632e27a14a320e9} 200 "POST http 192.168.26.30:8000 /visitor_access HTTP/1.1" 0.017, 192.168.26.30, "", "apifox/1.0.0 (https://www.apifox.cn)"
2023-11-17 14:27:55.863 {68851dcb245598178732e27a6193a3d3} 200 "POST http 192.168.26.30:8000 /visitor_access HTTP/1.1" 0.016, 192.168.26.30, "", "apifox/1.0.0 (https://www.apifox.cn)"
2023-11-17 14:27:56.580 {a84ad9f5245598178832e27aa5c5d844} 200 "POST http 192.168.26.30:8000 /visitor_access HTTP/1.1" 0.016, 192.168.26.30, "", "apifox/1.0.0 (https://www.apifox.cn)"
2023-11-17 14:27:57.337 {a4c9f422255598178932e27ab241c632} 200 "POST http 192.168.26.30:8000 /visitor_access HTTP/1.1" 0.017, 192.168.26.30, "", "apifox/1.0.0 (https://www.apifox.cn)"
2023-11-17 14:27:58.046 {ac3d494d255598178a32e27ab4322d34} 200 "POST http 192.168.26.30:8000 /visitor_access HTTP/1.1" 0.015, 192.168.26.30, "", "apifox/1.0.0 (https://www.apifox.cn)"
2023-11-17 14:27:58.734 {3cc33776255598178b32e27a1c508e6c} 200 "POST http 192.168.26.30:8000 /visitor_access HTTP/1.1" 0.017, 192.168.26.30, "", "apifox/1.0.0 (https://www.apifox.cn)"
2023-11-17 14:27:59.322 {4c8c4599255598178c32e27aeb4abd9b} 200 "POST http 192.168.26.30:8000 /visitor_access HTTP/1.1" 0.017, 192.168.26.30, "", "apifox/1.0.0 (https://www.apifox.cn)"
2023-11-17 14:28:00.031 {f41f8fc3255598178d32e27a340c715d} 200 "POST http 192.168.26.30:8000 /visitor_access HTTP/1.1" 0.016, 192.168.26.30, "", "apifox/1.0.0 (https://www.apifox.cn)"
2023-11-17 14:28:00.686 {545e92ea255598178e32e27afa40ce2d} 200 "POST http 192.168.26.30:8000 /visitor_access HTTP/1.1" 0.017, 192.168.26.30, "", "apifox/1.0.0 (https://www.apifox.cn)"
2023-11-17 14:28:01.334 {d0253211265598178f32e27a3a5f21f2} 200 "POST http 192.168.26.30:8000 /visitor_access HTTP/1.1" 0.017, 192.168.26.30, "", "apifox/1.0.0 (https://www.apifox.cn)"
2023-11-17 14:28:02.031 {d4adb83a265598179032e27a76b4bbb9} 200 "POST http 192.168.26.30:8000 /visitor_access HTTP/1.1" 0.017, 192.168.26.30, "", "apifox/1.0.0 (https://www.apifox.cn)"
2023-11-17 14:28:02.728 {78d64464265598179132e27a7b4b2714} 200 "POST http 192.168.26.30:8000 /visitor_access HTTP/1.1" 0.017, 192.168.26.30, "", "apifox/1.0.0 (https://www.apifox.cn)"
2023-11-17 14:28:03.376 {7c22e78a265598179232e27ab076141f} 200 "POST http 192.168.26.30:8000 /visitor_access HTTP/1.1" 0.017, 192.168.26.30, "", "apifox/1.0.0 (https://www.apifox.cn)"
2023-11-17 14:28:04.126 {dcd899b7265598179332e27aaa91f866} 200 "POST http 192.168.26.30:8000 /visitor_access HTTP/1.1" 0.017, 192.168.26.30, "", "apifox/1.0.0 (https://www.apifox.cn)"
2023-11-17 14:28:04.853 {a819eee2265598179432e27a86c4cc22} 200 "POST http 192.168.26.30:8000 /visitor_access HTTP/1.1" 0.017, 192.168.26.30, "", "apifox/1.0.0 (https://www.apifox.cn)"
2023-11-17 14:28:05.877 {fce80020275598179532e27ad811dcdf} 200 "POST http 192.168.26.30:8000 /visitor_access HTTP/1.1" 0.016, 192.168.26.30, "", "apifox/1.0.0 (https://www.apifox.cn)"
2023-11-17 14:28:06.601 {8423184b275598179632e27a535c31cb} 200 "POST http 192.168.26.30:8000 /visitor_access HTTP/1.1" 0.017, 192.168.26.30, "", "apifox/1.0.0 (https://www.apifox.cn)"
2023-11-17 14:28:07.307 {a85b2d75275598179732e27a11fe9dae} 200 "POST http 192.168.26.30:8000 /visitor_access HTTP/1.1" 0.017, 192.168.26.30, "", "apifox/1.0.0 (https://www.apifox.cn)"
2023-11-17 14:28:07.981 {5c51519d275598179832e27ad743499d} 200 "POST http 192.168.26.30:8000 /visitor_access HTTP/1.1" 0.018, 192.168.26.30, "", "apifox/1.0.0 (https://www.apifox.cn)"
2023-11-17 14:28:08.680 {7c0e18c7275598179932e27a899a8006} 200 "POST http 192.168.26.30:8000 /visitor_access HTTP/1.1" 0.016, 192.168.26.30, "", "apifox/1.0.0 (https://www.apifox.cn)"
2023-11-17 14:28:09.385 {b0d218f1275598179a32e27a4975a8a1} 200 "POST http 192.168.26.30:8000 /visitor_access HTTP/1.1" 0.016, 192.168.26.30, "", "apifox/1.0.0 (https://www.apifox.cn)"
2023-11-17 14:28:10.198 {343b8d21285598179b32e27a4d15335b} 200 "POST http 192.168.26.30:8000 /visitor_access HTTP/1.1" 0.016, 192.168.26.30, "", "apifox/1.0.0 (https://www.apifox.cn)"
2023-11-17 14:28:10.829 {8c502747285598179c32e27a4691b04b} 200 "POST http 192.168.26.30:8000 /visitor_access HTTP/1.1" 0.016, 192.168.26.30, "", "apifox/1.0.0 (https://www.apifox.cn)"
2023-11-17 14:28:11.566 {b84d0973285598179d32e27a1d186601} 200 "POST http 192.168.26.30:8000 /visitor_access HTTP/1.1" 0.017, 192.168.26.30, "", "apifox/1.0.0 (https://www.apifox.cn)"
2023-11-17 14:28:12.351 {20d4e6a1285598179e32e27a0dddf342} 200 "POST http 192.168.26.30:8000 /visitor_access HTTP/1.1" 0.016, 192.168.26.30, "", "apifox/1.0.0 (https://www.apifox.cn)"

@ -0,0 +1,57 @@
2023-11-18 09:58:41.657 {dcfe972b08959817fecdae238c7dcdaf} 200 "POST http 192.168.26.30:8000 /visitor_statistic HTTP/1.1" 0.000, 192.168.26.30, "", "apifox/1.0.0 (https://www.apifox.cn)"
2023-11-18 09:59:18.270 {9435e8b11095981721274c22a16a05d8} 200 "POST http 192.168.26.30:8000 /visitor_statistic HTTP/1.1" 0.001, 192.168.26.30, "", "apifox/1.0.0 (https://www.apifox.cn)"
2023-11-18 10:12:01.881 {d88bc67cc295981722274c22e986abfd} 200 "POST http 192.168.26.30:8000 /visitor_statistic HTTP/1.1" 0.000, 192.168.26.30, "", "apifox/1.0.0 (https://www.apifox.cn)"
2023-11-18 10:12:07.729 {80eea3d4c395981723274c22e1e7481d} 200 "POST http 192.168.26.30:8000 /visitor_statistic HTTP/1.1" 0.000, 192.168.26.30, "", "apifox/1.0.0 (https://www.apifox.cn)"
2023-11-18 10:12:12.187 {4c7c0de3c495981724274c225e146e92} 200 "POST http 192.168.26.30:8000 /visitor_statistic HTTP/1.1" 0.000, 192.168.26.30, "", "apifox/1.0.0 (https://www.apifox.cn)"
2023-11-18 10:12:14.857 {a4a42482c595981725274c221db3bbb7} 200 "POST http 192.168.26.30:8000 /visitor_statistic HTTP/1.1" 0.001, 192.168.26.30, "", "apifox/1.0.0 (https://www.apifox.cn)"
2023-11-18 14:51:11.700 {64213a56fea498179a08233c6eabf493} 200 "POST http 192.168.26.30:8000 /visitor_statistic HTTP/1.1" 0.093, 192.168.26.30, "", "apifox/1.0.0 (https://www.apifox.cn)"
2023-11-18 14:52:43.455 {e0c9cfb313a59817113f656419c147f2} 200 "POST http 192.168.26.30:8000 /visitor_statistic HTTP/1.1" 0.083, 192.168.26.30, "", "apifox/1.0.0 (https://www.apifox.cn)"
2023-11-18 14:53:45.859 {88ddf43c22a59817173f6564497cd072} 200 "POST http 192.168.26.30:8000 /visitor_statistic HTTP/1.1" 0.057, 192.168.26.30, "", "apifox/1.0.0 (https://www.apifox.cn)"
2023-11-18 14:54:34.316 {302936842da598171d3f656400f0b62e} 200 "POST http 192.168.26.30:8000 /visitor_statistic HTTP/1.1" 0.074, 192.168.26.30, "", "apifox/1.0.0 (https://www.apifox.cn)"
2023-11-18 14:55:21.578 {ecac258638a59817e2de8056cf3e244c} 200 "POST http 192.168.26.30:8000 /visitor_statistic HTTP/1.1" 0.059, 192.168.26.30, "", "apifox/1.0.0 (https://www.apifox.cn)"
2023-11-18 14:56:27.764 {78aa33e947a59817e8de805697bf702e} 200 "POST http 192.168.26.30:8000 /visitor_statistic HTTP/1.1" 0.158, 192.168.26.30, "", "apifox/1.0.0 (https://www.apifox.cn)"
2023-11-18 14:56:30.937 {c8629dad48a59817eede80564387f880} 200 "POST http 192.168.26.30:8000 /visitor_statistic HTTP/1.1" 0.036, 192.168.26.30, "", "apifox/1.0.0 (https://www.apifox.cn)"
2023-11-18 14:57:42.584 {7ce2fc5959a59817f3ad1c0fd88da6bb} 200 "POST http 192.168.26.30:8000 /visitor_statistic HTTP/1.1" 0.058, 192.168.26.30, "", "apifox/1.0.0 (https://www.apifox.cn)"
2023-11-18 14:58:33.181 {08486c1f65a598177994b1549ec30ab0} 200 "POST http 192.168.26.30:8000 /visitor_statistic HTTP/1.1" 0.112, 192.168.26.30, "", "apifox/1.0.0 (https://www.apifox.cn)"
2023-11-18 15:04:53.374 {4879b0a2bda598174fea073cbf10617a} 200 "POST http 192.168.26.30:8000 /visitor_statistic HTTP/1.1" 0.145, 192.168.26.30, "", "apifox/1.0.0 (https://www.apifox.cn)"
2023-11-18 15:06:25.385 {5c19310dd3a598170b72e9226e46d4b8} 200 "POST http 192.168.26.30:8000 /visitor_statistic HTTP/1.1" 0.175, 192.168.26.30, "", "apifox/1.0.0 (https://www.apifox.cn)"
2023-11-18 15:09:45.395 {9cf0d9a501a698173acd1927b2d5b1cc} 200 "POST http 192.168.26.30:8000 /visitor_statistic HTTP/1.1" 0.055, 192.168.26.30, "", "apifox/1.0.0 (https://www.apifox.cn)"
2023-11-18 15:11:08.336 {d4e1b8f314a69817ae29bf780ee3448b} 200 "POST http 192.168.26.30:8000 /visitor_statistic HTTP/1.1" 0.086, 192.168.26.30, "", "apifox/1.0.0 (https://www.apifox.cn)"
2023-11-18 15:32:51.884 {50bfd17344a79817b529bf78beb0ac78} 200 "POST http 192.168.26.30:8000 /visitor_statistic HTTP/1.1" 0.107, 192.168.26.30, "", "apifox/1.0.0 (https://www.apifox.cn)"
2023-11-18 15:33:26.251 {0c62fa754ca79817bb29bf78f1272567} 200 "POST http 192.168.26.30:8000 /visitor_statistic HTTP/1.1" 0.080, 192.168.26.30, "", "apifox/1.0.0 (https://www.apifox.cn)"
2023-11-18 15:58:15.404 {c0922230a7a89817c129bf7817e5daad} 200 "POST http 192.168.26.30:8000 /visitor_statistic HTTP/1.1" 0.052, 192.168.26.30, "", "apifox/1.0.0 (https://www.apifox.cn)"
2023-11-18 16:09:41.875 {24ddd10447a99817fbcbec75aed44882} 200 "POST http 192.168.26.30:8000 /visitor_statistic HTTP/1.1" 0.055, 192.168.26.30, "", "apifox/1.0.0 (https://www.apifox.cn)"
2023-11-18 16:17:03.604 {f82728ddada9981795ed1820a2c0cb47} 200 "POST http 192.168.26.30:8000 /visitor_statistic HTTP/1.1" 0.067, 192.168.26.30, "", "apifox/1.0.0 (https://www.apifox.cn)"
2023-11-18 16:24:30.350 {341478e315aa98179ced1820a7781d0e} 500 "POST http 192.168.26.30:8000 /visitor_access HTTP/1.1" 0.029, 127.0.0.1, "http://localhost:8080/", "Mozilla/5.0 (iPhone; CPU iPhone OS 16_6 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/16.6 Mobile/15E148 Safari/604.1"
2023-11-18 16:27:12.852 {cc9296b53baa98173656e7284e9ba3a3} 200 "POST http 192.168.26.30:8000 /visitor_statistic HTTP/1.1" 0.094, 192.168.26.30, "", "apifox/1.0.0 (https://www.apifox.cn)"
2023-11-18 16:29:22.547 {e0ae2cea59aa98178f7dc0203dadde78} 500 "POST http 192.168.26.30:8000 /visitor_access HTTP/1.1" 0.058, 127.0.0.1, "http://localhost:8080/", "Mozilla/5.0 (iPhone; CPU iPhone OS 16_6 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/16.6 Mobile/15E148 Safari/604.1"
2023-11-18 16:29:45.404 {1854fa3e5faa9817907dc020868fc590} 200 "POST http 192.168.26.30:8000 /visitor_access HTTP/1.1" 0.017, 192.168.26.30, "", "apifox/1.0.0 (https://www.apifox.cn)"
2023-11-18 16:33:08.302 {44d2d97b8eaa9817917dc020f40f29a1} 500 "POST http 192.168.26.30:8000 /visitor_access HTTP/1.1" 0.030, 192.168.26.30, "", "apifox/1.0.0 (https://www.apifox.cn)"
2023-11-18 16:33:20.281 {248be64691aa9817927dc020ed8f9be7} 500 "POST http 192.168.26.30:8000 /visitor_access HTTP/1.1" 0.013, 192.168.26.30, "", "apifox/1.0.0 (https://www.apifox.cn)"
2023-11-18 16:33:56.557 {e06725b799aa9817937dc02018248738} 500 "POST http 192.168.26.30:8000 /visitor_access HTTP/1.1" 0.046, 192.168.26.30, "", "apifox/1.0.0 (https://www.apifox.cn)"
2023-11-18 16:35:40.905 {b41a1302b2aa9817db91635ac9d477b6} 200 "POST http 192.168.26.30:8000 /visitor_access HTTP/1.1" 0.057, 192.168.26.30, "", "apifox/1.0.0 (https://www.apifox.cn)"
2023-11-18 16:35:47.808 {f8d8e8a0b3aa9817dc91635ab9bf314b} 200 "POST http 192.168.26.30:8000 /visitor_access HTTP/1.1" 0.001, 192.168.26.30, "", "apifox/1.0.0 (https://www.apifox.cn)"
2023-11-18 16:36:49.117 {c04a37e7c1aa9817dd91635ac33bc2b8} 200 "POST http 192.168.26.30:8000 /visitor_access HTTP/1.1" 0.001, 127.0.0.1, "http://localhost:8080/", "Mozilla/5.0 (iPhone; CPU iPhone OS 16_6 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/16.6 Mobile/15E148 Safari/604.1"
2023-11-18 16:43:26.377 {3c51d6631eab9817de91635a2dfef558} 200 "POST http 192.168.26.30:8000 /visitor_access HTTP/1.1" 0.033, 127.0.0.1, "http://localhost:8080/", "Mozilla/5.0 (iPhone; CPU iPhone OS 16_6 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/16.6 Mobile/15E148 Safari/604.1"
2023-11-18 16:47:26.625 {ec81975256ab9817df91635a56dedfd6} 200 "POST http 192.168.26.30:8000 /visitor_statistic HTTP/1.1" 0.052, 192.168.26.30, "", "apifox/1.0.0 (https://www.apifox.cn)"
2023-11-18 16:47:39.060 {7c75f33859ab9817e591635abb4daf13} 200 "POST http 192.168.26.30:8000 /visitor_statistic HTTP/1.1" 0.032, 192.168.26.30, "", "apifox/1.0.0 (https://www.apifox.cn)"
2023-11-18 16:49:18.672 {4ceee56870ab98173be7eb3d777ee216} 200 "POST http 192.168.26.30:8000 /visitor_statistic HTTP/1.1" 0.056, 192.168.26.30, "", "apifox/1.0.0 (https://www.apifox.cn)"
2023-11-18 16:51:25.656 {4868e0f88dab98170e156e79f7c99cd0} 200 "POST http 192.168.26.30:8000 /visitor_statistic HTTP/1.1" 0.070, 192.168.26.30, "", "apifox/1.0.0 (https://www.apifox.cn)"
2023-11-18 16:53:20.968 {b416f9d2a8ab981715156e79238f58c9} 200 "POST http 192.168.26.30:8000 /visitor_access HTTP/1.1" 0.054, 192.168.14.203, "http://192.168.26.29:8080/", "Mozilla/5.0 (iPhone; CPU iPhone OS 16_4_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Mobile/15E148 MicroMessenger/8.0.43(0x18002b2c) NetType/WIFI Language/zh_CN"
2023-11-18 17:07:07.561 {6065c34769ac98172bee6e211933d94f} 200 "POST http 192.168.26.30:8000 /visitor_statistic HTTP/1.1" 0.054, 192.168.26.30, "", "apifox/1.0.0 (https://www.apifox.cn)"
2023-11-18 17:07:13.460 {789cbca86aac981732ee6e21c65adfb7} 200 "POST http 192.168.26.30:8000 /visitor_statistic HTTP/1.1" 0.031, 192.168.26.30, "", "apifox/1.0.0 (https://www.apifox.cn)"
2023-11-18 17:09:32.189 {749476f38aac98171658f9384b2147ab} 200 "POST http 192.168.26.30:8000 /visitor_statistic HTTP/1.1" 0.067, 192.168.26.30, "", "apifox/1.0.0 (https://www.apifox.cn)"
2023-11-18 17:09:37.533 {fc0a02368cac9817dd576677d1414ec0} 200 "POST http 192.168.26.30:8000 /visitor_statistic HTTP/1.1" 0.000, 192.168.26.30, "", "apifox/1.0.0 (https://www.apifox.cn)"
2023-11-18 17:12:28.561 {30119a04b4ac9817de5766770131d40b} 200 "POST http 192.168.26.30:8000 /visitor_statistic HTTP/1.1" 0.058, 192.168.26.30, "", "apifox/1.0.0 (https://www.apifox.cn)"
2023-11-18 17:13:58.683 {a4336600c9ac9817e5576677f26cbdf8} 200 "POST http 192.168.26.30:8000 /visitor_access HTTP/1.1" 0.056, 192.168.14.203, "http://192.168.26.29:8080/", "Mozilla/5.0 (iPhone; CPU iPhone OS 16_5_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Mobile/15E148 MicroMessenger/8.0.40(0x18002831) NetType/WIFI Language/zh_CN"
2023-11-18 17:20:26.578 {e468f55023ad9817e65766776f01a46c} 200 "POST http 192.168.26.30:8000 /visitor_access HTTP/1.1" 0.052, 192.168.14.203, "http://192.168.26.29:8080/", "Mozilla/5.0 (iPhone; CPU iPhone OS 16_4_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/16.4 Mobile/15E148 Safari/604.1"
2023-11-18 17:21:28.214 {480d2eac31ad9817e75766773f746aba} 200 "POST http 192.168.26.30:8000 /visitor_access HTTP/1.1" 0.028, 192.168.14.203, "http://192.168.26.29:8080/", "Mozilla/5.0 (iPhone; CPU iPhone OS 16_2 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Mobile/15E148 MicroMessenger/8.0.43(0x18002b2c) NetType/WIFI Language/zh_CN"
2023-11-18 17:29:25.155 {48a0e4b6a0ad9817e85766779147b648} 200 "POST http 192.168.26.30:8000 /visitor_statistic HTTP/1.1" 0.048, 192.168.26.30, "", "apifox/1.0.0 (https://www.apifox.cn)"
2023-11-18 17:29:39.271 {e4341e03a4ad9817ee576677169c1a8f} 200 "POST http 192.168.26.30:8000 /visitor_statistic HTTP/1.1" 0.001, 192.168.26.30, "", "apifox/1.0.0 (https://www.apifox.cn)"
2023-11-18 17:29:45.272 {3c342067a5ad9817ef576677ed89c1d1} 200 "POST http 192.168.26.30:8000 /visitor_statistic HTTP/1.1" 0.029, 192.168.26.30, "", "apifox/1.0.0 (https://www.apifox.cn)"
2023-11-18 17:29:51.145 {bcdb1bc5a6ad9817f55766771cebe988} 200 "POST http 192.168.26.30:8000 /visitor_statistic HTTP/1.1" 0.030, 192.168.26.30, "", "apifox/1.0.0 (https://www.apifox.cn)"
2023-11-18 17:30:03.762 {9811b6b1a9ad9817fb5766776bc7beef} 200 "POST http 192.168.26.30:8000 /visitor_statistic HTTP/1.1" 0.088, 192.168.26.30, "", "apifox/1.0.0 (https://www.apifox.cn)"
2023-11-18 17:33:21.640 {acfe55c9d7ad9817833a4c751c873861} 200 "POST http 192.168.26.30:8000 /visitor_statistic HTTP/1.1" 0.001, 192.168.26.30, "", "apifox/1.0.0 (https://www.apifox.cn)"
2023-11-18 17:33:29.709 {5c69b6a6d9ad9817843a4c75bafc499e} 200 "POST http 192.168.26.30:8000 /visitor_statistic HTTP/1.1" 0.061, 192.168.26.30, "", "apifox/1.0.0 (https://www.apifox.cn)"
2023-11-18 17:33:33.372 {78caa584daad98178b3a4c753808e810} 200 "POST http 192.168.26.30:8000 /visitor_statistic HTTP/1.1" 0.000, 192.168.26.30, "", "apifox/1.0.0 (https://www.apifox.cn)"
2023-11-18 17:33:37.090 {70db4260dbad98178c3a4c753c19444a} 200 "POST http 192.168.26.30:8000 /visitor_statistic HTTP/1.1" 0.034, 192.168.26.30, "", "apifox/1.0.0 (https://www.apifox.cn)"

@ -0,0 +1,48 @@
2023-11-20 09:20:04.679 {ccc01cd3153099174ac6db7e6a715abf} 200 "POST http 192.168.26.30:8000 /visitor_statistic HTTP/1.1" 0.076, 192.168.26.30, "", "apifox/1.0.0 (https://www.apifox.cn)"
2023-11-20 09:20:13.843 {2cf485f71730991751c6db7ef06a47b9} 200 "POST http 192.168.26.30:8000 /visitor_statistic HTTP/1.1" 0.039, 192.168.26.30, "", "apifox/1.0.0 (https://www.apifox.cn)"
2023-11-20 10:19:28.702 {dcf1e3a753339917996f600c16d47ba2} 200 "POST http 192.168.26.30:8000 /visitor_statistic HTTP/1.1" 0.001, 192.168.26.30, "", "apifox/1.0.0 (https://www.apifox.cn)"
2023-11-20 14:50:03.955 {505556b8174299175dc2c16499957b55} 200 "POST http 192.168.26.30:8000 /visitor_statistic HTTP/1.1" 0.002, 192.168.26.30, "", "apifox/1.0.0 (https://www.apifox.cn)"
2023-11-20 14:50:23.192 {c04706331c42991771d32f3878edf830} 200 "POST http 192.168.26.30:8000 /visitor_statistic HTTP/1.1" 0.001, 192.168.26.30, "", "apifox/1.0.0 (https://www.apifox.cn)"
2023-11-20 15:05:13.996 {38d90f9beb4299175f592614e7691845} 200 "POST http 192.168.26.30:8000 /visitor_statistic HTTP/1.1" 0.001, 192.168.26.30, "", "apifox/1.0.0 (https://www.apifox.cn)"
2023-11-20 15:06:01.007 {449c2a8df64299178c9357046713ee6e} 200 "POST http 192.168.26.30:8000 /visitor_statistic HTTP/1.1" 0.001, 192.168.26.30, "", "apifox/1.0.0 (https://www.apifox.cn)"
2023-11-20 15:12:42.662 {88619911544399170c7a3a37c8437320} 200 "POST http 192.168.26.30:8000 /visitor_statistic HTTP/1.1" 0.002, 192.168.26.30, "", "apifox/1.0.0 (https://www.apifox.cn)"
2023-11-20 15:20:46.759 {483b14c8c44399174d3d674b614c2709} 200 "POST http 192.168.26.30:8000 /visitor_statistic HTTP/1.1" 0.001, 192.168.26.30, "", "apifox/1.0.0 (https://www.apifox.cn)"
2023-11-20 15:21:40.833 {9c771c5fd143991775ab4831547c42c9} 200 "POST http 192.168.26.30:8000 /visitor_statistic HTTP/1.1" 0.002, 192.168.26.30, "", "apifox/1.0.0 (https://www.apifox.cn)"
2023-11-20 15:28:08.871 {188ff3b72b44991745469f515da015c3} 200 "POST http 192.168.26.30:8000 /visitor_statistic HTTP/1.1" 0.002, 192.168.26.30, "", "apifox/1.0.0 (https://www.apifox.cn)"
2023-11-20 15:28:54.864 {107a6e6d36449917a78da663c26acf89} 200 "POST http 192.168.26.30:8000 /visitor_statistic HTTP/1.1" 0.001, 192.168.26.30, "", "apifox/1.0.0 (https://www.apifox.cn)"
2023-11-20 15:28:59.948 {b4e86c9c3744991795324f5756a30e05} 200 "POST http 192.168.26.30:8000 /visitor_statistic HTTP/1.1" 0.001, 192.168.26.30, "", "apifox/1.0.0 (https://www.apifox.cn)"
2023-11-20 15:44:55.146 {48adab021645991789ec7f3561aa0c83} 200 "POST http 192.168.26.30:8000 /visitor_statistic HTTP/1.1" 0.001, 192.168.26.30, "", "apifox/1.0.0 (https://www.apifox.cn)"
2023-11-20 15:45:52.083 {5c1b67442345991791e1e35b81662260} 200 "POST http 192.168.26.30:8000 /visitor_statistic HTTP/1.1" 0.001, 192.168.26.30, "", "apifox/1.0.0 (https://www.apifox.cn)"
2023-11-20 15:46:09.856 {b4dec4672745991792e1e35b4d6f8e13} 200 "POST http 192.168.26.30:8000 /visitor_statistic HTTP/1.1" 0.000, 192.168.26.30, "", "apifox/1.0.0 (https://www.apifox.cn)"
2023-11-20 15:47:26.861 {883da6553945991793e1e35bfd189155} 200 "POST http 192.168.26.30:8000 /visitor_statistic HTTP/1.1" 0.000, 192.168.26.30, "", "apifox/1.0.0 (https://www.apifox.cn)"
2023-11-20 15:49:55.847 {a09ccf055c4599175c5c7c184e902242} 200 "POST http 192.168.26.30:8000 /visitor_statistic HTTP/1.1" 0.002, 192.168.26.30, "", "apifox/1.0.0 (https://www.apifox.cn)"
2023-11-20 15:58:05.178 {a05681ebcd459917eb58b972c176bb3e} 200 "POST http 192.168.26.30:8000 /visitor_statistic HTTP/1.1" 0.148, 192.168.26.30, "", "apifox/1.0.0 (https://www.apifox.cn)"
2023-11-20 16:00:51.709 {2c2f56b3f445991753c6ef5982dced6d} 200 "POST http 192.168.26.30:8000 /visitor_statistic HTTP/1.1" 0.117, 192.168.26.30, "", "apifox/1.0.0 (https://www.apifox.cn)"
2023-11-20 16:03:37.569 {84fe42551b4699175096d1014d56b1b1} 200 "POST http 192.168.26.30:8000 /visitor_statistic HTTP/1.1" 0.052, 192.168.26.30, "", "apifox/1.0.0 (https://www.apifox.cn)"
2023-11-20 16:04:15.301 {f0c07f1d244699175196d101ba35c233} 200 "POST http 192.168.26.30:8000 /visitor_statistic HTTP/1.1" 0.065, 192.168.26.30, "", "apifox/1.0.0 (https://www.apifox.cn)"
2023-11-20 16:04:22.730 {ac791edb254699175296d101621cc1f9} 200 "POST http 192.168.26.30:8000 /visitor_statistic HTTP/1.1" 0.017, 192.168.26.30, "", "apifox/1.0.0 (https://www.apifox.cn)"
2023-11-20 16:04:39.729 {803e6bce294699175396d101f22f61bc} 200 "POST http 192.168.26.30:8000 /visitor_statistic HTTP/1.1" 0.050, 192.168.26.30, "", "apifox/1.0.0 (https://www.apifox.cn)"
2023-11-20 16:05:04.662 {f48d859f2f4699175496d101eb8ebacf} 200 "POST http 192.168.26.30:8000 /visitor_statistic HTTP/1.1" 0.000, 192.168.26.30, "", "apifox/1.0.0 (https://www.apifox.cn)"
2023-11-20 16:05:09.691 {400a77c6304699175596d1014f62d9c6} 200 "POST http 192.168.26.30:8000 /visitor_statistic HTTP/1.1" 0.080, 192.168.26.30, "", "apifox/1.0.0 (https://www.apifox.cn)"
2023-11-20 16:06:03.496 {3c70254f3d4699172894686c2f7bfae8} 200 "POST http 192.168.26.30:8000 /visitor_statistic HTTP/1.1" 0.053, 192.168.26.30, "", "apifox/1.0.0 (https://www.apifox.cn)"
2023-11-20 16:06:08.285 {ec05156e3e4699172994686cc34c13f1} 200 "POST http 192.168.26.30:8000 /visitor_statistic HTTP/1.1" 0.028, 192.168.26.30, "", "apifox/1.0.0 (https://www.apifox.cn)"
2023-11-20 16:06:18.190 {d8f367bc404699172a94686c371302ac} 200 "POST http 192.168.26.30:8000 /visitor_statistic HTTP/1.1" 0.029, 192.168.26.30, "", "apifox/1.0.0 (https://www.apifox.cn)"
2023-11-20 16:06:23.499 {b4e0e8f8414699172b94686c3df59bec} 200 "POST http 192.168.26.30:8000 /visitor_statistic HTTP/1.1" 0.028, 192.168.26.30, "", "apifox/1.0.0 (https://www.apifox.cn)"
2023-11-20 16:24:53.450 {2c96e8634447991748d94b04a027f07c} 200 "POST http 192.168.26.30:8000 /visitor_statistic HTTP/1.1" 0.082, 192.168.26.30, "", "apifox/1.0.0 (https://www.apifox.cn)"
2023-11-20 16:25:05.597 {c83be53b4747991749d94b045561eb31} 200 "POST http 192.168.26.30:8000 /visitor_statistic HTTP/1.1" 0.015, 192.168.26.30, "", "apifox/1.0.0 (https://www.apifox.cn)"
2023-11-20 16:25:12.894 {684dd0ed484799174ad94b04897873d8} 200 "POST http 192.168.26.30:8000 /visitor_statistic HTTP/1.1" 0.032, 192.168.26.30, "", "apifox/1.0.0 (https://www.apifox.cn)"
2023-11-20 16:34:44.010 {c49b4de6cd4799171659bd29c1a4a18a} 200 "POST http 192.168.26.30:8000 /visitor_statistic HTTP/1.1" 0.044, 192.168.26.30, "", "apifox/1.0.0 (https://www.apifox.cn)"
2023-11-20 16:34:56.245 {147720c2d04799171759bd292cc3063b} 200 "POST http 192.168.26.30:8000 /visitor_statistic HTTP/1.1" 0.001, 192.168.26.30, "", "apifox/1.0.0 (https://www.apifox.cn)"
2023-11-20 16:36:29.533 {d8fb8b7ae6479917c6e1e32082799a81} 200 "POST http 192.168.26.30:8000 /visitor_statistic HTTP/1.1" 0.000, 192.168.26.30, "", "apifox/1.0.0 (https://www.apifox.cn)"
2023-11-20 16:36:34.321 {2ca4e997e7479917c7e1e3205d5bde30} 200 "POST http 192.168.26.30:8000 /visitor_statistic HTTP/1.1" 0.001, 192.168.26.30, "", "apifox/1.0.0 (https://www.apifox.cn)"
2023-11-20 16:37:58.711 {105fe13dfb4799170b45bf4a02360594} 200 "POST http 192.168.26.30:8000 /visitor_statistic HTTP/1.1" 0.002, 192.168.26.30, "", "apifox/1.0.0 (https://www.apifox.cn)"
2023-11-20 16:38:45.388 {4c46111c06489917c752cf2ec9aa658b} 200 "POST http 192.168.26.30:8000 /visitor_statistic HTTP/1.1" 0.002, 192.168.26.30, "", "apifox/1.0.0 (https://www.apifox.cn)"
2023-11-20 16:41:53.134 {e0c1b0d231489917bf0e1e11d46824e1} 200 "POST http 192.168.26.30:8000 /visitor_statistic HTTP/1.1" 0.000, 192.168.26.30, "", "apifox/1.0.0 (https://www.apifox.cn)"
2023-11-20 16:45:49.624 {f4968add68489917fd1faf6874747956} 200 "POST http 192.168.26.30:8000 /visitor_statistic HTTP/1.1" 0.085, 192.168.26.30, "", "apifox/1.0.0 (https://www.apifox.cn)"
2023-11-20 16:46:47.819 {30f28d6c76489917f878e86f56998217} 200 "POST http 192.168.26.30:8000 /visitor_statistic HTTP/1.1" 0.046, 192.168.26.30, "", "apifox/1.0.0 (https://www.apifox.cn)"
2023-11-20 16:46:57.405 {e0c2e2a878489917f978e86f564a306d} 200 "POST http 192.168.26.30:8000 /visitor_statistic HTTP/1.1" 0.030, 192.168.26.30, "", "apifox/1.0.0 (https://www.apifox.cn)"
2023-11-20 16:49:18.353 {745a267899489917b57499208e66e725} 200 "POST http 192.168.26.30:8000 /visitor_statistic HTTP/1.1" 0.061, 192.168.26.30, "", "apifox/1.0.0 (https://www.apifox.cn)"
2023-11-20 16:53:07.092 {040d9bb8ce48991793734a54633bd6f0} 200 "POST http 192.168.26.30:8000 /visitor_statistic HTTP/1.1" 0.086, 192.168.26.30, "", "apifox/1.0.0 (https://www.apifox.cn)"
2023-11-20 16:53:47.238 {48fd1910d84899173d7eae6e79dcbd04} 200 "POST http 192.168.26.30:8000 /visitor_statistic HTTP/1.1" 0.109, 192.168.26.30, "", "apifox/1.0.0 (https://www.apifox.cn)"
2023-11-20 16:58:59.616 {b4ca9acb20499917cbb9743a00a2919a} 200 "POST http 192.168.26.30:8000 /visitor_statistic HTTP/1.1" 0.104, 192.168.26.30, "", "apifox/1.0.0 (https://www.apifox.cn)"
2023-11-20 16:59:04.981 {1cf7080922499917ccb9743ae5548e37} 200 "POST http 192.168.26.30:8000 /visitor_statistic HTTP/1.1" 0.144, 192.168.26.30, "", "apifox/1.0.0 (https://www.apifox.cn)"

@ -0,0 +1,9 @@
2023-11-16 16:53:14.187 {bc155a1f7e0e9817f89c7330becbb6d2} 200 "POST http 127.0.0.1:8000 /visitor_access HTTP/1.1" 0.000, 127.0.0.1, "", "apifox/1.0.0 (https://www.apifox.cn)", 51, "Validation Failed", ""
Stack:
访客名称过长
2023-11-16 19:08:17.859 {c8cfdde7dc159817959b552da0caf3d7} 200 "POST http 127.0.0.1:8000 /visitor_access HTTP/1.1" 0.000, 127.0.0.1, "", "apifox/1.0.0 (https://www.apifox.cn)", 51, "Validation Failed", ""
Stack:
访客名称过长
2023-11-16 19:09:39.080 {ec2800d1ef159817979b552d499ebfef} 200 "POST http 127.0.0.1:8000 /visitor_access HTTP/1.1" 0.000, 127.0.0.1, "", "apifox/1.0.0 (https://www.apifox.cn)", 51, "Validation Failed", ""
Stack:
手机号非法

@ -0,0 +1,89 @@
2023-11-17 09:12:37.187 {c4dc14f3ef4398173e700e3bfe9e13a6} 500 "POST http 127.0.0.1:8000 /visitor_access HTTP/1.1" 0.001, 127.0.0.1, "", "apifox/1.0.0 (https://www.apifox.cn)", 56, "Invalid Configuration", ""
Stack:
1. cannot find database driver for specified database type "mysql", did you misspell type name "mysql" or forget importing the database driver? possible reference: https://github.com/gogf/gf/tree/master/contrib/drivers
1). vistor/internal/dao/internal.(*VisitorRecordDao).DB
D:/snc_go/src/visitor/internal/dao/internal/visitor_record.go:68
2). vistor/internal/dao/internal.(*VisitorRecordDao).Ctx
D:/snc_go/src/visitor/internal/dao/internal/visitor_record.go:88
3). vistor/internal/service.(*visitorService).VisitorAccess
D:/snc_go/src/visitor/internal/service/visitor.go:19
4). vistor/internal/controller.(*cVisitor).VisitorAccess
D:/snc_go/src/visitor/internal/controller/visitor.go:18
2023-11-17 09:13:54.616 {dc573ff60144981766680a23b577388b} 500 "POST http 127.0.0.1:8000 /visitor_access HTTP/1.1" 0.067, 127.0.0.1, "", "apifox/1.0.0 (https://www.apifox.cn)", 68, "Internal Panic", ""
Stack:
1. exception recovered
1). vistor/internal/service.(*visitorService).VisitorAccess
D:/snc_go/src/visitor/internal/service/visitor.go:21
2). vistor/internal/controller.(*cVisitor).VisitorAccess
D:/snc_go/src/visitor/internal/controller/visitor.go:18
2. runtime error: invalid memory address or nil pointer dereference
2023-11-17 09:14:33.135 {e49ce5ef0a44981767680a23bd29ac24} 500 "POST http 127.0.0.1:8000 /visitor_access HTTP/1.1" 0.038, 127.0.0.1, "", "apifox/1.0.0 (https://www.apifox.cn)", 68, "Internal Panic", ""
Stack:
1. exception recovered
1). vistor/internal/service.(*visitorService).VisitorAccess
D:/snc_go/src/visitor/internal/service/visitor.go:21
2). vistor/internal/controller.(*cVisitor).VisitorAccess
D:/snc_go/src/visitor/internal/controller/visitor.go:18
2. runtime error: invalid memory address or nil pointer dereference
2023-11-17 09:14:51.084 {78a7b51d0f44981783c1267e8827690a} 500 "POST http 127.0.0.1:8000 /visitor_access HTTP/1.1" 0.038, 127.0.0.1, "", "apifox/1.0.0 (https://www.apifox.cn)", 68, "Internal Panic", ""
Stack:
1. exception recovered
1). vistor/internal/service.(*visitorService).VisitorAccess
D:/snc_go/src/visitor/internal/service/visitor.go:21
2). vistor/internal/controller.(*cVisitor).VisitorAccess
D:/snc_go/src/visitor/internal/controller/visitor.go:18
2. runtime error: invalid memory address or nil pointer dereference
2023-11-17 09:16:49.400 {b4af67a72a4498176b33ce25de35cdc6} 200 "POST http 127.0.0.1:8000 /visitor_access HTTP/1.1" 0.080, 127.0.0.1, "", "apifox/1.0.0 (https://www.apifox.cn)", -1, "", ""
Stack:
1. 提交失败请重试
1). vistor/internal/controller.(*cVisitor).VisitorAccess
D:/snc_go/src/visitor/internal/controller/visitor.go:20
2023-11-17 09:17:42.371 {786a02ff36449817024b2d318829f342} 200 "POST http 127.0.0.1:8000 /visitor_access HTTP/1.1" 0.042, 127.0.0.1, "", "apifox/1.0.0 (https://www.apifox.cn)", -1, "", ""
Stack:
1. 提交失败请重试
1). vistor/internal/controller.(*cVisitor).VisitorAccess
D:/snc_go/src/visitor/internal/controller/visitor.go:22
2023-11-17 10:42:29.768 {1084f181d7489817361e175032131938} 200 "OPTIONS http 192.168.26.30:8000 /visitor_access HTTP/1.1" 0.001, 192.168.26.29, "http://localhost:8080/", "Mozilla/5.0 (iPhone; CPU iPhone OS 16_6 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/16.6 Mobile/15E148 Safari/604.1", 51, "Validation Failed", ""
Stack:
请填写拜访人名称
2023-11-17 10:46:34.567 {60992b8110499817371e1750c42284ce} 200 "OPTIONS http 192.168.26.30:8000 /visitor_access HTTP/1.1" 0.000, 192.168.26.29, "http://localhost:8080/", "Mozilla/5.0 (iPhone; CPU iPhone OS 16_6 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/16.6 Mobile/15E148 Safari/604.1", 51, "Validation Failed", ""
Stack:
请填写拜访人名称
2023-11-17 10:47:31.519 {f838b8c31d4998170dea0e3142dcff51} 200 "OPTIONS http 192.168.26.30:8000 /visitor_access HTTP/1.1" 0.001, 192.168.26.29, "http://localhost:8080/", "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/119.0.0.0 Safari/537.36", 51, "Validation Failed", ""
Stack:
请填写拜访人名称
2023-11-17 10:50:28.635 {682aa500474998170eea0e31be974635} 200 "OPTIONS http 192.168.26.30:8000 /visitor_access HTTP/1.1" 0.001, 192.168.26.29, "http://localhost:8080/", "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/119.0.0.0 Safari/537.36", 51, "Validation Failed", ""
Stack:
请填写拜访人名称
2023-11-17 10:53:05.262 {343c67786b4998170fea0e319803cbc1} 200 "OPTIONS http 192.168.26.30:8000 /visitor_access HTTP/1.1" 0.000, 192.168.26.29, "http://localhost:8080/", "Mozilla/5.0 (iPhone; CPU iPhone OS 16_6 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/16.6 Mobile/15E148 Safari/604.1", 51, "Validation Failed", ""
Stack:
请填写拜访人名称
2023-11-17 10:53:34.887 {1484205e7249981710ea0e318845e5b1} 200 "POST http 192.168.26.30:8000 /visitor_access HTTP/1.1" 0.001, 127.0.0.1, "http://localhost:8080/", "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/119.0.0.0 Safari/537.36", 51, "Validation Failed", ""
Stack:
请填写拜访人名称
2023-11-17 10:54:40.700 {4409d7b08149981711ea0e31ec142a8f} 200 "POST http 192.168.26.30:8000 /visitor_access HTTP/1.1" 0.002, 127.0.0.1, "http://localhost:8080/", "Mozilla/5.0 (iPhone; CPU iPhone OS 16_6 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/16.6 Mobile/15E148 Safari/604.1", 51, "Validation Failed", ""
Stack:
请填写拜访人名称
2023-11-17 10:56:16.597 {70e1cc04984998179fb26c372c75eb0c} 200 "POST http 192.168.26.30:8000 /visitor_access HTTP/1.1" 0.001, 127.0.0.1, "http://localhost:8080/", "Mozilla/5.0 (iPhone; CPU iPhone OS 16_6 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/16.6 Mobile/15E148 Safari/604.1", 51, "Validation Failed", ""
Stack:
请填写拜访人名称
2023-11-17 10:56:29.388 {40e145ff9a499817a0b26c37575b1905} 200 "POST http 192.168.26.30:8000 /visitor_access HTTP/1.1" 0.001, 127.0.0.1, "http://localhost:8080/", "Mozilla/5.0 (iPhone; CPU iPhone OS 16_6 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/16.6 Mobile/15E148 Safari/604.1", 51, "Validation Failed", ""
Stack:
请填写拜访人名称
2023-11-17 11:13:47.642 {f006f8bb8c4a9817f1a2b366949be107} 200 "POST http 192.168.26.30:8000 /visitor_statistic HTTP/1.1" 0.001, 192.168.26.30, "", "apifox/1.0.0 (https://www.apifox.cn)", -1, "", ""
Stack:
1. 系统繁忙请稍后再试
1). vistor/internal/controller.(*cVisitor).VisitorStatistic
D:/snc_go/src/visitor/internal/controller/visitor.go:27
2). vistor/internal/middleware.HandlerResponse
D:/snc_go/src/visitor/internal/middleware/MiddlewareHandlerResponse.go:21
2023-11-17 11:19:26.383 {d0e5839adb4a9817f2a2b366c32edc36} 200 "POST http 192.168.26.30:8000 /visitor_access HTTP/1.1" 0.000, 192.168.14.203, "http://192.168.26.29:8080/", "Mozilla/5.0 (iPhone; CPU iPhone OS 16_4_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Mobile/15E148 MicroMessenger/8.0.43(0x18002b2c) NetType/WIFI Language/zh_CN", 51, "Validation Failed", ""
Stack:
请填写拜访人名称

@ -0,0 +1,92 @@
2023-11-18 09:58:41.656 {dcfe972b08959817fecdae238c7dcdaf} 200 "POST http 192.168.26.30:8000 /visitor_statistic HTTP/1.1" 0.000, 192.168.26.30, "", "apifox/1.0.0 (https://www.apifox.cn)", -1, "", ""
Stack:
1. 系统繁忙请稍后再试
1). vistor/internal/controller.(*cVisitor).VisitorStatistic
D:/snc_go/src/visitor/internal/controller/visitor.go:27
2). vistor/internal/middleware.HandlerResponse
D:/snc_go/src/visitor/internal/middleware/MiddlewareHandlerResponse.go:21
2023-11-18 10:12:07.651 {80eea3d4c395981723274c22e1e7481d} 200 "POST http 192.168.26.30:8000 /visitor_statistic HTTP/1.1" 0.000, 192.168.26.30, "", "apifox/1.0.0 (https://www.apifox.cn)", 51, "Validation Failed", ""
Stack:
请选择起始日期
2023-11-18 10:12:12.187 {4c7c0de3c495981724274c225e146e92} 200 "POST http 192.168.26.30:8000 /visitor_statistic HTTP/1.1" 0.000, 192.168.26.30, "", "apifox/1.0.0 (https://www.apifox.cn)", 51, "Validation Failed", ""
Stack:
请选择截止日期
2023-11-18 14:57:42.570 {7ce2fc5959a59817f3ad1c0fd88da6bb} 200 "POST http 192.168.26.30:8000 /visitor_statistic HTTP/1.1" 0.058, 192.168.26.30, "", "apifox/1.0.0 (https://www.apifox.cn)", -1, "", ""
Stack:
1. 系统繁忙请稍后再试
1). vistor/internal/controller.(*cVisitor).VisitorStatistic
D:/snc_go/src/visitor/internal/controller/visitor.go:27
2). vistor/internal/middleware.HandlerResponse
D:/snc_go/src/visitor/internal/middleware/MiddlewareHandlerResponse.go:21
2023-11-18 16:24:30.348 {341478e315aa98179ced1820a7781d0e} 500 "POST http 192.168.26.30:8000 /visitor_access HTTP/1.1" 0.029, 127.0.0.1, "http://localhost:8080/", "Mozilla/5.0 (iPhone; CPU iPhone OS 16_6 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/16.6 Mobile/15E148 Safari/604.1", 68, "Internal Panic", ""
Stack:
1. exception recovered
1). vistor/internal/service.(*visitorService).VisitorAccess
D:/snc_go/src/visitor/internal/service/visitor.go:31
2). vistor/internal/controller.(*cVisitor).VisitorAccess
D:/snc_go/src/visitor/internal/controller/visitor.go:17
3). vistor/internal/middleware.HandlerResponse
D:/snc_go/src/visitor/internal/middleware/MiddlewareHandlerResponse.go:21
2. runtime error: invalid memory address or nil pointer dereference
2023-11-18 16:29:22.547 {e0ae2cea59aa98178f7dc0203dadde78} 500 "POST http 192.168.26.30:8000 /visitor_access HTTP/1.1" 0.058, 127.0.0.1, "http://localhost:8080/", "Mozilla/5.0 (iPhone; CPU iPhone OS 16_6 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/16.6 Mobile/15E148 Safari/604.1", 68, "Internal Panic", ""
Stack:
1. exception recovered
1). vistor/internal/service.(*visitorService).VisitorAccess
D:/snc_go/src/visitor/internal/service/visitor.go:31
2). vistor/internal/controller.(*cVisitor).VisitorAccess
D:/snc_go/src/visitor/internal/controller/visitor.go:17
3). vistor/internal/middleware.HandlerResponse
D:/snc_go/src/visitor/internal/middleware/MiddlewareHandlerResponse.go:21
2. runtime error: invalid memory address or nil pointer dereference
2023-11-18 16:33:08.302 {44d2d97b8eaa9817917dc020f40f29a1} 500 "POST http 192.168.26.30:8000 /visitor_access HTTP/1.1" 0.030, 192.168.26.30, "", "apifox/1.0.0 (https://www.apifox.cn)", 68, "Internal Panic", ""
Stack:
1. exception recovered
1). vistor/internal/service.(*visitorService).VisitorAccess
D:/snc_go/src/visitor/internal/service/visitor.go:31
2). vistor/internal/controller.(*cVisitor).VisitorAccess
D:/snc_go/src/visitor/internal/controller/visitor.go:17
3). vistor/internal/middleware.HandlerResponse
D:/snc_go/src/visitor/internal/middleware/MiddlewareHandlerResponse.go:21
2. runtime error: invalid memory address or nil pointer dereference
2023-11-18 16:33:20.281 {248be64691aa9817927dc020ed8f9be7} 500 "POST http 192.168.26.30:8000 /visitor_access HTTP/1.1" 0.013, 192.168.26.30, "", "apifox/1.0.0 (https://www.apifox.cn)", 68, "Internal Panic", ""
Stack:
1. exception recovered
1). vistor/internal/service.(*visitorService).VisitorAccess
D:/snc_go/src/visitor/internal/service/visitor.go:31
2). vistor/internal/controller.(*cVisitor).VisitorAccess
D:/snc_go/src/visitor/internal/controller/visitor.go:17
3). vistor/internal/middleware.HandlerResponse
D:/snc_go/src/visitor/internal/middleware/MiddlewareHandlerResponse.go:21
2. runtime error: invalid memory address or nil pointer dereference
2023-11-18 16:33:56.557 {e06725b799aa9817937dc02018248738} 500 "POST http 192.168.26.30:8000 /visitor_access HTTP/1.1" 0.046, 192.168.26.30, "", "apifox/1.0.0 (https://www.apifox.cn)", 68, "Internal Panic", ""
Stack:
1. exception recovered
1). vistor/internal/service.(*visitorService).VisitorAccess
D:/snc_go/src/visitor/internal/service/visitor.go:31
2). vistor/internal/controller.(*cVisitor).VisitorAccess
D:/snc_go/src/visitor/internal/controller/visitor.go:17
3). vistor/internal/middleware.HandlerResponse
D:/snc_go/src/visitor/internal/middleware/MiddlewareHandlerResponse.go:21
2. runtime error: invalid memory address or nil pointer dereference
2023-11-18 16:35:47.808 {f8d8e8a0b3aa9817dc91635ab9bf314b} 200 "POST http 192.168.26.30:8000 /visitor_access HTTP/1.1" 0.001, 192.168.26.30, "", "apifox/1.0.0 (https://www.apifox.cn)", 51, "Validation Failed", ""
Stack:
请填写正确拜访时间
2023-11-18 16:36:49.117 {c04a37e7c1aa9817dd91635ac33bc2b8} 200 "POST http 192.168.26.30:8000 /visitor_access HTTP/1.1" 0.001, 127.0.0.1, "http://localhost:8080/", "Mozilla/5.0 (iPhone; CPU iPhone OS 16_6 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/16.6 Mobile/15E148 Safari/604.1", 51, "Validation Failed", ""
Stack:
请填写正确离场时间
2023-11-18 17:29:39.271 {e4341e03a4ad9817ee576677169c1a8f} 200 "POST http 192.168.26.30:8000 /visitor_statistic HTTP/1.1" 0.001, 192.168.26.30, "", "apifox/1.0.0 (https://www.apifox.cn)", 51, "Validation Failed", ""
Stack:
请选择截止日期
2023-11-18 17:33:21.640 {acfe55c9d7ad9817833a4c751c873861} 200 "POST http 192.168.26.30:8000 /visitor_statistic HTTP/1.1" 0.001, 192.168.26.30, "", "apifox/1.0.0 (https://www.apifox.cn)", 51, "Validation Failed", ""
Stack:
请选择正确的截止日期
2023-11-18 17:33:33.372 {78caa584daad98178b3a4c753808e810} 200 "POST http 192.168.26.30:8000 /visitor_statistic HTTP/1.1" 0.000, 192.168.26.30, "", "apifox/1.0.0 (https://www.apifox.cn)", 51, "Validation Failed", ""
Stack:
请选择正确的截止日期

@ -0,0 +1,101 @@
2023-11-17 09:13:54.592 [ERRO] {dc573ff60144981766680a23b577388b} [ 42 ms] [default] [hbeiot] [rows:0 ] SHOW FULL COLUMNS FROM `visitor_record`
Error: Error 1146 (42S02): Table 'hbeiot.visitor_record' doesn't exist
Stack:
1. vistor/internal/service.(*visitorService).VisitorAccess
D:/snc_go/src/visitor/internal/service/visitor.go:19
2. vistor/internal/controller.(*cVisitor).VisitorAccess
D:/snc_go/src/visitor/internal/controller/visitor.go:18
2023-11-17 09:13:54.601 [ERRO] {dc573ff60144981766680a23b577388b} [ 8 ms] [default] [hbeiot] [rows:0 ] SHOW FULL COLUMNS FROM `visitor_record`
Error: Error 1146 (42S02): Table 'hbeiot.visitor_record' doesn't exist
Stack:
1. vistor/internal/service.(*visitorService).VisitorAccess
D:/snc_go/src/visitor/internal/service/visitor.go:19
2. vistor/internal/controller.(*cVisitor).VisitorAccess
D:/snc_go/src/visitor/internal/controller/visitor.go:18
2023-11-17 09:13:54.615 [ERRO] {dc573ff60144981766680a23b577388b} [ 7 ms] [default] [hbeiot] [rows:0 ] SHOW FULL COLUMNS FROM `visitor_record`
Error: Error 1146 (42S02): Table 'hbeiot.visitor_record' doesn't exist
Stack:
1. vistor/internal/service.(*visitorService).VisitorAccess
D:/snc_go/src/visitor/internal/service/visitor.go:19
2. vistor/internal/controller.(*cVisitor).VisitorAccess
D:/snc_go/src/visitor/internal/controller/visitor.go:18
2023-11-17 09:14:33.124 [ERRO] {e49ce5ef0a44981767680a23bd29ac24} [ 26 ms] [default] [hbeiot] [rows:0 ] SHOW FULL COLUMNS FROM `visitor_record`
Error: Error 1146 (42S02): Table 'hbeiot.visitor_record' doesn't exist
Stack:
1. vistor/internal/service.(*visitorService).VisitorAccess
D:/snc_go/src/visitor/internal/service/visitor.go:19
2. vistor/internal/controller.(*cVisitor).VisitorAccess
D:/snc_go/src/visitor/internal/controller/visitor.go:18
2023-11-17 09:14:33.130 [ERRO] {e49ce5ef0a44981767680a23bd29ac24} [ 5 ms] [default] [hbeiot] [rows:0 ] SHOW FULL COLUMNS FROM `visitor_record`
Error: Error 1146 (42S02): Table 'hbeiot.visitor_record' doesn't exist
Stack:
1. vistor/internal/service.(*visitorService).VisitorAccess
D:/snc_go/src/visitor/internal/service/visitor.go:19
2. vistor/internal/controller.(*cVisitor).VisitorAccess
D:/snc_go/src/visitor/internal/controller/visitor.go:18
2023-11-17 09:14:33.135 [ERRO] {e49ce5ef0a44981767680a23bd29ac24} [ 5 ms] [default] [hbeiot] [rows:0 ] SHOW FULL COLUMNS FROM `visitor_record`
Error: Error 1146 (42S02): Table 'hbeiot.visitor_record' doesn't exist
Stack:
1. vistor/internal/service.(*visitorService).VisitorAccess
D:/snc_go/src/visitor/internal/service/visitor.go:19
2. vistor/internal/controller.(*cVisitor).VisitorAccess
D:/snc_go/src/visitor/internal/controller/visitor.go:18
2023-11-17 09:14:51.070 [DEBU] {78a7b51d0f44981783c1267e8827690a} [ 24 ms] [default] [visitor] [rows:14 ] SHOW FULL COLUMNS FROM `visitor_record`
2023-11-17 09:14:51.083 [ERRO] {78a7b51d0f44981783c1267e8827690a} [ 12 ms] [default] [visitor] [rows:0 ] INSERT INTO `visitor_record`(`visitor_name`,`visitor_identity`,`visitor_phone`,`dst_apartment`,`dst_name`,`dst_location`,`reason`,`vehicle_number`,`remark`,`left_at`,`visit_at`,`created_at`,`updated_at`) VALUES('Amy','441622199808131022','13048992002','业务部','Tim','六栋二楼','参观产线','','',1700121537,1700126537,'2023-11-17 09:14:51','2023-11-17 09:14:51')
Error: Error 1264 (22003): Out of range value for column 'visitor_phone' at row 1
Stack:
1. vistor/internal/service.(*visitorService).VisitorAccess
D:/snc_go/src/visitor/internal/service/visitor.go:19
2. vistor/internal/controller.(*cVisitor).VisitorAccess
D:/snc_go/src/visitor/internal/controller/visitor.go:18
2023-11-17 09:16:49.347 [DEBU] {b4af67a72a4498176b33ce25de35cdc6} [ 26 ms] [default] [visitor] [rows:14 ] SHOW FULL COLUMNS FROM `visitor_record`
2023-11-17 09:16:49.400 [DEBU] {b4af67a72a4498176b33ce25de35cdc6} [ 52 ms] [default] [visitor] [rows:1 ] INSERT INTO `visitor_record`(`visitor_name`,`visitor_identity`,`visitor_phone`,`dst_apartment`,`dst_name`,`dst_location`,`reason`,`vehicle_number`,`remark`,`left_at`,`visit_at`,`created_at`,`updated_at`) VALUES('Amy','441622199808131022','13048992007','业务部','Tim','六栋二楼','参观产线','','',1700121537,1700126537,'2023-11-17 09:16:49','2023-11-17 09:16:49')
2023-11-17 09:17:42.357 [DEBU] {786a02ff36449817024b2d318829f342} [ 26 ms] [default] [visitor] [rows:14 ] SHOW FULL COLUMNS FROM `visitor_record`
2023-11-17 09:17:42.370 [DEBU] {786a02ff36449817024b2d318829f342} [ 11 ms] [default] [visitor] [rows:1 ] INSERT INTO `visitor_record`(`visitor_name`,`visitor_identity`,`visitor_phone`,`dst_apartment`,`dst_name`,`dst_location`,`reason`,`vehicle_number`,`remark`,`left_at`,`visit_at`,`created_at`,`updated_at`) VALUES('Amy','441622199808131022','13048992007','业务部','Tim','六栋二楼','参观产线','粤B-10446','备注一下',1700121537,1700126537,'2023-11-17 09:17:42','2023-11-17 09:17:42')
2023-11-17 09:19:25.306 [DEBU] {a810d6f64e449817f2deff166522109f} [ 34 ms] [default] [visitor] [rows:14 ] SHOW FULL COLUMNS FROM `visitor_record`
2023-11-17 09:19:25.323 [DEBU] {a810d6f64e449817f2deff166522109f} [ 16 ms] [default] [visitor] [rows:1 ] INSERT INTO `visitor_record`(`visitor_name`,`visitor_identity`,`visitor_phone`,`dst_apartment`,`dst_name`,`dst_location`,`reason`,`vehicle_number`,`remark`,`left_at`,`visit_at`,`created_at`,`updated_at`) VALUES('Amy','441622199808131022','13048992007','业务部','Tim','六栋二楼','参观产线','粤B-10446','备注一下',1700121537,1700126537,'2023-11-17 09:19:25','2023-11-17 09:19:25')
2023-11-17 09:26:50.458 [DEBU] {a4fa5b9bb6449817f3deff16fc734d50} [ 44 ms] [default] [visitor] [rows:1 ] INSERT INTO `visitor_record`(`visitor_name`,`visitor_identity`,`visitor_phone`,`dst_apartment`,`dst_name`,`dst_location`,`reason`,`vehicle_number`,`remark`,`left_at`,`visit_at`,`created_at`,`updated_at`) VALUES('Amy','441622199808131022','13048992007','业务部','Tim','六栋二楼','参观产线','粤B-10446','备注一下',1700121537,1700126537,'2023-11-17 09:26:50','2023-11-17 09:26:50')
2023-11-17 09:40:34.625 [DEBU] {acb7977f7645981723e64d571605a8fd} [ 43 ms] [default] [visitor] [rows:14 ] SHOW FULL COLUMNS FROM `visitor_record`
2023-11-17 09:40:34.645 [DEBU] {acb7977f7645981723e64d571605a8fd} [ 19 ms] [default] [visitor] [rows:1 ] INSERT INTO `visitor_record`(`visitor_name`,`visitor_identity`,`visitor_phone`,`dst_apartment`,`dst_name`,`dst_location`,`reason`,`vehicle_number`,`remark`,`left_at`,`visit_at`,`created_at`,`updated_at`) VALUES('Amy','441622199808131022','13048992007','业务部','Tim','六栋二楼','参观产线','粤B-10446','备注一下',1700121537,1700126537,'2023-11-17 09:40:34','2023-11-17 09:40:34')
2023-11-17 09:51:55.011 [DEBU] {884958e91446981724e64d571a0bd24c} [ 49 ms] [default] [visitor] [rows:1 ] INSERT INTO `visitor_record`(`visitor_name`,`visitor_identity`,`visitor_phone`,`dst_apartment`,`dst_name`,`dst_location`,`reason`,`vehicle_number`,`remark`,`left_at`,`visit_at`,`created_at`,`updated_at`) VALUES('Amy','441622199808131022','13048992002','业务部','Tim','六栋二楼','参观产线','','',1700121537,1700126537,'2023-11-17 09:51:54','2023-11-17 09:51:54')
2023-11-17 10:26:33.555 [DEBU] {3c3320daf8479817b785724426572a40} [ 85 ms] [default] [visitor] [rows:15 ] SHOW FULL COLUMNS FROM `visitor_record`
2023-11-17 10:26:33.566 [DEBU] {3c3320daf8479817b785724426572a40} [ 11 ms] [default] [visitor] [rows:1 ] INSERT INTO `visitor_record`(`visitor_name`,`visitor_identity`,`visitor_phone`,`visitor_apartment`,`dst_apartment`,`dst_name`,`dst_location`,`reason`,`vehicle_number`,`remark`,`left_at`,`visit_at`,`created_at`,`updated_at`) VALUES('Amy','441622199808131022','13048992002','联域光电业务部','业务部','Tim','六栋二楼','参观产线','','',1700121537,1700126537,'2023-11-17 10:26:33','2023-11-17 10:26:33')
2023-11-17 10:31:39.418 [DEBU] {901c6213404898178a2a4316f4451ff8} [ 44 ms] [default] [visitor] [rows:15 ] SHOW FULL COLUMNS FROM `visitor_record`
2023-11-17 10:31:39.439 [DEBU] {901c6213404898178a2a4316f4451ff8} [ 20 ms] [default] [visitor] [rows:1 ] INSERT INTO `visitor_record`(`visitor_name`,`visitor_identity`,`visitor_phone`,`visitor_department`,`dst_department`,`dst_name`,`dst_location`,`reason`,`vehicle_number`,`remark`,`left_at`,`visit_at`,`created_at`,`updated_at`) VALUES('Pony','441622199808131022','13048992002','阿里巴巴','技术部','Norman','六栋二楼','参观产线','22055','友好交流',1700121537,1700126537,'2023-11-17 10:31:39','2023-11-17 10:31:39')
2023-11-17 14:27:51.127 [DEBU] {18c199af235598178232e27a6e4b1bc4} [ 36 ms] [default] [visitor] [rows:15 ] SHOW FULL COLUMNS FROM `visitor_record`
2023-11-17 14:27:51.156 [DEBU] {18c199af235598178232e27a6e4b1bc4} [ 17 ms] [default] [visitor] [rows:1 ] INSERT INTO `visitor_record`(`visitor_name`,`visitor_identity`,`visitor_phone`,`visitor_department`,`dst_department`,`dst_name`,`dst_location`,`reason`,`vehicle_number`,`remark`,`left_at`,`visit_at`,`created_at`,`updated_at`) VALUES('Marry','441622199808131022','13048992002','apple','技术部','Norman','六栋二楼','参观产线','22055','友好交流',1700121537,1700126537,'2023-11-17 14:27:51','2023-11-17 14:27:51')
2023-11-17 14:27:52.287 [DEBU] {c0e0f4f5235598178332e27a4c10f88b} [ 16 ms] [default] [visitor] [rows:1 ] INSERT INTO `visitor_record`(`visitor_name`,`visitor_identity`,`visitor_phone`,`visitor_department`,`dst_department`,`dst_name`,`dst_location`,`reason`,`vehicle_number`,`remark`,`left_at`,`visit_at`,`created_at`,`updated_at`) VALUES('Marry','441622199808131022','13048992002','apple','技术部','Norman','六栋二楼','参观产线','22055','友好交流',1700121537,1700126537,'2023-11-17 14:27:52','2023-11-17 14:27:52')
2023-11-17 14:27:53.595 [DEBU] {b094e443245598178432e27a6e5f3306} [ 17 ms] [default] [visitor] [rows:1 ] INSERT INTO `visitor_record`(`visitor_name`,`visitor_identity`,`visitor_phone`,`visitor_department`,`dst_department`,`dst_name`,`dst_location`,`reason`,`vehicle_number`,`remark`,`left_at`,`visit_at`,`created_at`,`updated_at`) VALUES('Marry','441622199808131022','13048992002','apple','技术部','Norman','六栋二楼','参观产线','22055','友好交流',1700121537,1700126537,'2023-11-17 14:27:53','2023-11-17 14:27:53')
2023-11-17 14:27:54.411 [DEBU] {342d8374245598178532e27a5909c826} [ 16 ms] [default] [visitor] [rows:1 ] INSERT INTO `visitor_record`(`visitor_name`,`visitor_identity`,`visitor_phone`,`visitor_department`,`dst_department`,`dst_name`,`dst_location`,`reason`,`vehicle_number`,`remark`,`left_at`,`visit_at`,`created_at`,`updated_at`) VALUES('Marry','441622199808131022','13048992002','apple','技术部','Norman','六栋二楼','参观产线','22055','友好交流',1700121537,1700126537,'2023-11-17 14:27:54','2023-11-17 14:27:54')
2023-11-17 14:27:55.157 [DEBU] {cc51fea0245598178632e27a14a320e9} [ 16 ms] [default] [visitor] [rows:1 ] INSERT INTO `visitor_record`(`visitor_name`,`visitor_identity`,`visitor_phone`,`visitor_department`,`dst_department`,`dst_name`,`dst_location`,`reason`,`vehicle_number`,`remark`,`left_at`,`visit_at`,`created_at`,`updated_at`) VALUES('Marry','441622199808131022','13048992002','apple','技术部','Norman','六栋二楼','参观产线','22055','友好交流',1700121537,1700126537,'2023-11-17 14:27:55','2023-11-17 14:27:55')
2023-11-17 14:27:55.863 [DEBU] {68851dcb245598178732e27a6193a3d3} [ 16 ms] [default] [visitor] [rows:1 ] INSERT INTO `visitor_record`(`visitor_name`,`visitor_identity`,`visitor_phone`,`visitor_department`,`dst_department`,`dst_name`,`dst_location`,`reason`,`vehicle_number`,`remark`,`left_at`,`visit_at`,`created_at`,`updated_at`) VALUES('Marry','441622199808131022','13048992002','apple','技术部','Norman','六栋二楼','参观产线','22055','友好交流',1700121537,1700126537,'2023-11-17 14:27:55','2023-11-17 14:27:55')
2023-11-17 14:27:56.580 [DEBU] {a84ad9f5245598178832e27aa5c5d844} [ 16 ms] [default] [visitor] [rows:1 ] INSERT INTO `visitor_record`(`visitor_name`,`visitor_identity`,`visitor_phone`,`visitor_department`,`dst_department`,`dst_name`,`dst_location`,`reason`,`vehicle_number`,`remark`,`left_at`,`visit_at`,`created_at`,`updated_at`) VALUES('Marry','441622199808131022','13048992002','apple','技术部','Norman','六栋二楼','参观产线','22055','友好交流',1700121537,1700126537,'2023-11-17 14:27:56','2023-11-17 14:27:56')
2023-11-17 14:27:57.337 [DEBU] {a4c9f422255598178932e27ab241c632} [ 16 ms] [default] [visitor] [rows:1 ] INSERT INTO `visitor_record`(`visitor_name`,`visitor_identity`,`visitor_phone`,`visitor_department`,`dst_department`,`dst_name`,`dst_location`,`reason`,`vehicle_number`,`remark`,`left_at`,`visit_at`,`created_at`,`updated_at`) VALUES('Marry','441622199808131022','13048992002','apple','技术部','Norman','六栋二楼','参观产线','22055','友好交流',1700121537,1700126537,'2023-11-17 14:27:57','2023-11-17 14:27:57')
2023-11-17 14:27:58.046 [DEBU] {ac3d494d255598178a32e27ab4322d34} [ 15 ms] [default] [visitor] [rows:1 ] INSERT INTO `visitor_record`(`visitor_name`,`visitor_identity`,`visitor_phone`,`visitor_department`,`dst_department`,`dst_name`,`dst_location`,`reason`,`vehicle_number`,`remark`,`left_at`,`visit_at`,`created_at`,`updated_at`) VALUES('Marry','441622199808131022','13048992002','apple','技术部','Norman','六栋二楼','参观产线','22055','友好交流',1700121537,1700126537,'2023-11-17 14:27:58','2023-11-17 14:27:58')
2023-11-17 14:27:58.734 [DEBU] {3cc33776255598178b32e27a1c508e6c} [ 16 ms] [default] [visitor] [rows:1 ] INSERT INTO `visitor_record`(`visitor_name`,`visitor_identity`,`visitor_phone`,`visitor_department`,`dst_department`,`dst_name`,`dst_location`,`reason`,`vehicle_number`,`remark`,`left_at`,`visit_at`,`created_at`,`updated_at`) VALUES('Marry','441622199808131022','13048992002','apple','技术部','Norman','六栋二楼','参观产线','22055','友好交流',1700121537,1700126537,'2023-11-17 14:27:58','2023-11-17 14:27:58')
2023-11-17 14:27:59.322 [DEBU] {4c8c4599255598178c32e27aeb4abd9b} [ 16 ms] [default] [visitor] [rows:1 ] INSERT INTO `visitor_record`(`visitor_name`,`visitor_identity`,`visitor_phone`,`visitor_department`,`dst_department`,`dst_name`,`dst_location`,`reason`,`vehicle_number`,`remark`,`left_at`,`visit_at`,`created_at`,`updated_at`) VALUES('Marry','441622199808131022','13048992002','apple','技术部','Norman','六栋二楼','参观产线','22055','友好交流',1700121537,1700126537,'2023-11-17 14:27:59','2023-11-17 14:27:59')
2023-11-17 14:28:00.031 [DEBU] {f41f8fc3255598178d32e27a340c715d} [ 16 ms] [default] [visitor] [rows:1 ] INSERT INTO `visitor_record`(`visitor_name`,`visitor_identity`,`visitor_phone`,`visitor_department`,`dst_department`,`dst_name`,`dst_location`,`reason`,`vehicle_number`,`remark`,`left_at`,`visit_at`,`created_at`,`updated_at`) VALUES('Marry','441622199808131022','13048992002','apple','技术部','Norman','六栋二楼','参观产线','22055','友好交流',1700121537,1700126537,'2023-11-17 14:28:00','2023-11-17 14:28:00')
2023-11-17 14:28:00.686 [DEBU] {545e92ea255598178e32e27afa40ce2d} [ 16 ms] [default] [visitor] [rows:1 ] INSERT INTO `visitor_record`(`visitor_name`,`visitor_identity`,`visitor_phone`,`visitor_department`,`dst_department`,`dst_name`,`dst_location`,`reason`,`vehicle_number`,`remark`,`left_at`,`visit_at`,`created_at`,`updated_at`) VALUES('Marry','441622199808131022','13048992002','apple','技术部','Norman','六栋二楼','参观产线','22055','友好交流',1700121537,1700126537,'2023-11-17 14:28:00','2023-11-17 14:28:00')
2023-11-17 14:28:01.334 [DEBU] {d0253211265598178f32e27a3a5f21f2} [ 16 ms] [default] [visitor] [rows:1 ] INSERT INTO `visitor_record`(`visitor_name`,`visitor_identity`,`visitor_phone`,`visitor_department`,`dst_department`,`dst_name`,`dst_location`,`reason`,`vehicle_number`,`remark`,`left_at`,`visit_at`,`created_at`,`updated_at`) VALUES('Marry','441622199808131022','13048992002','apple','技术部','Norman','六栋二楼','参观产线','22055','友好交流',1700121537,1700126537,'2023-11-17 14:28:01','2023-11-17 14:28:01')
2023-11-17 14:28:02.031 [DEBU] {d4adb83a265598179032e27a76b4bbb9} [ 16 ms] [default] [visitor] [rows:1 ] INSERT INTO `visitor_record`(`visitor_name`,`visitor_identity`,`visitor_phone`,`visitor_department`,`dst_department`,`dst_name`,`dst_location`,`reason`,`vehicle_number`,`remark`,`left_at`,`visit_at`,`created_at`,`updated_at`) VALUES('Marry','441622199808131022','13048992002','apple','技术部','Norman','六栋二楼','参观产线','22055','友好交流',1700121537,1700126537,'2023-11-17 14:28:02','2023-11-17 14:28:02')
2023-11-17 14:28:02.728 [DEBU] {78d64464265598179132e27a7b4b2714} [ 16 ms] [default] [visitor] [rows:1 ] INSERT INTO `visitor_record`(`visitor_name`,`visitor_identity`,`visitor_phone`,`visitor_department`,`dst_department`,`dst_name`,`dst_location`,`reason`,`vehicle_number`,`remark`,`left_at`,`visit_at`,`created_at`,`updated_at`) VALUES('Marry','441622199808131022','13048992002','apple','技术部','Norman','六栋二楼','参观产线','22055','友好交流',1700121537,1700126537,'2023-11-17 14:28:02','2023-11-17 14:28:02')
2023-11-17 14:28:03.376 [DEBU] {7c22e78a265598179232e27ab076141f} [ 16 ms] [default] [visitor] [rows:1 ] INSERT INTO `visitor_record`(`visitor_name`,`visitor_identity`,`visitor_phone`,`visitor_department`,`dst_department`,`dst_name`,`dst_location`,`reason`,`vehicle_number`,`remark`,`left_at`,`visit_at`,`created_at`,`updated_at`) VALUES('Marry','441622199808131022','13048992002','apple','技术部','Norman','六栋二楼','参观产线','22055','友好交流',1700121537,1700126537,'2023-11-17 14:28:03','2023-11-17 14:28:03')
2023-11-17 14:28:04.126 [DEBU] {dcd899b7265598179332e27aaa91f866} [ 16 ms] [default] [visitor] [rows:1 ] INSERT INTO `visitor_record`(`visitor_name`,`visitor_identity`,`visitor_phone`,`visitor_department`,`dst_department`,`dst_name`,`dst_location`,`reason`,`vehicle_number`,`remark`,`left_at`,`visit_at`,`created_at`,`updated_at`) VALUES('Marry','441622199808131022','13048992002','apple','技术部','Norman','六栋二楼','参观产线','22055','友好交流',1700121537,1700126537,'2023-11-17 14:28:04','2023-11-17 14:28:04')
2023-11-17 14:28:04.853 [DEBU] {a819eee2265598179432e27a86c4cc22} [ 16 ms] [default] [visitor] [rows:1 ] INSERT INTO `visitor_record`(`visitor_name`,`visitor_identity`,`visitor_phone`,`visitor_department`,`dst_department`,`dst_name`,`dst_location`,`reason`,`vehicle_number`,`remark`,`left_at`,`visit_at`,`created_at`,`updated_at`) VALUES('Marry','441622199808131022','13048992002','apple','技术部','Norman','六栋二楼','参观产线','22055','友好交流',1700121537,1700126537,'2023-11-17 14:28:04','2023-11-17 14:28:04')
2023-11-17 14:28:05.877 [DEBU] {fce80020275598179532e27ad811dcdf} [ 15 ms] [default] [visitor] [rows:1 ] INSERT INTO `visitor_record`(`visitor_name`,`visitor_identity`,`visitor_phone`,`visitor_department`,`dst_department`,`dst_name`,`dst_location`,`reason`,`vehicle_number`,`remark`,`left_at`,`visit_at`,`created_at`,`updated_at`) VALUES('Marry','441622199808131022','13048992002','apple','技术部','Norman','六栋二楼','参观产线','22055','友好交流',1700121537,1700126537,'2023-11-17 14:28:05','2023-11-17 14:28:05')
2023-11-17 14:28:06.601 [DEBU] {8423184b275598179632e27a535c31cb} [ 17 ms] [default] [visitor] [rows:1 ] INSERT INTO `visitor_record`(`visitor_name`,`visitor_identity`,`visitor_phone`,`visitor_department`,`dst_department`,`dst_name`,`dst_location`,`reason`,`vehicle_number`,`remark`,`left_at`,`visit_at`,`created_at`,`updated_at`) VALUES('Marry','441622199808131022','13048992002','apple','技术部','Norman','六栋二楼','参观产线','22055','友好交流',1700121537,1700126537,'2023-11-17 14:28:06','2023-11-17 14:28:06')
2023-11-17 14:28:07.307 [DEBU] {a85b2d75275598179732e27a11fe9dae} [ 17 ms] [default] [visitor] [rows:1 ] INSERT INTO `visitor_record`(`visitor_name`,`visitor_identity`,`visitor_phone`,`visitor_department`,`dst_department`,`dst_name`,`dst_location`,`reason`,`vehicle_number`,`remark`,`left_at`,`visit_at`,`created_at`,`updated_at`) VALUES('Marry','441622199808131022','13048992002','apple','技术部','Norman','六栋二楼','参观产线','22055','友好交流',1700121537,1700126537,'2023-11-17 14:28:07','2023-11-17 14:28:07')
2023-11-17 14:28:07.981 [DEBU] {5c51519d275598179832e27ad743499d} [ 17 ms] [default] [visitor] [rows:1 ] INSERT INTO `visitor_record`(`visitor_name`,`visitor_identity`,`visitor_phone`,`visitor_department`,`dst_department`,`dst_name`,`dst_location`,`reason`,`vehicle_number`,`remark`,`left_at`,`visit_at`,`created_at`,`updated_at`) VALUES('Marry','441622199808131022','13048992002','apple','技术部','Norman','六栋二楼','参观产线','22055','友好交流',1700121537,1700126537,'2023-11-17 14:28:07','2023-11-17 14:28:07')
2023-11-17 14:28:08.680 [DEBU] {7c0e18c7275598179932e27a899a8006} [ 16 ms] [default] [visitor] [rows:1 ] INSERT INTO `visitor_record`(`visitor_name`,`visitor_identity`,`visitor_phone`,`visitor_department`,`dst_department`,`dst_name`,`dst_location`,`reason`,`vehicle_number`,`remark`,`left_at`,`visit_at`,`created_at`,`updated_at`) VALUES('Marry','441622199808131022','13048992002','apple','技术部','Norman','六栋二楼','参观产线','22055','友好交流',1700121537,1700126537,'2023-11-17 14:28:08','2023-11-17 14:28:08')
2023-11-17 14:28:09.385 [DEBU] {b0d218f1275598179a32e27a4975a8a1} [ 16 ms] [default] [visitor] [rows:1 ] INSERT INTO `visitor_record`(`visitor_name`,`visitor_identity`,`visitor_phone`,`visitor_department`,`dst_department`,`dst_name`,`dst_location`,`reason`,`vehicle_number`,`remark`,`left_at`,`visit_at`,`created_at`,`updated_at`) VALUES('Marry','441622199808131022','13048992002','apple','技术部','Norman','六栋二楼','参观产线','22055','友好交流',1700121537,1700126537,'2023-11-17 14:28:09','2023-11-17 14:28:09')
2023-11-17 14:28:10.198 [DEBU] {343b8d21285598179b32e27a4d15335b} [ 16 ms] [default] [visitor] [rows:1 ] INSERT INTO `visitor_record`(`visitor_name`,`visitor_identity`,`visitor_phone`,`visitor_department`,`dst_department`,`dst_name`,`dst_location`,`reason`,`vehicle_number`,`remark`,`left_at`,`visit_at`,`created_at`,`updated_at`) VALUES('Marry','441622199808131022','13048992002','apple','技术部','Norman','六栋二楼','参观产线','22055','友好交流',1700121537,1700126537,'2023-11-17 14:28:10','2023-11-17 14:28:10')
2023-11-17 14:28:10.829 [DEBU] {8c502747285598179c32e27a4691b04b} [ 15 ms] [default] [visitor] [rows:1 ] INSERT INTO `visitor_record`(`visitor_name`,`visitor_identity`,`visitor_phone`,`visitor_department`,`dst_department`,`dst_name`,`dst_location`,`reason`,`vehicle_number`,`remark`,`left_at`,`visit_at`,`created_at`,`updated_at`) VALUES('Marry','441622199808131022','13048992002','apple','技术部','Norman','六栋二楼','参观产线','22055','友好交流',1700121537,1700126537,'2023-11-17 14:28:10','2023-11-17 14:28:10')
2023-11-17 14:28:11.566 [DEBU] {b84d0973285598179d32e27a1d186601} [ 17 ms] [default] [visitor] [rows:1 ] INSERT INTO `visitor_record`(`visitor_name`,`visitor_identity`,`visitor_phone`,`visitor_department`,`dst_department`,`dst_name`,`dst_location`,`reason`,`vehicle_number`,`remark`,`left_at`,`visit_at`,`created_at`,`updated_at`) VALUES('Marry','441622199808131022','13048992002','apple','技术部','Norman','六栋二楼','参观产线','22055','友好交流',1700121537,1700126537,'2023-11-17 14:28:11','2023-11-17 14:28:11')
2023-11-17 14:28:12.351 [DEBU] {20d4e6a1285598179e32e27a0dddf342} [ 16 ms] [default] [visitor] [rows:1 ] INSERT INTO `visitor_record`(`visitor_name`,`visitor_identity`,`visitor_phone`,`visitor_department`,`dst_department`,`dst_name`,`dst_location`,`reason`,`vehicle_number`,`remark`,`left_at`,`visit_at`,`created_at`,`updated_at`) VALUES('Marry','441622199808131022','13048992002','apple','技术部','Norman','六栋二楼','参观产线','22055','友好交流',1700121537,1700126537,'2023-11-17 14:28:12','2023-11-17 14:28:12')

File diff suppressed because it is too large Load Diff

@ -0,0 +1,161 @@
2023-11-20 09:20:04.636 [DEBU] {b8b946d3153099174bc6db7e1c00294e} [ 30 ms] [default] [visitor] [rows:15 ] SHOW FULL COLUMNS FROM `visitor_record`
2023-11-20 09:20:04.645 [ERRO] {10ff33d5153099174cc6db7ed7fd8c86} [ 6 ms] [default] [visitor] [rows:0 ] SHOW FULL COLUMNS FROM `visitor_name`
Error: Error 1146 (42S02): Table 'visitor.visitor_name' doesn't exist
Stack:
1. vistor/internal/service.(*visitorService).VisitorStatistic
D:/snc_go/src/visitor/internal/service/visitor.go:85
2. vistor/internal/controller.(*cVisitor).VisitorStatistic
D:/snc_go/src/visitor/internal/controller/visitor.go:25
3. vistor/internal/middleware.HandlerResponse
D:/snc_go/src/visitor/internal/middleware/MiddlewareHandlerResponse.go:21
2023-11-20 09:20:04.652 [ERRO] {bcd8a8d5153099174dc6db7e7261b751} [ 6 ms] [default] [visitor] [rows:0 ] SHOW FULL COLUMNS FROM `visitor_identity`
Error: Error 1146 (42S02): Table 'visitor.visitor_identity' doesn't exist
Stack:
1. vistor/internal/service.(*visitorService).VisitorStatistic
D:/snc_go/src/visitor/internal/service/visitor.go:85
2. vistor/internal/controller.(*cVisitor).VisitorStatistic
D:/snc_go/src/visitor/internal/controller/visitor.go:25
3. vistor/internal/middleware.HandlerResponse
D:/snc_go/src/visitor/internal/middleware/MiddlewareHandlerResponse.go:21
2023-11-20 09:20:04.658 [ERRO] {3c4412d6153099174ec6db7e89819bc4} [ 5 ms] [default] [visitor] [rows:0 ] SHOW FULL COLUMNS FROM `visitor_phone`
Error: Error 1146 (42S02): Table 'visitor.visitor_phone' doesn't exist
Stack:
1. vistor/internal/service.(*visitorService).VisitorStatistic
D:/snc_go/src/visitor/internal/service/visitor.go:85
2. vistor/internal/controller.(*cVisitor).VisitorStatistic
D:/snc_go/src/visitor/internal/controller/visitor.go:25
3. vistor/internal/middleware.HandlerResponse
D:/snc_go/src/visitor/internal/middleware/MiddlewareHandlerResponse.go:21
2023-11-20 09:20:04.666 [ERRO] {c49079d6153099174fc6db7e90a23cd2} [ 6 ms] [default] [visitor] [rows:0 ] SHOW FULL COLUMNS FROM `visit_at`
Error: Error 1146 (42S02): Table 'visitor.visit_at' doesn't exist
Stack:
1. vistor/internal/service.(*visitorService).VisitorStatistic
D:/snc_go/src/visitor/internal/service/visitor.go:85
2. vistor/internal/controller.(*cVisitor).VisitorStatistic
D:/snc_go/src/visitor/internal/controller/visitor.go:25
3. vistor/internal/middleware.HandlerResponse
D:/snc_go/src/visitor/internal/middleware/MiddlewareHandlerResponse.go:21
2023-11-20 09:20:04.679 [DEBU] {80fee0d61530991750c6db7e4e5e4caf} [ 13 ms] [default] [visitor] [rows:0 ] SELECT count(v.id) y_axis, v.visit_date x_axis FROM (SELECT id,visitor_name,visitor_identity,visitor_phone,visit_at,from_unixtime(visit_at,'%Y-%m-%d') visit_date FROM `visitor_record` vr WHERE (vr.visitor_identity='441622199808131022' AND vr.visitor_phone='13048992002' AND vr.visitor_name='Pony') AND (vr.visit_at BETWEEN 1699495137 AND 1700126537)) as v GROUP BY `x_axis` ORDER BY `x_axis`
2023-11-20 09:20:13.811 [ERRO] {a08f94f71730991752c6db7e6a365115} [ 6 ms] [default] [visitor] [rows:0 ] SHOW FULL COLUMNS FROM `visitor_name`
Error: Error 1146 (42S02): Table 'visitor.visitor_name' doesn't exist
Stack:
1. vistor/internal/service.(*visitorService).VisitorStatistic
D:/snc_go/src/visitor/internal/service/visitor.go:85
2. vistor/internal/controller.(*cVisitor).VisitorStatistic
D:/snc_go/src/visitor/internal/controller/visitor.go:25
3. vistor/internal/middleware.HandlerResponse
D:/snc_go/src/visitor/internal/middleware/MiddlewareHandlerResponse.go:21
2023-11-20 09:20:13.818 [ERRO] {34f8f6f71730991753c6db7e1c4b4365} [ 6 ms] [default] [visitor] [rows:0 ] SHOW FULL COLUMNS FROM `visitor_identity`
Error: Error 1146 (42S02): Table 'visitor.visitor_identity' doesn't exist
Stack:
1. vistor/internal/service.(*visitorService).VisitorStatistic
D:/snc_go/src/visitor/internal/service/visitor.go:85
2. vistor/internal/controller.(*cVisitor).VisitorStatistic
D:/snc_go/src/visitor/internal/controller/visitor.go:25
3. vistor/internal/middleware.HandlerResponse
D:/snc_go/src/visitor/internal/middleware/MiddlewareHandlerResponse.go:21
2023-11-20 09:20:13.824 [ERRO] {444b5cf81730991754c6db7ea8372321} [ 6 ms] [default] [visitor] [rows:0 ] SHOW FULL COLUMNS FROM `visitor_phone`
Error: Error 1146 (42S02): Table 'visitor.visitor_phone' doesn't exist
Stack:
1. vistor/internal/service.(*visitorService).VisitorStatistic
D:/snc_go/src/visitor/internal/service/visitor.go:85
2. vistor/internal/controller.(*cVisitor).VisitorStatistic
D:/snc_go/src/visitor/internal/controller/visitor.go:25
3. vistor/internal/middleware.HandlerResponse
D:/snc_go/src/visitor/internal/middleware/MiddlewareHandlerResponse.go:21
2023-11-20 09:20:13.830 [ERRO] {e8a8bef81730991755c6db7e661a59d2} [ 6 ms] [default] [visitor] [rows:0 ] SHOW FULL COLUMNS FROM `visit_at`
Error: Error 1146 (42S02): Table 'visitor.visit_at' doesn't exist
Stack:
1. vistor/internal/service.(*visitorService).VisitorStatistic
D:/snc_go/src/visitor/internal/service/visitor.go:85
2. vistor/internal/controller.(*cVisitor).VisitorStatistic
D:/snc_go/src/visitor/internal/controller/visitor.go:25
3. vistor/internal/middleware.HandlerResponse
D:/snc_go/src/visitor/internal/middleware/MiddlewareHandlerResponse.go:21
2023-11-20 09:20:13.843 [DEBU] {885a21f91730991756c6db7e4828c67c} [ 12 ms] [default] [visitor] [rows:8 ] SELECT count(v.id) y_axis, v.visit_date x_axis FROM (SELECT id,visitor_name,visitor_identity,visitor_phone,visit_at,from_unixtime(visit_at,'%Y-%m-%d') visit_date FROM `visitor_record` vr WHERE vr.visit_at BETWEEN 1699495137 AND 1700126537) as v GROUP BY `x_axis` ORDER BY `x_axis`
2023-11-20 15:58:05.086 [DEBU] {a05681ebcd459917eb58b972c176bb3e} [ 55 ms] [default] [visitor] [rows:15 ] SHOW FULL COLUMNS FROM `visitor_record`
2023-11-20 15:58:05.117 [DEBU] {a05681ebcd459917eb58b972c176bb3e} [ 31 ms] [default] [visitor] [rows:1 ] SELECT COUNT(1) FROM `visitor_record` WHERE `visit_at` BETWEEN 1700409600 AND 1701014400
2023-11-20 15:58:05.147 [DEBU] {a05681ebcd459917eb58b972c176bb3e} [ 30 ms] [default] [visitor] [rows:1 ] SELECT COUNT(1) FROM `visitor_record` WHERE `visit_at` BETWEEN 1699804800 AND 1700409600
2023-11-20 15:58:05.178 [DEBU] {a05681ebcd459917eb58b972c176bb3e} [ 31 ms] [default] [visitor] [rows:1 ] SELECT COUNT(1) FROM `visitor_record` WHERE `visit_at` BETWEEN 1699200000 AND 1699804800
2023-11-20 16:00:51.644 [DEBU] {2c2f56b3f445991753c6ef5982dced6d} [ 51 ms] [default] [visitor] [rows:15 ] SHOW FULL COLUMNS FROM `visitor_record`
2023-11-20 16:00:51.675 [DEBU] {2c2f56b3f445991753c6ef5982dced6d} [ 31 ms] [default] [visitor] [rows:1 ] SELECT COUNT(1) FROM `visitor_record` WHERE `visit_at` BETWEEN 1700409600 AND 1701014400
2023-11-20 16:00:51.692 [DEBU] {2c2f56b3f445991753c6ef5982dced6d} [ 17 ms] [default] [visitor] [rows:1 ] SELECT COUNT(1) FROM `visitor_record` WHERE `visit_at` BETWEEN 1699804800 AND 1700409600
2023-11-20 16:00:51.709 [DEBU] {2c2f56b3f445991753c6ef5982dced6d} [ 17 ms] [default] [visitor] [rows:1 ] SELECT COUNT(1) FROM `visitor_record` WHERE `visit_at` BETWEEN 1699200000 AND 1699804800
2023-11-20 16:03:37.540 [DEBU] {84fe42551b4699175096d1014d56b1b1} [ 22 ms] [default] [visitor] [rows:15 ] SHOW FULL COLUMNS FROM `visitor_record`
2023-11-20 16:03:37.550 [DEBU] {84fe42551b4699175096d1014d56b1b1} [ 9 ms] [default] [visitor] [rows:1 ] SELECT COUNT(1) FROM `visitor_record` WHERE `visit_at` BETWEEN 1699200000 AND 1699804800
2023-11-20 16:03:37.559 [DEBU] {84fe42551b4699175096d1014d56b1b1} [ 9 ms] [default] [visitor] [rows:1 ] SELECT COUNT(1) FROM `visitor_record` WHERE `visit_at` BETWEEN 1699804800 AND 1700409600
2023-11-20 16:03:37.569 [DEBU] {84fe42551b4699175096d1014d56b1b1} [ 8 ms] [default] [visitor] [rows:1 ] SELECT COUNT(1) FROM `visitor_record` WHERE `visit_at` BETWEEN 1700409600 AND 1701014400
2023-11-20 16:04:15.284 [DEBU] {f0c07f1d244699175196d101ba35c233} [ 47 ms] [default] [visitor] [rows:1 ] SELECT COUNT(1) FROM `visitor_record` WHERE `visit_at` BETWEEN 1699804800 AND 1700409600
2023-11-20 16:04:15.301 [DEBU] {f0c07f1d244699175196d101ba35c233} [ 17 ms] [default] [visitor] [rows:1 ] SELECT COUNT(1) FROM `visitor_record` WHERE `visit_at` BETWEEN 1700409600 AND 1701014400
2023-11-20 16:04:22.730 [DEBU] {ac791edb254699175296d101621cc1f9} [ 16 ms] [default] [visitor] [rows:1 ] SELECT COUNT(1) FROM `visitor_record` WHERE `visit_at` BETWEEN 1700409600 AND 1701014400
2023-11-20 16:04:39.696 [DEBU] {803e6bce294699175396d101f22f61bc} [ 16 ms] [default] [visitor] [rows:1 ] SELECT COUNT(1) FROM `visitor_record` WHERE `visit_at` BETWEEN 1699200000 AND 1699804800
2023-11-20 16:04:39.712 [DEBU] {803e6bce294699175396d101f22f61bc} [ 16 ms] [default] [visitor] [rows:1 ] SELECT COUNT(1) FROM `visitor_record` WHERE `visit_at` BETWEEN 1699804800 AND 1700409600
2023-11-20 16:04:39.729 [DEBU] {803e6bce294699175396d101f22f61bc} [ 17 ms] [default] [visitor] [rows:1 ] SELECT COUNT(1) FROM `visitor_record` WHERE `visit_at` BETWEEN 1700409600 AND 1701014400
2023-11-20 16:05:09.659 [DEBU] {400a77c6304699175596d1014f62d9c6} [ 47 ms] [default] [visitor] [rows:1 ] SELECT COUNT(1) FROM `visitor_record` WHERE `visit_at` BETWEEN 1699200000 AND 1699804800
2023-11-20 16:05:09.675 [DEBU] {400a77c6304699175596d1014f62d9c6} [ 16 ms] [default] [visitor] [rows:1 ] SELECT COUNT(1) FROM `visitor_record` WHERE `visit_at` BETWEEN 1699804800 AND 1700409600
2023-11-20 16:05:09.691 [DEBU] {400a77c6304699175596d1014f62d9c6} [ 16 ms] [default] [visitor] [rows:1 ] SELECT COUNT(1) FROM `visitor_record` WHERE `visit_at` BETWEEN 1700409600 AND 1701014400
2023-11-20 16:06:03.467 [DEBU] {3c70254f3d4699172894686c2f7bfae8} [ 23 ms] [default] [visitor] [rows:15 ] SHOW FULL COLUMNS FROM `visitor_record`
2023-11-20 16:06:03.478 [DEBU] {3c70254f3d4699172894686c2f7bfae8} [ 10 ms] [default] [visitor] [rows:1 ] SELECT COUNT(1) FROM `visitor_record` AS vr WHERE (vr.visitor_name='Pony') AND (`visit_at` BETWEEN 1699200000 AND 1699804800)
2023-11-20 16:06:03.487 [DEBU] {3c70254f3d4699172894686c2f7bfae8} [ 9 ms] [default] [visitor] [rows:1 ] SELECT COUNT(1) FROM `visitor_record` AS vr WHERE (vr.visitor_name='Pony') AND (`visit_at` BETWEEN 1699804800 AND 1700409600)
2023-11-20 16:06:03.496 [DEBU] {3c70254f3d4699172894686c2f7bfae8} [ 9 ms] [default] [visitor] [rows:1 ] SELECT COUNT(1) FROM `visitor_record` AS vr WHERE (vr.visitor_name='Pony') AND (`visit_at` BETWEEN 1700409600 AND 1701014400)
2023-11-20 16:06:08.267 [DEBU] {ec05156e3e4699172994686cc34c13f1} [ 9 ms] [default] [visitor] [rows:1 ] SELECT COUNT(1) FROM `visitor_record` AS vr WHERE `visit_at` BETWEEN 1699200000 AND 1699804800
2023-11-20 16:06:08.276 [DEBU] {ec05156e3e4699172994686cc34c13f1} [ 9 ms] [default] [visitor] [rows:1 ] SELECT COUNT(1) FROM `visitor_record` AS vr WHERE `visit_at` BETWEEN 1699804800 AND 1700409600
2023-11-20 16:06:08.285 [DEBU] {ec05156e3e4699172994686cc34c13f1} [ 9 ms] [default] [visitor] [rows:1 ] SELECT COUNT(1) FROM `visitor_record` AS vr WHERE `visit_at` BETWEEN 1700409600 AND 1701014400
2023-11-20 16:06:18.171 [DEBU] {d8f367bc404699172a94686c371302ac} [ 10 ms] [default] [visitor] [rows:1 ] SELECT COUNT(1) FROM `visitor_record` AS vr WHERE (vr.visitor_name='Amy') AND (`visit_at` BETWEEN 1699200000 AND 1699804800)
2023-11-20 16:06:18.181 [DEBU] {d8f367bc404699172a94686c371302ac} [ 9 ms] [default] [visitor] [rows:1 ] SELECT COUNT(1) FROM `visitor_record` AS vr WHERE (vr.visitor_name='Amy') AND (`visit_at` BETWEEN 1699804800 AND 1700409600)
2023-11-20 16:06:18.190 [DEBU] {d8f367bc404699172a94686c371302ac} [ 9 ms] [default] [visitor] [rows:1 ] SELECT COUNT(1) FROM `visitor_record` AS vr WHERE (vr.visitor_name='Amy') AND (`visit_at` BETWEEN 1700409600 AND 1701014400)
2023-11-20 16:06:23.480 [DEBU] {b4e0e8f8414699172b94686c3df59bec} [ 9 ms] [default] [visitor] [rows:1 ] SELECT COUNT(1) FROM `visitor_record` AS vr WHERE `visit_at` BETWEEN 1699200000 AND 1699804800
2023-11-20 16:06:23.490 [DEBU] {b4e0e8f8414699172b94686c3df59bec} [ 9 ms] [default] [visitor] [rows:1 ] SELECT COUNT(1) FROM `visitor_record` AS vr WHERE `visit_at` BETWEEN 1699804800 AND 1700409600
2023-11-20 16:06:23.499 [DEBU] {b4e0e8f8414699172b94686c3df59bec} [ 9 ms] [default] [visitor] [rows:1 ] SELECT COUNT(1) FROM `visitor_record` AS vr WHERE `visit_at` BETWEEN 1700409600 AND 1701014400
2023-11-20 16:24:53.405 [DEBU] {2c96e8634447991748d94b04a027f07c} [ 36 ms] [default] [visitor] [rows:15 ] SHOW FULL COLUMNS FROM `visitor_record`
2023-11-20 16:24:53.420 [DEBU] {2c96e8634447991748d94b04a027f07c} [ 14 ms] [default] [visitor] [rows:1 ] SELECT COUNT(1) FROM `visitor_record` AS vr WHERE `visit_at` BETWEEN 1699200000 AND 1699804800
2023-11-20 16:24:53.435 [DEBU] {2c96e8634447991748d94b04a027f07c} [ 14 ms] [default] [visitor] [rows:1 ] SELECT COUNT(1) FROM `visitor_record` AS vr WHERE `visit_at` BETWEEN 1699804800 AND 1700409600
2023-11-20 16:24:53.450 [DEBU] {2c96e8634447991748d94b04a027f07c} [ 15 ms] [default] [visitor] [rows:1 ] SELECT COUNT(1) FROM `visitor_record` AS vr WHERE `visit_at` BETWEEN 1700409600 AND 1701014400
2023-11-20 16:25:05.597 [DEBU] {c83be53b4747991749d94b045561eb31} [ 15 ms] [default] [visitor] [rows:1 ] SELECT COUNT(1) FROM `visitor_record` AS vr WHERE `visit_at` BETWEEN 1700409600 AND 1701014400
2023-11-20 16:25:12.876 [DEBU] {684dd0ed484799174ad94b04897873d8} [ 14 ms] [default] [visitor] [rows:1 ] SELECT COUNT(1) FROM `visitor_record` AS vr WHERE `visit_at` BETWEEN 1699804800 AND 1700409600
2023-11-20 16:25:12.894 [DEBU] {684dd0ed484799174ad94b04897873d8} [ 17 ms] [default] [visitor] [rows:1 ] SELECT COUNT(1) FROM `visitor_record` AS vr WHERE `visit_at` BETWEEN 1700409600 AND 1701014400
2023-11-20 16:34:43.990 [DEBU] {c49b4de6cd4799171659bd29c1a4a18a} [ 23 ms] [default] [visitor] [rows:15 ] SHOW FULL COLUMNS FROM `visitor_record`
2023-11-20 16:34:44.000 [DEBU] {c49b4de6cd4799171659bd29c1a4a18a} [ 8 ms] [default] [visitor] [rows:1 ] SELECT COUNT(1) FROM `visitor_record` AS vr WHERE `visit_at` BETWEEN 1699804800 AND 1700409600
2023-11-20 16:34:44.010 [DEBU] {c49b4de6cd4799171659bd29c1a4a18a} [ 10 ms] [default] [visitor] [rows:1 ] SELECT COUNT(1) FROM `visitor_record` AS vr WHERE `visit_at` BETWEEN 1700409600 AND 1701014400
2023-11-20 16:45:49.602 [DEBU] {f4968add68489917fd1faf6874747956} [ 62 ms] [default] [visitor] [rows:15 ] SHOW FULL COLUMNS FROM `visitor_record`
2023-11-20 16:45:49.614 [DEBU] {f4968add68489917fd1faf6874747956} [ 10 ms] [default] [visitor] [rows:1 ] SELECT COUNT(1) FROM `visitor_record` AS vr WHERE `visit_at` BETWEEN 1696089600 AND 1698768000
2023-11-20 16:45:49.624 [DEBU] {f4968add68489917fd1faf6874747956} [ 10 ms] [default] [visitor] [rows:1 ] SELECT COUNT(1) FROM `visitor_record` AS vr WHERE `visit_at` BETWEEN 1698768000 AND 1701360000
2023-11-20 16:46:47.799 [DEBU] {30f28d6c76489917f878e86f56998217} [ 24 ms] [default] [visitor] [rows:15 ] SHOW FULL COLUMNS FROM `visitor_record`
2023-11-20 16:46:47.809 [DEBU] {30f28d6c76489917f878e86f56998217} [ 10 ms] [default] [visitor] [rows:1 ] SELECT COUNT(1) FROM `visitor_record` AS vr WHERE `visit_at` BETWEEN 1696089600 AND 1698768000
2023-11-20 16:46:47.819 [DEBU] {30f28d6c76489917f878e86f56998217} [ 10 ms] [default] [visitor] [rows:1 ] SELECT COUNT(1) FROM `visitor_record` AS vr WHERE `visit_at` BETWEEN 1698768000 AND 1701360000
2023-11-20 16:46:57.386 [DEBU] {e0c2e2a878489917f978e86f564a306d} [ 10 ms] [default] [visitor] [rows:1 ] SELECT COUNT(1) FROM `visitor_record` AS vr WHERE `visit_at` BETWEEN 1693497600 AND 1696089600
2023-11-20 16:46:57.396 [DEBU] {e0c2e2a878489917f978e86f564a306d} [ 10 ms] [default] [visitor] [rows:1 ] SELECT COUNT(1) FROM `visitor_record` AS vr WHERE `visit_at` BETWEEN 1696089600 AND 1698768000
2023-11-20 16:46:57.405 [DEBU] {e0c2e2a878489917f978e86f564a306d} [ 9 ms] [default] [visitor] [rows:1 ] SELECT COUNT(1) FROM `visitor_record` AS vr WHERE `visit_at` BETWEEN 1698768000 AND 1701360000
2023-11-20 16:49:18.317 [DEBU] {745a267899489917b57499208e66e725} [ 24 ms] [default] [visitor] [rows:15 ] SHOW FULL COLUMNS FROM `visitor_record`
2023-11-20 16:49:18.327 [DEBU] {745a267899489917b57499208e66e725} [ 9 ms] [default] [visitor] [rows:1 ] SELECT COUNT(1) FROM `visitor_record` AS vr WHERE `visit_at` BETWEEN 1693497600 AND 1696089600
2023-11-20 16:49:18.342 [DEBU] {745a267899489917b57499208e66e725} [ 15 ms] [default] [visitor] [rows:1 ] SELECT COUNT(1) FROM `visitor_record` AS vr WHERE `visit_at` BETWEEN 1696089600 AND 1698768000
2023-11-20 16:49:18.353 [DEBU] {745a267899489917b57499208e66e725} [ 11 ms] [default] [visitor] [rows:1 ] SELECT COUNT(1) FROM `visitor_record` AS vr WHERE `visit_at` BETWEEN 1698768000 AND 1701360000
2023-11-20 16:53:07.045 [DEBU] {040d9bb8ce48991793734a54633bd6f0} [ 38 ms] [default] [visitor] [rows:15 ] SHOW FULL COLUMNS FROM `visitor_record`
2023-11-20 16:53:07.060 [DEBU] {040d9bb8ce48991793734a54633bd6f0} [ 14 ms] [default] [visitor] [rows:1 ] SELECT COUNT(1) FROM `visitor_record` AS vr WHERE `visit_at` BETWEEN 1672502400 AND 1672502400
2023-11-20 16:53:07.075 [DEBU] {040d9bb8ce48991793734a54633bd6f0} [ 15 ms] [default] [visitor] [rows:1 ] SELECT COUNT(1) FROM `visitor_record` AS vr WHERE `visit_at` BETWEEN 1672502400 AND 1672502400
2023-11-20 16:53:07.091 [DEBU] {040d9bb8ce48991793734a54633bd6f0} [ 16 ms] [default] [visitor] [rows:1 ] SELECT COUNT(1) FROM `visitor_record` AS vr WHERE `visit_at` BETWEEN 1672502400 AND 1672502400
2023-11-20 16:53:47.177 [DEBU] {48fd1910d84899173d7eae6e79dcbd04} [ 47 ms] [default] [visitor] [rows:15 ] SHOW FULL COLUMNS FROM `visitor_record`
2023-11-20 16:53:47.200 [DEBU] {48fd1910d84899173d7eae6e79dcbd04} [ 22 ms] [default] [visitor] [rows:1 ] SELECT COUNT(1) FROM `visitor_record` AS vr WHERE `visit_at` BETWEEN 1609430400 AND 1640966400
2023-11-20 16:53:47.220 [DEBU] {48fd1910d84899173d7eae6e79dcbd04} [ 20 ms] [default] [visitor] [rows:1 ] SELECT COUNT(1) FROM `visitor_record` AS vr WHERE `visit_at` BETWEEN 1640966400 AND 1672502400
2023-11-20 16:53:47.238 [DEBU] {48fd1910d84899173d7eae6e79dcbd04} [ 18 ms] [default] [visitor] [rows:1 ] SELECT COUNT(1) FROM `visitor_record` AS vr WHERE `visit_at` BETWEEN 1672502400 AND 1704038400
2023-11-20 16:58:59.554 [DEBU] {b4ca9acb20499917cbb9743a00a2919a} [ 41 ms] [default] [visitor] [rows:15 ] SHOW FULL COLUMNS FROM `visitor_record`
2023-11-20 16:58:59.584 [DEBU] {b4ca9acb20499917cbb9743a00a2919a} [ 29 ms] [default] [visitor] [rows:1 ] SELECT COUNT(1) FROM `visitor_record` AS vr WHERE `visit_at` BETWEEN 1693497600 AND 1696089600
2023-11-20 16:58:59.601 [DEBU] {b4ca9acb20499917cbb9743a00a2919a} [ 17 ms] [default] [visitor] [rows:1 ] SELECT COUNT(1) FROM `visitor_record` AS vr WHERE `visit_at` BETWEEN 1696089600 AND 1698768000
2023-11-20 16:58:59.616 [DEBU] {b4ca9acb20499917cbb9743a00a2919a} [ 15 ms] [default] [visitor] [rows:1 ] SELECT COUNT(1) FROM `visitor_record` AS vr WHERE `visit_at` BETWEEN 1698768000 AND 1701360000
2023-11-20 16:59:04.853 [DEBU] {1cf7080922499917ccb9743ae5548e37} [ 15 ms] [default] [visitor] [rows:1 ] SELECT COUNT(1) FROM `visitor_record` AS vr WHERE `visit_at` BETWEEN 1677600000 AND 1680278400
2023-11-20 16:59:04.868 [DEBU] {1cf7080922499917ccb9743ae5548e37} [ 15 ms] [default] [visitor] [rows:1 ] SELECT COUNT(1) FROM `visitor_record` AS vr WHERE `visit_at` BETWEEN 1680278400 AND 1682870400
2023-11-20 16:59:04.885 [DEBU] {1cf7080922499917ccb9743ae5548e37} [ 17 ms] [default] [visitor] [rows:1 ] SELECT COUNT(1) FROM `visitor_record` AS vr WHERE `visit_at` BETWEEN 1682870400 AND 1685548800
2023-11-20 16:59:04.899 [DEBU] {1cf7080922499917ccb9743ae5548e37} [ 14 ms] [default] [visitor] [rows:1 ] SELECT COUNT(1) FROM `visitor_record` AS vr WHERE `visit_at` BETWEEN 1685548800 AND 1688140800
2023-11-20 16:59:04.916 [DEBU] {1cf7080922499917ccb9743ae5548e37} [ 17 ms] [default] [visitor] [rows:1 ] SELECT COUNT(1) FROM `visitor_record` AS vr WHERE `visit_at` BETWEEN 1688140800 AND 1690819200
2023-11-20 16:59:04.934 [DEBU] {1cf7080922499917ccb9743ae5548e37} [ 18 ms] [default] [visitor] [rows:1 ] SELECT COUNT(1) FROM `visitor_record` AS vr WHERE `visit_at` BETWEEN 1690819200 AND 1693497600
2023-11-20 16:59:04.950 [DEBU] {1cf7080922499917ccb9743ae5548e37} [ 16 ms] [default] [visitor] [rows:1 ] SELECT COUNT(1) FROM `visitor_record` AS vr WHERE `visit_at` BETWEEN 1693497600 AND 1696089600
2023-11-20 16:59:04.965 [DEBU] {1cf7080922499917ccb9743ae5548e37} [ 15 ms] [default] [visitor] [rows:1 ] SELECT COUNT(1) FROM `visitor_record` AS vr WHERE `visit_at` BETWEEN 1696089600 AND 1698768000
2023-11-20 16:59:04.981 [DEBU] {1cf7080922499917ccb9743ae5548e37} [ 16 ms] [default] [visitor] [rows:1 ] SELECT COUNT(1) FROM `visitor_record` AS vr WHERE `visit_at` BETWEEN 1698768000 AND 1701360000
Loading…
Cancel
Save