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; } }