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

会员卡相关接口优化 #1519

Merged
merged 6 commits into from
Apr 18, 2020
Merged
Show file tree
Hide file tree
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 @@ -122,6 +122,19 @@ public final class MemberCard implements Serializable {
@SerializedName("custom_cell1")
private CustomCell1 customCell1;

/**
* 自定义会员信息类目,会员卡激活后显示.
*/
@SerializedName("custom_cell2")
private CustomCell1 customCell2;


/**
* 自定义会员信息类目,会员卡激活后显示.
*/
@SerializedName("custom_cell3")
private CustomCell1 customCell3;

/**
* 积分规则,JSON结构积分规则.
*/
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -119,6 +119,19 @@ public final class MemberCardUpdate implements Serializable {
@SerializedName("custom_cell1")
private CustomCell1 customCell1;

/**
* 自定义会员信息类目,会员卡激活后显示.
*/
@SerializedName("custom_cell2")
private CustomCell1 customCell2;


/**
* 自定义会员信息类目,会员卡激活后显示.
*/
@SerializedName("custom_cell3")
private CustomCell1 customCell3;

/**
* 积分规则,JSON结构积分规则.
*/
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -40,10 +40,18 @@ public class WxMpMemberCardUpdateMessage implements Serializable {
*/
private Integer bonus;
/**
* 本次积分变动值,传负数代表减少
* 本次积分变动值,传负数代表减少,错误单词,只是为了保持兼容
*/
@Deprecated
@SerializedName("add_bonus")
private Integer addBounus;


/**
* 本次积分变动值,传负数代表减少
*/
@SerializedName("add_bonus")
private Integer addBonus;
/**
* 商家自定义积分消耗记录,不超过14个汉字
*/
Expand Down