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; } }