admin
2025-02-25 30d8e227e8d823b6c38c3b9c90ac2df03b63befe
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
package com.yeshi.fanli.entity.bus.search;
 
import java.util.Date;
 
import com.yeshi.fanli.entity.SystemEnum;
import org.springframework.data.annotation.Id;
import org.springframework.data.mongodb.core.mapping.Document;
import org.yeshi.utils.generater.mybatis.Column;
import org.yeshi.utils.generater.mybatis.Table;
 
import com.google.gson.annotations.Expose;
 
@Document(collection = "searchRecord")
public class HistorySearch {
    @Id
    private String id;
    private String device;
    private Integer goodsType;
    private Long uid;
    private SystemEnum system;
    private String key;
    private String ipInfo;
    private Date createtime;
 
    public String getIpInfo() {
        return ipInfo;
    }
 
    public void setIpInfo(String ipInfo) {
        this.ipInfo = ipInfo;
    }
 
    public String getId() {
        return id;
    }
 
    public void setId(String id) {
        this.id = id;
    }
 
    public Integer getGoodsType() {
        return goodsType;
    }
 
    public void setGoodsType(Integer goodsType) {
        this.goodsType = goodsType;
    }
 
    public String getDevice() {
        return device;
    }
 
    public void setDevice(String device) {
        this.device = device;
    }
 
    public Long getUid() {
        return uid;
    }
 
    public void setUid(Long uid) {
        this.uid = uid;
    }
 
    public SystemEnum getSystem() {
        return system;
    }
 
    public void setSystem(SystemEnum system) {
        this.system = system;
    }
 
    public String getKey() {
        return key;
    }
 
    public void setKey(String key) {
        this.key = key;
    }
 
    public Date getCreatetime() {
        return createtime;
    }
 
    public void setCreatetime(Date createtime) {
        this.createtime = createtime;
    }
}