This commit is contained in:
richboo111
2023-01-18 16:53:47 +08:00
parent 323a28f720
commit 6cafde38ff
7 changed files with 198 additions and 51 deletions

View File

@@ -6,7 +6,6 @@ import (
"git.rosy.net.cn/baseapi/utils"
"go.uber.org/zap"
"testing"
"time"
)
var (
@@ -58,6 +57,11 @@ func TestGetWaybillPrice(t *testing.T) {
fmt.Println(needPayMoney, priceToken, err)
}
func Test(t *testing.T) {
fmt.Println(utils.Int64ToStr(time.Now().Unix() * 1000))
type tStruct struct {
name string
}
func Test(t *testing.T) {
a := tStruct{name: "11"}
fmt.Println(a != tStruct{})
}