14 lines
206 B
Go
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))
|
||
|
}
|