package com.yeshi.fanli.dto.suning;
|
|
public class SuningPgInfo {
|
private String pgNum;// 成团人数
|
private String pgPrice;// 拼购价
|
private String pgUrl;// 拼购四级页地址
|
private String pgActionId;// 拼购活动ID
|
|
public String getPgNum() {
|
return pgNum;
|
}
|
|
public void setPgNum(String pgNum) {
|
this.pgNum = pgNum;
|
}
|
|
public String getPgPrice() {
|
return pgPrice;
|
}
|
|
public void setPgPrice(String pgPrice) {
|
this.pgPrice = pgPrice;
|
}
|
|
public String getPgUrl() {
|
return pgUrl;
|
}
|
|
public void setPgUrl(String pgUrl) {
|
this.pgUrl = pgUrl;
|
}
|
|
public String getPgActionId() {
|
return pgActionId;
|
}
|
|
public void setPgActionId(String pgActionId) {
|
this.pgActionId = pgActionId;
|
}
|
}
|