package com.matrix.system.shopXcx.dto; import java.util.Map; /** * @author wzy * @date 2020-04-21 12:00 **/ public class CreateSalonDTO { private Map attrLists; private Long actId; private Long shopId; public Map getAttrLists() { return attrLists; } public void setAttrLists(Map 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; } }