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
| package com.matrix.system.common.bean.respVO;
|
| import com.fasterxml.jackson.annotation.JsonFormat;
| import lombok.Data;
|
| import java.util.Date;
|
| @Data
| public class OperationLogRespVo {
|
|
| /**
| * 主键
| */
| private Long id;
|
| /**
| *门店名称
| */
| private String shopName;
|
| /**
| *操作用户
| */
| private String opeUser;
|
|
| /**
| * 会员
| */
| private String vipName;
|
| /**
| * 操作功能
| */
| private Integer opeFunction;
| private String opeFunctionLabel;
|
| /**
| * 单据按钮
| */
| private Integer opeBut;
| private String opeButLabel;
|
| /**
| * 单据号
| */
| private String billNo;
|
| /**
| * 操作人ip
| */
| private String ip;
|
| /**
| * 操作备注
| */
| private String note;
|
| /**
| * 操作时间
| */
| @JsonFormat(pattern = "yyyy-MM-dd hh:mm:ss", timezone="GMT+8")
| private Date createTime;
|
| }
|
|