Files
ArmedPolice/lib/order.go
2021-11-03 17:55:27 +08:00

14 lines
206 B
Go

package lib
import (
"fmt"
"math/rand"
"time"
)
// OrderNo 订单号
func OrderNo() string {
now := time.Now()
return fmt.Sprintf("%s%d%05d", now.Format("20060102"), now.Unix(), rand.Intn(100000))
}