package com.matrix.system.shopXcx.dto; 
 | 
  
 | 
import java.util.Map; 
 | 
  
 | 
/** 
 | 
 * @author wzy 
 | 
 * @date 2020-04-21 12:00 
 | 
 **/ 
 | 
public class CreateSalonDTO { 
 | 
  
 | 
    private Map<String, String> attrLists; 
 | 
  
 | 
    private Long actId; 
 | 
  
 | 
    private Long shopId; 
 | 
  
 | 
    public Map<String, String> getAttrLists() { 
 | 
        return attrLists; 
 | 
    } 
 | 
  
 | 
    public void setAttrLists(Map<String, String> attrLists) { 
 | 
        this.attrLists = attrLists; 
 | 
    } 
 | 
  
 | 
    public Long getActId() { 
 | 
        return actId; 
 | 
    } 
 | 
  
 | 
    public void setActId(Long actId) { 
 | 
        this.actId = actId; 
 | 
    } 
 | 
  
 | 
    public Long getShopId() { 
 | 
        return shopId; 
 | 
    } 
 | 
  
 | 
    public void setShopId(Long shopId) { 
 | 
        this.shopId = shopId; 
 | 
    } 
 | 
} 
 |