添加日志的操作人和时间的完整性

This commit is contained in:
sh
2026-02-04 23:13:13 +08:00
parent f7f31ae0fa
commit a5af4b6615
17 changed files with 361 additions and 25 deletions

View File

@@ -87,7 +87,7 @@ public class BussinessOperLog extends BaseEntity
@JsonFormat(pattern = "yyyy-MM-dd")
@Excel(name = "操作时间", width = 30, dateFormat = "yyyy-MM-dd")
@ApiModelProperty("操作时间")
private Date operTime;
private String operTime;
@Excel(name = "消耗时间")
@ApiModelProperty("消耗时间")
@@ -95,4 +95,10 @@ public class BussinessOperLog extends BaseEntity
@ApiModelProperty("业务类型数组")
private Integer[] businessTypes;
@ApiModelProperty("时间完整性")
private String operTimeCipher;
@ApiModelProperty("操作人完整性")
private String operNameCipher;
}