jyy
2021-04-09 1443f8eb9f3b001e84f101852aa5f6ec7f49f4c9
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.matrix.system.shopXcx.api.vo;
 
/**
 * @Author wzy
 * @Date 2020/4/22
 * @email wangdoubleone@gmail.com
 * @Version V1.0
 **/
public class GroupBuyVO {
 
    private Integer offset;
 
    private Integer limit;
 
    private Long actId;
 
    public Integer getOffset() {
        return offset;
    }
 
    public void setOffset(Integer offset) {
        this.offset = offset;
    }
 
    public Integer getLimit() {
        return limit;
    }
 
    public void setLimit(Integer limit) {
        this.limit = limit;
    }
 
    public Long getActId() {
        return actId;
    }
 
    public void setActId(Long actId) {
        this.actId = actId;
    }
}