From 68fb467762697d9f71e12bb71e14d177880537d4 Mon Sep 17 00:00:00 2001 From: 13693261870 <252740454@qq.com> Date: 星期三, 09 八月 2023 20:19:28 +0800 Subject: [PATCH] 1 --- src/main/java/com/yssh/entity/xls/XlsReport.java | 61 ++++++++++++++++++++++++++++++ 1 files changed, 61 insertions(+), 0 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..de8b727 100644 --- a/src/main/java/com/yssh/entity/xls/XlsReport.java +++ b/src/main/java/com/yssh/entity/xls/XlsReport.java @@ -1,9 +1,70 @@ package com.yssh.entity.xls; +import io.swagger.annotations.ApiModelProperty; + +import java.util.Date; + /** * Excel鎶ュ憡瀹炰綋绫� * @author WWW * @date 2023-08-09 */ 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