package com.matrix.system.shopXcx.bean; 
 | 
  
 | 
import com.matrix.core.pojo.EntityDTO; 
 | 
import com.matrix.core.anotations.Extend; 
 | 
  
 | 
/** 
 | 
 * @description 广告表 
 | 
 * @author jyy 
 | 
 * @date 2019-06-05 10:15 
 | 
 */ 
 | 
public class ShopAdvertis  extends EntityDTO{ 
 | 
    @Extend 
 | 
    private static final long serialVersionUID = 1L;  
 | 
  
 | 
     
 | 
    /** 
 | 
     * 主键 
 | 
     */ 
 | 
    private Integer  id; 
 | 
             
 | 
     
 | 
    /** 
 | 
     * 标题 
 | 
     */ 
 | 
    private String  title; 
 | 
             
 | 
     
 | 
    /** 
 | 
     * 图片路径 
 | 
     */ 
 | 
    private String  imgUrl; 
 | 
             
 | 
     
 | 
    /** 
 | 
     * 跳转路径 
 | 
     */ 
 | 
    private String  jumpPath; 
 | 
             
 | 
     
 | 
    /** 
 | 
     * 所属分类ID 
 | 
     */ 
 | 
    private Integer  typeId; 
 | 
             
 | 
     
 | 
    /** 
 | 
     * 排序 
 | 
     */ 
 | 
    private Integer  sort; 
 | 
             
 | 
     
 | 
    /** 
 | 
     * 备注 
 | 
     */ 
 | 
    private String  remarks; 
 | 
  
 | 
    /** 
 | 
     * 连接类型 1选项卡页面 2,功能页,3网页 
 | 
     */ 
 | 
    private Integer linkType; 
 | 
    /** 
 | 
     * 连接地址 
 | 
     */ 
 | 
    private String linkUrl; 
 | 
  
 | 
    /** 
 | 
     * 所属分类 
 | 
     */ 
 | 
    @Extend 
 | 
    private String adtName; 
 | 
    private Long companyId; 
 | 
    public Long getCompanyId() { 
 | 
        return companyId; 
 | 
    } 
 | 
  
 | 
    public void setCompanyId(Long companyId) { 
 | 
        this.companyId = companyId; 
 | 
    } 
 | 
  
 | 
    public Integer getLinkType() { 
 | 
        return linkType; 
 | 
    } 
 | 
  
 | 
    public void setLinkType(Integer linkType) { 
 | 
        this.linkType = linkType; 
 | 
    } 
 | 
  
 | 
    public String getLinkUrl() { 
 | 
        return linkUrl; 
 | 
    } 
 | 
  
 | 
    public void setLinkUrl(String linkUrl) { 
 | 
        this.linkUrl = linkUrl; 
 | 
    } 
 | 
  
 | 
    public Integer getId() { 
 | 
        return id; 
 | 
    } 
 | 
        
 | 
       public void setId(Integer id) { 
 | 
        this.id=id; 
 | 
    } 
 | 
        
 | 
  
 | 
    public String getTitle() { 
 | 
        return title; 
 | 
    } 
 | 
        
 | 
       public void setTitle(String title) { 
 | 
        this.title=title; 
 | 
    } 
 | 
        
 | 
  
 | 
    public String getImgUrl() { 
 | 
        return imgUrl; 
 | 
    } 
 | 
        
 | 
       public void setImgUrl(String imgUrl) { 
 | 
        this.imgUrl=imgUrl; 
 | 
    } 
 | 
        
 | 
  
 | 
    public String getJumpPath() { 
 | 
        return jumpPath; 
 | 
    } 
 | 
        
 | 
       public void setJumpPath(String jumpPath) { 
 | 
        this.jumpPath=jumpPath; 
 | 
    } 
 | 
        
 | 
  
 | 
    public Integer getTypeId() { 
 | 
        return typeId; 
 | 
    } 
 | 
        
 | 
       public void setTypeId(Integer typeId) { 
 | 
        this.typeId=typeId; 
 | 
    } 
 | 
        
 | 
  
 | 
    public Integer getSort() { 
 | 
        return sort; 
 | 
    } 
 | 
        
 | 
       public void setSort(Integer sort) { 
 | 
        this.sort=sort; 
 | 
    } 
 | 
        
 | 
  
 | 
    public String getRemarks() { 
 | 
        return remarks; 
 | 
    } 
 | 
        
 | 
       public void setRemarks(String remarks) { 
 | 
        this.remarks=remarks; 
 | 
    } 
 | 
  
 | 
    public String getAdtName() { 
 | 
        return adtName; 
 | 
    } 
 | 
  
 | 
    public void setAdtName(String adtName) { 
 | 
        this.adtName = adtName; 
 | 
    } 
 | 
  
 | 
} 
 |