wangrenhuang
2022-09-20 d365dcdb74b5e5e00cc00244150e67e244e9790e
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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
package com.hz.crm.dto;
 
/**
 * @author fwq
 * 标识扩展类
 */
public class IdDto extends PageDto{
 
    /**标识父标识*/
    private String id;
    /**子标识*/
    private String sonId;
    /**上级标识*/
    private String parentId;
    /**分类(类型)标识*/
    private String typeId;
    /**门店编号*/
    private String shopNo;
    /**无限二维码携带参数*/
    private String sceneCode;
    /**his标识*/
    private String hisId;
    /**商品类型*/
    private String goodsType;
    /**标识父标识字符串逗号分隔*/
    private String ids;
    /**团购活动id*/
    private String groupBuyId;
 
    private String shopId;
 
    public String getId() {
        return id;
    }
 
    public void setId(String id) {
        this.id = id;
    }
 
    public String getParentId() {
        return parentId;
    }
 
    public void setParentId(String parentId) {
        this.parentId = parentId;
    }
 
    public String getTypeId() {
        return typeId;
    }
 
    public void setTypeId(String typeId) {
        this.typeId = typeId;
    }
 
    public String getSonId() {
        return sonId;
    }
 
    public void setSonId(String sonId) {
        this.sonId = sonId;
    }
 
    public String getShopNo() {
        return shopNo;
    }
 
    public void setShopNo(String shopNo) {
        this.shopNo = shopNo;
    }
 
    public String getSceneCode() {
        return sceneCode;
    }
 
    public void setSceneCode(String sceneCode) {
        this.sceneCode = sceneCode;
    }
 
    public String getHisId() {
        return hisId;
    }
 
    public void setHisId(String hisId) {
        this.hisId = hisId;
    }
 
    public String getGoodsType() {
        return goodsType;
    }
 
    public void setGoodsType(String goodsType) {
        this.goodsType = goodsType;
    }
 
    public String getIds() {
        return ids;
    }
 
    public void setIds(String ids) {
        this.ids = ids;
    }
 
    public String getShopId() {
        return shopId;
    }
 
    public void setShopId(String shopId) {
        this.shopId = shopId;
    }
 
    public String getGroupBuyId() {
        return groupBuyId;
    }
 
    public void setGroupBuyId(String groupBuyId) {
        this.groupBuyId = groupBuyId;
    }
}