7
0
gaore-common-sdk-go/sdk/requests/types.go
2020-08-06 12:15:51 +08:00

11 lines
152 B
Go

package requests
import "strconv"
type Interger string
func (i Interger) ToInt() int {
a, _ := strconv.ParseInt(string(i), 10, 64)
return int(a)
}