查询详情
This commit is contained in:
parent
02e8edbce7
commit
e0e0306577
@ -9,7 +9,6 @@ import lombok.experimental.SuperBuilder;
|
|||||||
|
|
||||||
import java.io.Serial;
|
import java.io.Serial;
|
||||||
import java.io.Serializable;
|
import java.io.Serializable;
|
||||||
import java.util.Date;
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* 基础视图对象
|
* 基础视图对象
|
||||||
@ -55,7 +54,7 @@ public class BaseVO implements Serializable {
|
|||||||
*/
|
*/
|
||||||
@JsonFormat(shape = JsonFormat.Shape.STRING, pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8")
|
@JsonFormat(shape = JsonFormat.Shape.STRING, pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8")
|
||||||
@Schema(description = "创建时间")
|
@Schema(description = "创建时间")
|
||||||
private Date createdTime;
|
private String createdTime;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* 创建人ID
|
* 创建人ID
|
||||||
@ -69,7 +68,7 @@ public class BaseVO implements Serializable {
|
|||||||
*/
|
*/
|
||||||
@JsonFormat(shape = JsonFormat.Shape.STRING, pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8")
|
@JsonFormat(shape = JsonFormat.Shape.STRING, pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8")
|
||||||
@Schema(description = "更新时间")
|
@Schema(description = "更新时间")
|
||||||
private Date updatedTime;
|
private String updatedTime;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* 更新人ID
|
* 更新人ID
|
||||||
@ -82,5 +81,5 @@ public class BaseVO implements Serializable {
|
|||||||
* 是否删除(0:未删除,1:已删除)
|
* 是否删除(0:未删除,1:已删除)
|
||||||
*/
|
*/
|
||||||
@Schema(description = "是否删除")
|
@Schema(description = "是否删除")
|
||||||
private String isDeleted;
|
private Integer isDeleted;
|
||||||
}
|
}
|
Loading…
x
Reference in New Issue
Block a user