package com.matrix.system.shopXcx.bean; import com.matrix.core.anotations.Extend; import com.matrix.core.pojo.EntityDTO; /** * @description 广告表 * @author jyy * @date 2019-06-05 10:15 */ public class ShopWxAcode extends EntityDTO{ @Extend private static final long serialVersionUID = 1L; /** * 发布的小程序存在的页面 */ private String page; /** * 文件名称 */ private String fileName; /** * 二维码的访问路径 */ private String wxacodeUrl; private Long companyId; public Long getCompanyId() { return companyId; } public void setCompanyId(Long companyId) { this.companyId = companyId; } public String getWxacodeUrl() { return wxacodeUrl; } public void setWxacodeUrl(String wxacodeUrl) { this.wxacodeUrl = wxacodeUrl; } private String scene; public String getPage() { return page; } public void setPage(String page) { this.page = page; } public String getFileName() { return fileName; } public void setFileName(String fileName) { this.fileName = fileName; } public String getScene() { return scene; } public void setScene(String scene) { this.scene = scene; } }