刘光辉
15 小时以前 34981c30a78e8bbd7791131059a9210f9928b62c
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
package jnpf.bizcommon.audit.entity.model;
 
import lombok.Data;
 
import java.util.List;
import java.util.Map;
 
/**
 * 审计详情中的结构化字段变更。原始值只承担证据职责,展示优先使用 oldDisplay/newDisplay。
 */
@Data
public class AuditFieldDiffViewVO {
 
    private String field;
 
    private String fieldName;
 
    private String targetTable;
 
    private String changeType;
 
    private String valueType;
 
    private String componentType;
 
    private String jnpfKey;
 
    private Boolean nameModified;
 
    private Integer type;
 
    private String oldData;
 
    private String newData;
 
    private String oldDisplay;
 
    private String newDisplay;
 
    private Boolean masked;
 
    private Boolean technical;
 
    /** 沿用 JNPF 原生日志字段名,兼容既有 ChildLogModal。 */
    private List<Map<String, Object>> chidData;
 
    /** 沿用 JNPF 原生日志字段名,兼容既有 ChildLogModal。 */
    private List<Map<String, Object>> chidField;
}