因为审计字段的 display 属性默认为 false,如果需要显示,需要在模型显式指定为 true。

@Property(displayName = "申请时间", display = true)
private Date create_date;

@Property(displayName = "更新时间", display = true)
private Date update_date;

@Property(displayName = "创建人", display = true)
private String create_user;

@Property(displayName = "更新人", display = true)
private String update_date;