|
@@ -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;
|
|
|
+ }
|
|
|
+}
|