1
0
Kaynağa Gözat

xwh提交vo

xwh 4 yıl önce
ebeveyn
işleme
c6d37152dc

+ 39 - 0
wms-core-service/src/main/java/com/lote/wms/base/dict/entity/queryvo/MaterialTypeQueryVo.java

@@ -0,0 +1,39 @@
+package com.lote.wms.base.dict.entity.queryvo;
+
+import org.mybatis.plugin.model.QueryParam;
+
+import java.io.Serializable;
+
+public class MaterialTypeQueryVo extends QueryParam implements Serializable {
+    private String id;
+
+    private Integer code;
+
+    private String name;
+
+    private static final long serialVersionUID = 1L;
+
+    public String getId() {
+        return id;
+    }
+
+    public void setId(String id) {
+        this.id = id;
+    }
+
+    public Integer getCode() {
+        return code;
+    }
+
+    public void setCode(Integer code) {
+        this.code = code;
+    }
+
+    public String getName() {
+        return name;
+    }
+
+    public void setName(String name) {
+        this.name = name;
+    }
+}