Commit 289babb2 by 王祖波

Merge branch 'feature-recommend' into 'developer'

增加goodsId

See merge request !2724
parents 35f0f5d8 27bfb90a
......@@ -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