(cherry picked from commit f5be8bd17b7df9b260df3ebf4e9fa9cf477575f7)
@@ -0,0 +1,8 @@
+package com.webflux.launchadmin.mysql.entity.planNew;
+
+import org.springframework.data.annotation.Id;
+import org.springframework.data.relational.core.mapping.Table;
+@Table("qrcode_info")
+public record QrcodeInfo(@Id Long id,String url,String title) {
+}