yujian
2020-05-25 758a59e77aba29b858698808fedd31c569955357
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
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;
    }
}