Complete the corrections of the errors in the last submission.Create the backend code structure
 Please enter the commit message for your changes. Lines starting

Change-Id: I3f0c3764560b14466236e66627f34d8b71b05cd8
diff --git a/src/main/java/com/g9/g9backend/pojo/Resource.java b/src/main/java/com/g9/g9backend/pojo/Resource.java
new file mode 100644
index 0000000..f4346b2
--- /dev/null
+++ b/src/main/java/com/g9/g9backend/pojo/Resource.java
@@ -0,0 +1,46 @@
+package com.g9.g9backend.pojo;
+
+import com.baomidou.mybatisplus.annotation.TableId;
+import lombok.*;
+
+import java.util.Date;
+
+/**
+ * Resource 实体类,表示资源的数据模型
+ *
+ * @author hcy
+ */
+@Data
+@AllArgsConstructor
+@NoArgsConstructor
+public class Resource {
+
+    @TableId
+    private int resourceId;
+
+    private String resourceName;
+
+    private String resourcePicture;
+
+    private String resourceSummary;
+
+    private String resourceDetail;
+
+    private Date uploadTime;
+
+    private Date lastUpdateTime;
+
+    private float price;
+
+    private int downloads;
+
+    private int likes;
+
+    private int collections;
+
+    private int comments;
+
+    private int seeds;
+
+    private String classify;
+}
\ No newline at end of file