提交修改

This commit is contained in:
邹宗楠
2022-04-11 15:40:07 +08:00
parent a157f018ff
commit 65852ad289
3 changed files with 13 additions and 4 deletions

View File

@@ -195,3 +195,13 @@ func TestDataUnmas(t *testing.T) {
fmt.Println("retsult", retsult.CallbackBusinessType)
fmt.Println("retsult", retsult.Param.PartnerOrderCode)
}
func TestDaDa(t *testing.T) {
fmt.Println("美团", 1&1)
fmt.Println("达达", 2&1)
fmt.Println("蜂鸟", 4&1)
fmt.Println("美团", 1&0)
fmt.Println("达达", 2&0)
fmt.Println("蜂鸟", 4&0)
}