package com.hz.phis.dt.promotion;
|
|
public class PromotionGoodsDt {
|
|
/**标识*/
|
private String id;
|
/**类型-商品类型:project(项目),retail(商品),increment(增值金),stored(储值金),integral(积分)*/
|
private String type;
|
/**名称*/
|
private String commonName;
|
/**数量*/
|
private String num;
|
/**商品价格(元)/储值金(元)/增值金(元)/积分*/
|
private String price;
|
|
public String getId() {
|
return id;
|
}
|
|
public void setId(String id) {
|
this.id = id;
|
}
|
|
public String getType() {
|
return type;
|
}
|
|
public void setType(String type) {
|
this.type = type;
|
}
|
|
public String getCommonName() {
|
return commonName;
|
}
|
|
public void setCommonName(String commonName) {
|
this.commonName = commonName;
|
}
|
|
public String getNum() {
|
return num;
|
}
|
|
public void setNum(String num) {
|
this.num = num;
|
}
|
|
public String getPrice() {
|
return price;
|
}
|
|
public void setPrice(String price) {
|
this.price = price;
|
}
|
}
|