Commit 43b0aae6 by zhangxingmin

push

parent 6fe081d9
...@@ -236,9 +236,15 @@ public class ApiExpectedFortunePageResponse { ...@@ -236,9 +236,15 @@ public class ApiExpectedFortunePageResponse {
private LocalDateTime createTime; private LocalDateTime createTime;
/** /**
* 更新时间 * 创建人名称
*/
private String creatorName;
/**
* 更新时间(操作时间)
*/ */
@Schema(description = "更新时间") @Schema(description = "更新时间")
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8")
private LocalDateTime updateTime; private LocalDateTime updateTime;
/** /**
......
...@@ -259,6 +259,12 @@ public class ExpectedFortune implements Serializable { ...@@ -259,6 +259,12 @@ public class ExpectedFortune implements Serializable {
private String creatorId; private String creatorId;
/** /**
* 创建人名称
*/
@TableField(value = "creator_name", fill = FieldFill.INSERT)
private String creatorName;
/**
* 更新人ID * 更新人ID
*/ */
@TableField(value = "updater_id", fill = FieldFill.UPDATE) @TableField(value = "updater_id", fill = FieldFill.UPDATE)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment