Commit 27bfb90a by 王祖波

增加goodsId

parent a98664f2
......@@ -43,6 +43,11 @@ public class InteractRecordExtendInfoDTO implements Serializable {
public static class ExtendGoodsInfo implements Serializable {
/**
* 商品id
*/
private String goodsId;
/**
* 商品名称
*/
private String goodsName;
......@@ -71,6 +76,14 @@ public class InteractRecordExtendInfoDTO implements Serializable {
*/
private BigDecimal salePrice;
public String getGoodsId() {
return goodsId;
}
public void setGoodsId(String goodsId) {
this.goodsId = goodsId;
}
public String getGoodsName() {
return goodsName;
}
......
......@@ -47,6 +47,10 @@ public class InteractRecordExtendInfoVO implements Serializable {
public static class ExtendGoodsInfo {
/**
* 商品id
*/
private String goodsId;
/**
* 商品名称
*/
private String goodsName;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment