From f40109474d3277dce05e370f479580e1e34e0f3d Mon Sep 17 00:00:00 2001
From: guoyuji <guoyujie@ng.com>
Date: 星期二, 23 一月 2024 11:48:34 +0800
Subject: [PATCH] 添加连接数据库
---
north-glass-erp/src/main/java/com/example/erp/entity/sd/BasicData.java | 18 ++++++++++++++++++
1 files changed, 18 insertions(+), 0 deletions(-)
diff --git a/north-glass-erp/src/main/java/com/example/erp/entity/sd/BasicData.java b/north-glass-erp/src/main/java/com/example/erp/entity/sd/BasicData.java
new file mode 100644
index 0000000..fa6bba9
--- /dev/null
+++ b/north-glass-erp/src/main/java/com/example/erp/entity/sd/BasicData.java
@@ -0,0 +1,18 @@
+package com.example.erp.entity.sd;
+
+import com.baomidou.mybatisplus.annotation.IdType;
+import com.baomidou.mybatisplus.annotation.TableId;
+import lombok.Data;
+
+import java.time.LocalDate;
+
+@Data
+public class BasicData {
+ @TableId(type = IdType.AUTO)
+ private Integer id;
+ private String basicType;
+ private String name;
+ private String type;
+ private LocalDate createTime;
+ private LocalDate updateTime;
+}
--
Gitblit v1.8.0