- GetMissingStoreSkuFromOrder
This commit is contained in:
@@ -576,3 +576,8 @@ func TaskResult2Hint(resultList []interface{}) (hint string) {
|
||||
hint = strings.Join(strList, ",")
|
||||
return hint
|
||||
}
|
||||
|
||||
// 这个函数用于将两个整数合并为一单一int64,不要用于持久化的场景
|
||||
func Combine2Int(int1, int2 int) (outInt int64) {
|
||||
return int64(int1)*100000 + int64(int2)
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user