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