package com.matrix.system.shopXcx.bean; 
 | 
  
 | 
import com.matrix.core.pojo.EntityDTO; 
 | 
  
 | 
import java.util.Date; 
 | 
  
 | 
/** 
 | 
 * @Author wzy 
 | 
 * @Date 2020/4/20 
 | 
 * @email wangdoubleone@gmail.com 
 | 
 * @Version V1.0 
 | 
 **/ 
 | 
public class ShopActivitiesSalonDistribute extends EntityDTO { 
 | 
  
 | 
    private Long id; 
 | 
  
 | 
    private String attrName; 
 | 
  
 | 
    private Long actId; 
 | 
  
 | 
    private Long companyId; 
 | 
  
 | 
    public Long getCompanyId() { 
 | 
        return companyId; 
 | 
    } 
 | 
  
 | 
    public void setCompanyId(Long companyId) { 
 | 
        this.companyId = companyId; 
 | 
    } 
 | 
  
 | 
    public Long getId() { 
 | 
        return id; 
 | 
    } 
 | 
  
 | 
    public void setId(Long id) { 
 | 
        this.id = id; 
 | 
    } 
 | 
  
 | 
    public String getAttrName() { 
 | 
        return attrName; 
 | 
    } 
 | 
  
 | 
    public void setAttrName(String attrName) { 
 | 
        this.attrName = attrName; 
 | 
    } 
 | 
  
 | 
    public Long getActId() { 
 | 
        return actId; 
 | 
    } 
 | 
  
 | 
    public void setActId(Long actId) { 
 | 
        this.actId = actId; 
 | 
    } 
 | 
} 
 |