package com.matrix.system.shopXcx.bean;
|
|
import com.matrix.system.common.bean.EntityDTOExt;
|
|
/**
|
* 分享二维码
|
*/
|
public class ShopShareQrcord extends EntityDTOExt {
|
|
|
/**
|
* 主键
|
*/
|
private String id;
|
|
|
/**
|
* 产品ID
|
*/
|
private Integer productId;
|
|
|
/**
|
* 用户ID
|
*/
|
private String userId;
|
|
|
/**
|
* 状态(1:已分享 2:完成 3:失效 4:删除)
|
*/
|
private Integer status;
|
|
|
/**
|
* 浏览数
|
*/
|
private Integer visitorCount;
|
|
|
/**
|
* 备注
|
*/
|
private String remark;
|
|
|
/**
|
* 二维码访问地址
|
*/
|
private String qrcodeUrl;
|
|
|
/**
|
* 门店id
|
*/
|
private Long shopId;
|
|
public Long getShopId() {
|
return shopId;
|
}
|
|
public void setShopId(Long shopId) {
|
this.shopId = shopId;
|
}
|
|
|
|
public String getId() {
|
return id;
|
}
|
|
public void setId(String id) {
|
this.id = id;
|
}
|
|
public Integer getProductId() {
|
return productId;
|
}
|
|
public void setProductId(Integer productId) {
|
this.productId = productId;
|
}
|
|
public String getUserId() {
|
return userId;
|
}
|
|
public void setUserId(String userId) {
|
this.userId = userId;
|
}
|
|
public Integer getStatus() {
|
return status;
|
}
|
|
public void setStatus(Integer status) {
|
this.status = status;
|
}
|
|
public Integer getVisitorCount() {
|
return visitorCount;
|
}
|
|
public void setVisitorCount(Integer visitorCount) {
|
this.visitorCount = visitorCount;
|
}
|
|
public String getRemark() {
|
return remark;
|
}
|
|
public void setRemark(String remark) {
|
this.remark = remark;
|
}
|
|
public String getQrcodeUrl() {
|
return qrcodeUrl;
|
}
|
|
public void setQrcodeUrl(String qrcodeUrl) {
|
this.qrcodeUrl = qrcodeUrl;
|
}
|
}
|