mirror of
https://codeup.aliyun.com/64f7d6b8ce01efaafef1e678/coal/coal.git
synced 2026-01-25 07:46:40 +08:00
默认返回基本字段
This commit is contained in:
@@ -3,10 +3,25 @@ package cn.lihongjie.coal.base.dto;
|
||||
import lombok.Getter;
|
||||
import lombok.Setter;
|
||||
|
||||
import java.time.LocalDateTime;
|
||||
|
||||
@Getter
|
||||
@Setter
|
||||
public abstract class BaseDto {
|
||||
|
||||
private String id;
|
||||
|
||||
private String createUserId;
|
||||
|
||||
|
||||
private String createUserName;
|
||||
|
||||
private LocalDateTime createTime;
|
||||
|
||||
|
||||
private String updateUserId;
|
||||
private String updateUserName;
|
||||
|
||||
private LocalDateTime updateTime;
|
||||
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user