From 66db1d15cf5d4b51a346a42b66f0505bd7f31ce0 Mon Sep 17 00:00:00 2001 From: whycxzp <glperry@163.com> Date: 星期三, 03 一月 2024 15:23:47 +0800 Subject: [PATCH] 解压 --- src/main/java/com/whyc/pojo/Software.java | 72 +++++++++++++++++++++++++++++++++-- 1 files changed, 67 insertions(+), 5 deletions(-) diff --git a/src/main/java/com/whyc/pojo/Software.java b/src/main/java/com/whyc/pojo/Software.java index 1c88cdc..9e01839 100644 --- a/src/main/java/com/whyc/pojo/Software.java +++ b/src/main/java/com/whyc/pojo/Software.java @@ -6,14 +6,18 @@ import java.util.Date; -@TableName(schema = "db_doc",value = "tb_software") +@TableName(value = "tb_software") @Alias("Software") public class Software { private Integer id; - private String fileName; + private String fileName; + private String fileUrl; + private String excelUrl; + @ApiModelProperty("鐗堝彿") + private String boardNumber; @ApiModelProperty("杞欢绫诲瀷") private String type; @@ -25,7 +29,7 @@ private String owner; @ApiModelProperty("褰掓。鏃ユ湡") - private Date filingDate; + private String filingDate; @ApiModelProperty("閫傜敤鏈哄瀷-鐗╂枡缂栫爜") private String applyMaterialCode; @@ -33,10 +37,20 @@ @ApiModelProperty("閫傜敤鏈哄瀷-瑙勬牸鍨嬪彿") private String applyModel; + @ApiModelProperty("鍙戝竷璇存槑") private String releaseNotes; + @ApiModelProperty("椤甸潰涓婄殑鏇存柊鏃堕棿瀛楁") + private String fontUpdateTime; + private Date createTime; + + @ApiModelProperty("閿佸畾鐘舵��") + private int lockFlag; + + @ApiModelProperty("閿佸畾鍘熷洜") + private String localReason; public Integer getId() { return id; @@ -52,6 +66,14 @@ public void setFileName(String fileName) { this.fileName = fileName; + } + + public String getFileUrl() { + return fileUrl; + } + + public void setFileUrl(String fileUrl) { + this.fileUrl = fileUrl; } public String getType() { @@ -86,11 +108,11 @@ this.owner = owner; } - public Date getFilingDate() { + public String getFilingDate() { return filingDate; } - public void setFilingDate(Date filingDate) { + public void setFilingDate(String filingDate) { this.filingDate = filingDate; } @@ -125,4 +147,44 @@ public void setCreateTime(Date createTime) { this.createTime = createTime; } + + public String getExcelUrl() { + return excelUrl; + } + + public void setExcelUrl(String excelUrl) { + this.excelUrl = excelUrl; + } + + public String getBoardNumber() { + return boardNumber; + } + + public void setBoardNumber(String boardNumber) { + this.boardNumber = boardNumber; + } + + public int getLockFlag() { + return lockFlag; + } + + public void setLockFlag(int lockFlag) { + this.lockFlag = lockFlag; + } + + public String getLocalReason() { + return localReason; + } + + public void setLocalReason(String localReason) { + this.localReason = localReason; + } + + public String getFontUpdateTime() { + return fontUpdateTime; + } + + public void setFontUpdateTime(String fontUpdateTime) { + this.fontUpdateTime = fontUpdateTime; + } } -- Gitblit v1.9.1