From 48cde94624bec615f9df9a481339d5b71be311e5 Mon Sep 17 00:00:00 2001 From: jpy <812110275@qq.com> Date: Sat, 27 May 2023 17:39:23 +0800 Subject: [PATCH] test --- screen-api/src/main/java/com/moral/api/entity/ManageLog.java | 38 +++++++++++++++++++++++--------------- 1 files changed, 23 insertions(+), 15 deletions(-) diff --git a/screen-api/src/main/java/com/moral/api/entity/ManageLog.java b/screen-api/src/main/java/com/moral/api/entity/ManageLog.java index 7b60d15..7f178f3 100644 --- a/screen-api/src/main/java/com/moral/api/entity/ManageLog.java +++ b/screen-api/src/main/java/com/moral/api/entity/ManageLog.java @@ -3,8 +3,10 @@ import com.baomidou.mybatisplus.annotation.IdType; import com.baomidou.mybatisplus.extension.activerecord.Model; import com.baomidou.mybatisplus.annotation.TableId; + import java.time.LocalDateTime; import java.io.Serializable; + import lombok.Data; import lombok.EqualsAndHashCode; @@ -14,7 +16,7 @@ * </p> * * @author moral - * @since 2021-03-09 + * @since 2021-04-13 */ @Data @EqualsAndHashCode(callSuper = false) @@ -29,19 +31,29 @@ private Integer id; /** + * ������������id + */ + private Integer accountId; + + /** + * ������������������ + */ + private String account; + + /** + * ������������ + */ + private String userName; + + /** + * ������������ + */ + private String type; + + /** * ������������ */ private String content; - - /** - * ������Id - */ - private Integer organizationId; - - /** - * ������������id - */ - private Integer operateId; /** * Ip������ @@ -54,9 +66,5 @@ private LocalDateTime createTime; - @Override - protected Serializable pkVal() { - return this.id; - } } -- Gitblit v1.8.0