From 789c5295a4e93a89124f9377995f278e917df7c8 Mon Sep 17 00:00:00 2001
From: whycxzp <perryhsu@163.com>
Date: 星期四, 19 十月 2023 13:49:53 +0800
Subject: [PATCH] 物料图纸图片历史

---
 src/main/java/com/whyc/pojo/MaterialHistory.java |   15 ++++++++++-----
 1 files changed, 10 insertions(+), 5 deletions(-)

diff --git a/src/main/java/com/whyc/pojo/MaterialHistory.java b/src/main/java/com/whyc/pojo/MaterialHistory.java
index 0a7957a..d0b20db 100644
--- a/src/main/java/com/whyc/pojo/MaterialHistory.java
+++ b/src/main/java/com/whyc/pojo/MaterialHistory.java
@@ -5,12 +5,17 @@
 
 import java.util.Date;
 
+/**
+ * 鍥剧焊鎴栧浘鐗囧巻鍙茬殑瀛樺偍鍦板潃:
+ *  material/[material_id]-[material_code]/[material_code]_timestamp.xxx
+ */
+
 @TableName("tb_material_history")
 public class MaterialHistory {
 
     private Integer id;
     private Integer materialId;
-    private String picUrl;
+    private String pictureUrl;
     private String dwgUrl;
     private Integer upUserId;
     private Date createTime;
@@ -50,12 +55,12 @@
         this.materialId = materialId;
     }
 
-    public String getPicUrl() {
-        return picUrl;
+    public String getPictureUrl() {
+        return pictureUrl;
     }
 
-    public void setPicUrl(String picUrl) {
-        this.picUrl = picUrl;
+    public void setPictureUrl(String pictureUrl) {
+        this.pictureUrl = pictureUrl;
     }
 
     public String getDwgUrl() {

--
Gitblit v1.9.1