8000 公众号接口优化,增加缺失字段和枚举类 by silloy · Pull Request #1475 · binarywang/WxJava · GitHub
[go: up one dir, main page]

Skip to content

公众号接口优化,增加缺失字段和枚举类 #1475

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 6 commits into from
Mar 28, 2020
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading < 8000 /span>
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Next Next commit
✨ 增加自助核销接口
  • Loading branch information
silloy committed Mar 27, 2020
commit 4ee3467fc3c29120a145acec297081e4c02f49b9
Original file line number Diff line number Diff line change
Expand Up @@ -348,7 +348,11 @@ public void cardSelfConsumeCellSet(String cardId, Boolean isOpen,
param.addProperty("is_open", isOpen);
param.addProperty("need_verify_cod", needVerifyCod);
param.addProperty("need_remark_amount", needRemarkAmount);
<<<<<<< HEAD
this.wxMpService.post(WxMpApiUrl.Card.CARD_SELF_CONSUME_CELL_SET, param.toString());
=======
this.wxMpService.post(WxMpApiUrl.Card.CARD_PAYCELL_SET, param.toString());
>>>>>>> :sparkles: 增加自助核销接口
}


Expand Down
0