Skip to content

Commit

Permalink
update
Browse files Browse the repository at this point in the history
  • Loading branch information
admpub committed Sep 13, 2020
1 parent 16afb93 commit 75c5b8f
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
5 changes: 3 additions & 2 deletions config/pay.go
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
package config

import (
"github.com/webx-top/com"
"strconv"

"github.com/webx-top/echo"
)

Expand All @@ -13,7 +14,7 @@ type (
)

func (a GoodsType) String() string {
return com.ToStr(a)
return strconv.FormatInt(int64(a), 10)
}

const (
Expand Down
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ require (
github.com/smartwalle/alipay/v3 v3.1.5
github.com/stretchr/testify v1.6.1 // indirect
github.com/webx-top/captcha v0.0.0-20161202061115-29e9e7f30aa0 // indirect
github.com/webx-top/com v0.0.2
github.com/webx-top/com v0.0.2 // indirect
github.com/webx-top/echo v2.3.5+incompatible
github.com/webx-top/tagfast v0.0.0-20161020041435-9a2065ce3dd2 // indirect
github.com/webx-top/validation v0.0.0-20200425052735-86da7bb89191 // indirect
Expand Down

0 comments on commit 75c5b8f

Please sign in to comment.