美团测试库存

This commit is contained in:
苏尹岚
2020-08-03 18:24:19 +08:00
parent 292f9dc7a3
commit 6369046add
2 changed files with 15 additions and 4 deletions

View File

@@ -117,6 +117,10 @@ func IsSyncStatusPrice(syncStatus int8) bool {
return (syncStatus & SyncFlagPriceMask) != 0
}
func IsSyncStatusStock(syncStatus int8) bool {
return (syncStatus & SyncFlagStockMask) != 0
}
func IsSyncStatusSeq(syncStatus int8) bool {
return (syncStatus & SyncFlagSeqMask) != 0
}