Helius
2022-05-27 4351e71d782741143a98f86f6648acd16689165f
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
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
package com.matrix.system.shopXcx.bean;
 
import com.matrix.core.pojo.EntityDTO;
import com.matrix.core.anotations.Extend;
 
/**
 * @description 会员搜索记录
 * @author pengliang
 * @date 2019-06-14 14:15
 */
public class ShopSearchRecord  extends EntityDTO{
    @Extend
    private static final long serialVersionUID = 1L; 
 
    
    /**
     * 主键
     */
    private Integer  searchId;
            
    
    /**
     * 用户id
     */
    private Long  userId;
            
    
    /**
     * 搜索内容
     */
    private String  searchContent;
            
    
    /**
     * 搜索品牌
     */
    private String  searchBrand;
            
    
    /**
     * 搜索最低价格
     */
    private Integer  searchPriceStart;
            
    
    /**
     * 搜索最高价格
     */
    private Integer  searchPriceEnd;
            
    
    /**
     * 搜索属性
     */
    private String  searchAttrs;
            
    
    /**
     * 搜索类型(1标题查询)
     */
    private Integer  searchType;
            
    
    /**
     * 是否删除(1已删除,2未删除)
     */
    private Integer  searchDel;
 
    private Long companyId;
    public Long getCompanyId() {
        return companyId;
    }
 
    public void setCompanyId(Long companyId) {
        this.companyId = companyId;
    }
 
    public Integer getSearchId() {
        return searchId;
    }
       
       public void setSearchId(Integer searchId) {
        this.searchId=searchId;
    }
       
 
    public Long getUserId() {
        return userId;
    }
       
       public void setUserId(Long userId) {
        this.userId=userId;
    }
       
 
    public String getSearchContent() {
        return searchContent;
    }
       
       public void setSearchContent(String searchContent) {
        this.searchContent=searchContent;
    }
       
 
    public String getSearchBrand() {
        return searchBrand;
    }
       
       public void setSearchBrand(String searchBrand) {
        this.searchBrand=searchBrand;
    }
       
 
    public Integer getSearchPriceStart() {
        return searchPriceStart;
    }
       
       public void setSearchPriceStart(Integer searchPriceStart) {
        this.searchPriceStart=searchPriceStart;
    }
       
 
    public Integer getSearchPriceEnd() {
        return searchPriceEnd;
    }
       
       public void setSearchPriceEnd(Integer searchPriceEnd) {
        this.searchPriceEnd=searchPriceEnd;
    }
       
 
    public String getSearchAttrs() {
        return searchAttrs;
    }
       
       public void setSearchAttrs(String searchAttrs) {
        this.searchAttrs=searchAttrs;
    }
       
 
    public Integer getSearchType() {
        return searchType;
    }
       
       public void setSearchType(Integer searchType) {
        this.searchType=searchType;
    }
       
 
    public Integer getSearchDel() {
        return searchDel;
    }
       
       public void setSearchDel(Integer searchDel) {
        this.searchDel=searchDel;
    }
       
 
 
  
}