shikeyin
2024-01-11 65da8373531677b1c37a98f53eaa30c892f35e5a
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
package com.ishop.model;
 
/**
 * 浏览记录,不适用生成PO,直接定义该对象,与数据库对应。
 * @author 时克英
 * @date 2023-06-30
 */
public class BrowseRecord {
 
    public long getUid() {
        return uid;
    }
 
    public void setUid(long uid) {
        this.uid = uid;
    }
 
    public long getProductId() {
        return productId;
    }
 
    public void setProductId(long productId) {
        this.productId = productId;
    }
 
    public String getDate() {
        return date;
    }
 
    public void setDate(String date) {
        this.date = date;
    }
 
    public long getCreateTime() {
        return createTime;
    }
 
    public void setCreateTime(long createTime) {
        this.createTime = createTime;
    }
 
    private long uid;
    private long productId;
    private String date;
    private long createTime;
}