From 47a751cb301d05276ae5d75145d57b2d090fe4e1 Mon Sep 17 00:00:00 2001
From: kongzy <kongzy>
Date: Mon, 01 Jul 2024 10:58:35 +0800
Subject: [PATCH] change
---
src/main/java/com/nanometer/smartlab/entity/BaseMeta.java | 81 ++++------------------------------------
1 files changed, 8 insertions(+), 73 deletions(-)
diff --git a/src/main/java/com/nanometer/smartlab/entity/BaseMeta.java b/src/main/java/com/nanometer/smartlab/entity/BaseMeta.java
index c66a2fa..78ee505 100644
--- a/src/main/java/com/nanometer/smartlab/entity/BaseMeta.java
+++ b/src/main/java/com/nanometer/smartlab/entity/BaseMeta.java
@@ -1,6 +1,9 @@
package com.nanometer.smartlab.entity;
import com.nanometer.smartlab.entity.enumtype.ValidFlag;
+import lombok.Data;
+import lombok.Getter;
+import lombok.Setter;
import java.io.Serializable;
import java.sql.Timestamp;
@@ -8,10 +11,12 @@
/**
* Created by johnny on 17/8/21.
*/
+@Getter
+@Setter
public class BaseMeta implements Serializable {
- private String id;
- private String groupId;
+ private Long id;
+ private Long groupId;
private String metaKey;
private String metaValue;
private Integer orderIndex;
@@ -19,76 +24,6 @@
private Timestamp createTime;
private Timestamp updateTime;
private ValidFlag validFlag;
+ private String groupCode;
- public String getId() {
- return id;
- }
-
- public void setId(String id) {
- this.id = id;
- }
-
- public String getGroupId() {
- return groupId;
- }
-
- public void setGroupId(String groupId) {
- this.groupId = groupId;
- }
-
- public String getMetaKey() {
- return metaKey;
- }
-
- public void setMetaKey(String metaKey) {
- this.metaKey = metaKey;
- }
-
- public String getMetaValue() {
- return metaValue;
- }
-
- public void setMetaValue(String metaValue) {
- this.metaValue = metaValue;
- }
-
- public Integer getOrderIndex() {
- return orderIndex;
- }
-
- public void setOrderIndex(Integer orderIndex) {
- this.orderIndex = orderIndex;
- }
-
- public String getMemo() {
- return memo;
- }
-
- public void setMemo(String memo) {
- this.memo = memo;
- }
-
- public Timestamp getCreateTime() {
- return createTime;
- }
-
- public void setCreateTime(Timestamp createTime) {
- this.createTime = createTime;
- }
-
- public Timestamp getUpdateTime() {
- return updateTime;
- }
-
- public void setUpdateTime(Timestamp updateTime) {
- this.updateTime = updateTime;
- }
-
- public ValidFlag getValidFlag() {
- return validFlag;
- }
-
- public void setValidFlag(ValidFlag validFlag) {
- this.validFlag = validFlag;
- }
}
--
Gitblit v1.9.2