mirror of
https://gitee.com/binary/weixin-java-tools.git
synced 2025-04-05 17:38:05 +08:00
🐛 修复两个变量类型
This commit is contained in:
parent
9e3f256032
commit
7bd9ef4dfd
@ -3,6 +3,7 @@ package cn.binarywang.wx.miniapp.bean.live;
|
||||
import lombok.Data;
|
||||
|
||||
import java.io.Serializable;
|
||||
import java.math.BigDecimal;
|
||||
|
||||
/**
|
||||
* 直播商品信息
|
||||
@ -14,8 +15,8 @@ public class WxMaLiveGoodInfo implements Serializable {
|
||||
private String coverImgUrl;
|
||||
private String url;
|
||||
private Integer priceType;
|
||||
private String price;
|
||||
private String price2;
|
||||
private BigDecimal price;
|
||||
private BigDecimal price2;
|
||||
private String name;
|
||||
/**
|
||||
* 1, 2:表示是为api添加商品,否则是在MP添加商品
|
||||
|
@ -5,6 +5,7 @@ import com.google.gson.annotations.SerializedName;
|
||||
import lombok.Data;
|
||||
|
||||
import java.io.Serializable;
|
||||
import java.math.BigDecimal;
|
||||
import java.util.List;
|
||||
|
||||
/**
|
||||
@ -66,8 +67,8 @@ public class WxMaLiveResult implements Serializable {
|
||||
*/
|
||||
@SerializedName("audit_status")
|
||||
private Integer auditStatus;
|
||||
private String price;
|
||||
private String price2;
|
||||
private BigDecimal price;
|
||||
private BigDecimal price2;
|
||||
/**
|
||||
* 1, 2:表示是为api添加商品,否则是在MP添加商品
|
||||
*/
|
||||
|
Loading…
Reference in New Issue
Block a user