From fee67ca8a0760315047a52fc4101a8f4f80b7a7f Mon Sep 17 00:00:00 2001 From: 13693261870 <252740454@qq.com> Date: 星期一, 11 十一月 2024 15:02:54 +0800 Subject: [PATCH] 1 --- src/main/java/com/moon/server/entity/ctrl/MarkJsonEntity.java | 13 +++++-------- 1 files changed, 5 insertions(+), 8 deletions(-) diff --git a/src/main/java/com/moon/server/entity/ctrl/MarkJsonEntity.java b/src/main/java/com/moon/server/entity/ctrl/MarkJsonEntity.java index c9fa854..d4e9de0 100644 --- a/src/main/java/com/moon/server/entity/ctrl/MarkJsonEntity.java +++ b/src/main/java/com/moon/server/entity/ctrl/MarkJsonEntity.java @@ -2,14 +2,11 @@ import java.io.Serializable; -/** - * 鏍囩粯JSON瀹炰綋绫� - * @author WWW - */ +@SuppressWarnings("ALL") public class MarkJsonEntity implements Serializable { private static final long serialVersionUID = 7776629022021914001L; - private Integer id; + private Long id; private String name; @@ -26,15 +23,15 @@ public MarkJsonEntity() { } - public MarkJsonEntity(Integer id) { + public MarkJsonEntity(Long id) { this.id = id; } - public Integer getId() { + public Long getId() { return id; } - public void setId(Integer id) { + public void setId(Long id) { this.id = id; } -- Gitblit v1.9.3