|
|
@@ -0,0 +1,23 @@
|
|
|
+package com.jzg.commons.entity.console.dto;
|
|
|
+
|
|
|
+import io.swagger.v3.oas.annotations.media.Schema;
|
|
|
+import lombok.Data;
|
|
|
+
|
|
|
+import java.io.Serializable;
|
|
|
+
|
|
|
+/**
|
|
|
+ * @version
|
|
|
+ * @author: hxl
|
|
|
+ * @Date: 2025/9/12 15:40
|
|
|
+ * @Description: 测试类
|
|
|
+ */
|
|
|
+@Data
|
|
|
+@Schema(description = "测试类")
|
|
|
+public class TestDto implements Serializable {
|
|
|
+
|
|
|
+ @Schema(description = "id")
|
|
|
+ private String id;
|
|
|
+
|
|
|
+ @Schema(description = "名称")
|
|
|
+ private String name;
|
|
|
+}
|