package com.matrix.system.hive.bean; 
 | 
  
 | 
import java.io.Serializable; 
 | 
import java.util.Date; 
 | 
  
 | 
/** 
 | 
 * @author wzy 
 | 
 * @date 2020-12-17 
 | 
 **/ 
 | 
public class SysVipLabel implements Serializable { 
 | 
    /** 
 | 
     * 创建时间 
 | 
     */ 
 | 
    private Date createTime; 
 | 
  
 | 
    /** 
 | 
     * 创建人 
 | 
     */ 
 | 
    private String createBy; 
 | 
  
 | 
    /** 
 | 
     * 主键ID 
 | 
     */ 
 | 
    private Long id; 
 | 
  
 | 
    /** 
 | 
     * 标签内容 
 | 
     */ 
 | 
    private String label; 
 | 
  
 | 
    private Long shopId; 
 | 
  
 | 
    private Long companyId; 
 | 
  
 | 
    private Long userId; 
 | 
  
 | 
    private Integer isAll; 
 | 
  
 | 
    private String color; 
 | 
  
 | 
    private String shopName; 
 | 
  
 | 
    public String getShopName() { 
 | 
        return shopName; 
 | 
    } 
 | 
  
 | 
    public void setShopName(String shopName) { 
 | 
        this.shopName = shopName; 
 | 
    } 
 | 
  
 | 
    public Long getUserId() { 
 | 
        return userId; 
 | 
    } 
 | 
  
 | 
    public void setUserId(Long userId) { 
 | 
        this.userId = userId; 
 | 
    } 
 | 
  
 | 
    public Integer getIsAll() { 
 | 
        return isAll; 
 | 
    } 
 | 
  
 | 
    public void setIsAll(Integer isAll) { 
 | 
        this.isAll = isAll; 
 | 
    } 
 | 
  
 | 
    public String getColor() { 
 | 
        return color; 
 | 
    } 
 | 
  
 | 
    public void setColor(String color) { 
 | 
        this.color = color; 
 | 
    } 
 | 
  
 | 
    public Long getShopId() { 
 | 
        return shopId; 
 | 
    } 
 | 
  
 | 
    public void setShopId(Long shopId) { 
 | 
        this.shopId = shopId; 
 | 
    } 
 | 
  
 | 
    public Long getCompanyId() { 
 | 
        return companyId; 
 | 
    } 
 | 
  
 | 
    public void setCompanyId(Long companyId) { 
 | 
        this.companyId = companyId; 
 | 
    } 
 | 
  
 | 
    public Date getCreateTime() { 
 | 
        return createTime; 
 | 
    } 
 | 
  
 | 
    public void setCreateTime(Date createTime) { 
 | 
        this.createTime = createTime; 
 | 
    } 
 | 
  
 | 
    public String getCreateBy() { 
 | 
        return createBy; 
 | 
    } 
 | 
  
 | 
    public void setCreateBy(String createBy) { 
 | 
        this.createBy = createBy; 
 | 
    } 
 | 
  
 | 
    public Long getId() { 
 | 
        return id; 
 | 
    } 
 | 
  
 | 
    public void setId(Long id) { 
 | 
        this.id = id; 
 | 
    } 
 | 
  
 | 
    public String getLabel() { 
 | 
        return label; 
 | 
    } 
 | 
  
 | 
    public void setLabel(String label) { 
 | 
        this.label = label; 
 | 
    } 
 | 
} 
 |