Files
ArmedPolice/lib/order.go

14 lines
206 B
Go
Raw Permalink Normal View History

2021-11-03 17:55:27 +08:00
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))
}