935090232@qq.com
2021-01-15 e971ea090aa1f320f3c3f78c3a2a8d50f16dd4d0
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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
package com.matrix.system.shopXcx.bean;
 
import com.matrix.core.pojo.EntityDTO;
 
/**
 * @Author wzy
 * @Date 2020/4/20
 * @email wangdoubleone@gmail.com
 * @Version V1.0
 **/
public class ShopActivitiesSalonAttrRecord {
 
    private Long id;
 
    private String attrName;
 
    private String attrValue;
 
    private Long asrId;
 
    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 String getAttrValue() {
        return attrValue;
    }
 
    public void setAttrValue(String attrValue) {
        this.attrValue = attrValue;
    }
 
    public Long getAsrId() {
        return asrId;
    }
 
    public void setAsrId(Long asrId) {
        this.asrId = asrId;
    }
}