mirror of
https://github.com/continew-org/continew-admin.git
synced 2025-09-23 03:00:58 +08:00
优化:将列表排序由按修改时间降序调整为按创建时间降序(避免修改后数据记录移动),将列表中的审计信息由“修改人”、“修改时间”调整展示为“创建人”、“创建时间”,后续涉及完整审计信息将在详情中统一展示
This commit is contained in:
@@ -36,20 +36,20 @@ public class BaseDetailVO extends BaseVO {
|
||||
private static final long serialVersionUID = 1L;
|
||||
|
||||
/**
|
||||
* 创建人
|
||||
* 修改人
|
||||
*/
|
||||
@JsonIgnore
|
||||
private Long createUser;
|
||||
private Long updateUser;
|
||||
|
||||
/**
|
||||
* 创建人
|
||||
* 修改人
|
||||
*/
|
||||
@Schema(description = "创建人")
|
||||
private String createUserString;
|
||||
@Schema(description = "修改人")
|
||||
private String updateUserString;
|
||||
|
||||
/**
|
||||
* 创建时间
|
||||
* 修改时间
|
||||
*/
|
||||
@Schema(description = "创建时间")
|
||||
private LocalDateTime createTime;
|
||||
@Schema(description = "修改时间")
|
||||
private LocalDateTime updateTime;
|
||||
}
|
||||
|
@@ -37,20 +37,20 @@ public class BaseVO implements Serializable {
|
||||
private static final long serialVersionUID = 1L;
|
||||
|
||||
/**
|
||||
* 修改人
|
||||
* 创建人
|
||||
*/
|
||||
@JsonIgnore
|
||||
private Long updateUser;
|
||||
private Long createUser;
|
||||
|
||||
/**
|
||||
* 修改人
|
||||
* 创建人
|
||||
*/
|
||||
@Schema(description = "修改人")
|
||||
private String updateUserString;
|
||||
@Schema(description = "创建人")
|
||||
private String createUserString;
|
||||
|
||||
/**
|
||||
* 修改时间
|
||||
* 创建时间
|
||||
*/
|
||||
@Schema(description = "修改时间")
|
||||
private LocalDateTime updateTime;
|
||||
@Schema(description = "创建时间")
|
||||
private LocalDateTime createTime;
|
||||
}
|
||||
|
Reference in New Issue
Block a user