From 2f55cebbad3dea187a5f91d16ec80a9677dab699 Mon Sep 17 00:00:00 2001
From: 13693261870 <252740454@qq.com>
Date: 星期三, 13 十一月 2024 11:16:53 +0800
Subject: [PATCH] 1

---
 src/main/java/com/yssh/entity/xls/XlsReport.java |   66 ++++++++++++++++++++++++++++++--
 1 files changed, 61 insertions(+), 5 deletions(-)

diff --git a/src/main/java/com/yssh/entity/xls/XlsReport.java b/src/main/java/com/yssh/entity/xls/XlsReport.java
index 5132074..bb62cc7 100644
--- a/src/main/java/com/yssh/entity/xls/XlsReport.java
+++ b/src/main/java/com/yssh/entity/xls/XlsReport.java
@@ -1,9 +1,65 @@
 package com.yssh.entity.xls;
 
-/**
- * Excel鎶ュ憡瀹炰綋绫�
- * @author WWW
- * @date 2023-08-09
- */
+import io.swagger.annotations.ApiModelProperty;
+
+import java.util.Date;
+
 public class XlsReport {
+    @ApiModelProperty(value = "涓婚敭")
+    private Long id;
+
+    @ApiModelProperty(value = "鍚嶇О")
+    private String name;
+
+    @ApiModelProperty(value = "绫诲埆")
+    private String type;
+
+    @ApiModelProperty(value = "鏂囦欢璺緞")
+    private String path;
+
+    @ApiModelProperty(value = "鍒涘缓鏃堕棿")
+    private Date createTime;
+
+    public XlsReport() {
+    }
+
+    public Long getId() {
+        return id;
+    }
+
+    public void setId(Long id) {
+        this.id = id;
+    }
+
+    public String getName() {
+        return name;
+    }
+
+    public void setName(String name) {
+        this.name = name;
+    }
+
+    public String getType() {
+        return type;
+    }
+
+    public void setType(String type) {
+        this.type = type;
+    }
+
+    public String getPath() {
+        return path;
+    }
+
+    public void setPath(String path) {
+        this.path = path;
+    }
+
+    public Date getCreateTime() {
+        return createTime;
+    }
+
+    public void setCreateTime(Date createTime) {
+        this.createTime = createTime;
+    }
 }

--
Gitblit v1.9.3