Skip to content
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

增加审核状态字段 #1449

Merged
merged 5 commits into from
Mar 19, 2020
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -228,6 +228,18 @@ public class BaseInfo implements Serializable {
@SerializedName("promotion_app_brand_pass")
private String promotionAppBrandPass;


/**
*
* https://developers.weixin.qq.com/doc/offiaccount/Cards_and_Offer/Managing_Coupons_Vouchers_and_Cards.html#2
* “CARD_STATUS_NOT_VERIFY”,待审核 ;
* “CARD_STATUS_VERIFY_FAIL”,审核失败;
* “CARD_STATUS_VERIFY_OK”,通过审核;
* “CARD_STATUS_DELETE”,卡券被商户删除;
* “CARD_STATUS_DISPATCH”,在公众平台投放过的卡券 ;
*/
private String status;

@Override
public String toString() {
return WxMpGsonBuilder.create().toJson(this);
Expand Down