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/Gameplay.java b/src/main/java/com/g9/g9backend/pojo/Gameplay.java
new file mode 100644
index 0000000..dfde540
--- /dev/null
+++ b/src/main/java/com/g9/g9backend/pojo/Gameplay.java
@@ -0,0 +1,21 @@
+package com.g9.g9backend.pojo;
+
+import com.github.jeffreyning.mybatisplus.anno.MppMultiId;
+import lombok.*;
+
+/**
+ * Gameplay 实体类,表示游戏玩法的数据模型
+ *
+ * @author hcy
+ */
+@Data
+@AllArgsConstructor
+@NoArgsConstructor
+public class Gameplay {
+
+    @MppMultiId
+    private String gameplayName;
+
+    @MppMultiId
+    private int resourceId;
+}
\ No newline at end of file