1
This commit is contained in:
@@ -1,6 +1,7 @@
|
|||||||
package ali_logistics_query
|
package ali_logistics_query
|
||||||
|
|
||||||
import (
|
import (
|
||||||
|
"fmt"
|
||||||
"git.rosy.net.cn/baseapi/utils"
|
"git.rosy.net.cn/baseapi/utils"
|
||||||
"git.rosy.net.cn/jx-callback/globals"
|
"git.rosy.net.cn/jx-callback/globals"
|
||||||
"testing"
|
"testing"
|
||||||
@@ -18,3 +19,7 @@ func Test(t *testing.T) {
|
|||||||
globals.SugarLogger.Debugf("result======== %s", utils.Format4Output(result, false))
|
globals.SugarLogger.Debugf("result======== %s", utils.Format4Output(result, false))
|
||||||
globals.SugarLogger.Debugf("err======== %s", utils.Format4Output(err, false))
|
globals.SugarLogger.Debugf("err======== %s", utils.Format4Output(err, false))
|
||||||
}
|
}
|
||||||
|
|
||||||
|
func TestSkuStatus(t *testing.T) {
|
||||||
|
fmt.Println("=", (2&2) != 0)
|
||||||
|
}
|
||||||
|
|||||||
@@ -196,3 +196,14 @@ const (
|
|||||||
TiktokLogisticsINDDELIVERYEXCEPTION = "IND_DELIVERY_EXCEPTION" // 订单配送异常,异常原因
|
TiktokLogisticsINDDELIVERYEXCEPTION = "IND_DELIVERY_EXCEPTION" // 订单配送异常,异常原因
|
||||||
TiktokLogisticsCANCELDELIVERY = "CANCEL_DELIVERY" // 订单配送取消
|
TiktokLogisticsCANCELDELIVERY = "CANCEL_DELIVERY" // 订单配送取消
|
||||||
)
|
)
|
||||||
|
|
||||||
|
// 商品审核状态: 1-未提交;2-待审核;3-审核通过;4-审核未通过;5-封禁;7-审核通过待上架;详见商品状态机:https://op.jinritemai.com/docs/question-docs/92/2070
|
||||||
|
|
||||||
|
const (
|
||||||
|
SkuCheckStatusNotCommit = 1 // 未提交
|
||||||
|
SkuCheckStatusWaitCheck = 2 // 待审核
|
||||||
|
SkuCheckStatusPass = 3 // 审核通过
|
||||||
|
SkuCheckStatusNotPass = 4 // 审核未通过
|
||||||
|
SkuCheckStatusProhibit = 5 // 禁封
|
||||||
|
SkuCheckStatusPassNotPutOn = 7 // 通过待上架
|
||||||
|
)
|
||||||
|
|||||||
Reference in New Issue
Block a user