From 064457406bda554e713aea8bada1bb066be42b8e Mon Sep 17 00:00:00 2001
From: XiaoRuby <3114200645@qq.com>
Date: 星期六, 23 九月 2023 12:39:29 +0800
Subject: [PATCH] 9-23 去鵷雏管理端验证

---
 standard-server/src/main/java/com/yuanchu/limslaboratory/pojo/Product.java |   25 +++++++++++++++++++++++++
 1 files changed, 25 insertions(+), 0 deletions(-)

diff --git a/standard-server/src/main/java/com/yuanchu/limslaboratory/pojo/Product.java b/standard-server/src/main/java/com/yuanchu/limslaboratory/pojo/Product.java
index 7cc9533..720a24d 100644
--- a/standard-server/src/main/java/com/yuanchu/limslaboratory/pojo/Product.java
+++ b/standard-server/src/main/java/com/yuanchu/limslaboratory/pojo/Product.java
@@ -66,5 +66,30 @@
     @ApiModelProperty(value = "鍏宠仈 鍨嬪彿id", example = "1", hidden = true)
     private Integer specifications_id;
 
+    public Product() {
+    }
 
+    public Product(Integer id, String name, String father, String unit, String required, String internal, Integer state, Date createTime, Date updateTime, Integer version, Integer specifications_id) {
+        this.id = id;
+        this.name = name;
+        this.father = father;
+        this.unit = unit;
+        this.required = required;
+        this.internal = internal;
+        this.state = state;
+        this.createTime = createTime;
+        this.updateTime = updateTime;
+        this.version = version;
+        this.specifications_id = specifications_id;
+    }
+
+    public Product(String name, String father, String unit, Date createTime, Date updateTime, Integer version, Integer specifications_id) {
+        this.name = name;
+        this.father = father;
+        this.unit = unit;
+        this.createTime = createTime;
+        this.updateTime = updateTime;
+        this.version = version;
+        this.specifications_id = specifications_id;
+    }
 }

--
Gitblit v1.9.3