package com.matrix.system.shopXcx.api.vo; import org.springframework.web.bind.annotation.PathVariable; /** * 小程序二维码生成请求对象 */ public class QrcodeVo { /** * 门店id */ private Long shopId; /** * 产品id */ private Integer productId; /** * 活动id */ private Long actId; /** * 团队id */ private Long gjId; /** * 分享场景值 */ private String scene; /** * 二维码路径 */ private String path; /** * 几人团id */ private Long gpId; /** * 活动类型 1-普通 2-拼团 3-秒杀 */ private Integer activityType; /** * 秒杀id */ private Long skillId; public Long getSkillId() { return skillId; } public void setSkillId(Long skillId) { this.skillId = skillId; } public Integer getActivityType() { return activityType; } public void setActivityType(Integer activityType) { this.activityType = activityType; } public Long getGpId() { return gpId; } public void setGpId(Long gpId) { this.gpId = gpId; } public String getScene() { return scene; } public void setScene(String scene) { this.scene = scene; } public String getPath() { return path; } public void setPath(String path) { this.path = path; } public Long getShopId() { return shopId; } public void setShopId(Long shopId) { this.shopId = shopId; } public Integer getProductId() { return productId; } public void setProductId(Integer productId) { this.productId = productId; } public Long getActId() { return actId; } public void setActId(Long actId) { this.actId = actId; } public Long getGjId() { return gjId; } public void setGjId(Long gjId) { this.gjId = gjId; } }