935090232@qq.com
2021-01-31 c3b772974a10b1318f2850e2fdee6d80812f0b79
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
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;
    }
}