14 lines
237 B
Go
14 lines
237 B
Go
|
package id_generator
|
||
|
|
||
|
import (
|
||
|
"fmt"
|
||
|
"math/rand"
|
||
|
"strings"
|
||
|
"time"
|
||
|
)
|
||
|
|
||
|
func GenPickUpTrackNum() string {
|
||
|
a := fmt.Sprintf("%s%.8d", time.Now().Format("20060102150405.000"), rand.Intn(1000000))
|
||
|
return strings.ReplaceAll(a, ".", "")
|
||
|
}
|