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;
|
}
|