You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
/**
|
|
* Created by GoLand.
|
|
* User: link1st
|
|
* Date: 2019-08-01
|
|
* Time: 18:13
|
|
*/
|
|
|
|
package helper
|
|
|
|
import (
|
|
"fmt"
|
|
"time"
|
|
)
|
|
|
|
func GetOrderIdTime() (orderId string) {
|
|
|
|
currentTime := time.Now().Nanosecond()
|
|
orderId = fmt.Sprintf("%d", currentTime)
|
|
|
|
return
|
|
}
|