From 1dcd4d1a3a54cd8f92a1d8f19d2ca2908ddc7dbf Mon Sep 17 00:00:00 2001 From: whycxzp <perryhsu@163.com> Date: 星期四, 21 七月 2022 17:25:48 +0800 Subject: [PATCH] 更新zip解析 --- src/main/java/com/whyc/pojo/ProductBomApproving.java | 44 ++++++++++++++++++++++++++++++++++++++++++++ 1 files changed, 44 insertions(+), 0 deletions(-) diff --git a/src/main/java/com/whyc/pojo/ProductBomApproving.java b/src/main/java/com/whyc/pojo/ProductBomApproving.java index 474cb41..240d9df 100644 --- a/src/main/java/com/whyc/pojo/ProductBomApproving.java +++ b/src/main/java/com/whyc/pojo/ProductBomApproving.java @@ -1,5 +1,6 @@ package com.whyc.pojo; +import com.baomidou.mybatisplus.annotation.TableField; import com.baomidou.mybatisplus.annotation.TableName; import io.swagger.annotations.ApiModelProperty; import org.apache.ibatis.type.Alias; @@ -22,6 +23,8 @@ private String parentName; @ApiModelProperty("姣嶆枡鍨嬪彿") private String parentModel; + @ApiModelProperty("缁撴瀯浠剁被鍨�") + private String type; @ApiModelProperty("绫诲埆") private String category; @ApiModelProperty("瀛愪欢缂栫爜") @@ -52,6 +55,15 @@ private Date updateDate; @ApiModelProperty("鐗堟湰") private Integer version; + @ApiModelProperty("姣嶆枡鐗堟湰鍙�(浜у搧鐗堟湰鍙�)") + private String parentVersion; + + @ApiModelProperty("宸ョ▼鍥剧焊url") + private String dwgUrl; + + @ApiModelProperty("宸ョ▼鍥剧焊鏄惁瀛樺湪:0鍚�1瀛樺湪") + @TableField(exist = false) + private Integer dwgExist; public Integer getId() { return id; @@ -228,4 +240,36 @@ public void setVersion(Integer version) { this.version = version; } + + public String getParentVersion() { + return parentVersion; + } + + public void setParentVersion(String parentVersion) { + this.parentVersion = parentVersion; + } + + public String getType() { + return type; + } + + public void setType(String type) { + this.type = type; + } + + public String getDwgUrl() { + return dwgUrl; + } + + public void setDwgUrl(String dwgUrl) { + this.dwgUrl = dwgUrl; + } + + public Integer getDwgExist() { + return dwgExist; + } + + public void setDwgExist(Integer dwgExist) { + this.dwgExist = dwgExist; + } } -- Gitblit v1.9.1