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
package com.matrix.system.common.bean;
 
import com.baomidou.mybatisplus.annotation.IdType;
import com.baomidou.mybatisplus.annotation.TableId;
import com.baomidou.mybatisplus.annotation.TableName;
import lombok.Builder;
import lombok.Data;
 
/**
 * 单据操作日志
 */
@Data
@TableName("sys_operation_log")
@Builder
public class OperationLog {
 
 
    /**
     * 主键
     */
    @TableId(value = "id",type = IdType.AUTO)
    private Long  id;
 
    /**
     *公司id
     */
    private Long  companyId;
 
    /**
     *门店id
     */
    private Long  shopId;
 
    /**
     *操作用户id
     */
    private Long  opeUserId;
 
    /**
     * 会员id
     */
    private Long  vipId;
 
    /**
     * 操作功能
     */
    private Integer  opeFunction;
 
    /**
     * 单据按钮
     */
    private Integer  opeBut;
 
    /**
     * 单据id
     */
    private Long  billId;
 
    /**
     * 单据号
     */
    private String  billNo;
 
    /**
     * 操作人ip
     */
    private String  ip;
 
    /**
     * 操作备注
     */
    private String  note;
 
    /**
     * 操作时间
     */
    private String  createTime;
 
 
 
}