From 4695b1501f8dd6850730aeb4131f88fef0e14c9f Mon Sep 17 00:00:00 2001
From: futian.liu <liufutianyoo@163.com>
Date: 星期二, 12 十二月 2023 10:28:56 +0800
Subject: [PATCH] 物品导入

---
 consum-base/src/main/java/com/consum/base/pojo/BaseGoodsTemplateParam.java |   71 ++++-------------------------------
 1 files changed, 8 insertions(+), 63 deletions(-)

diff --git a/consum-base/src/main/java/com/consum/base/pojo/BaseGoodsTemplateParam.java b/consum-base/src/main/java/com/consum/base/pojo/BaseGoodsTemplateParam.java
index df1593e..0aa533c 100644
--- a/consum-base/src/main/java/com/consum/base/pojo/BaseGoodsTemplateParam.java
+++ b/consum-base/src/main/java/com/consum/base/pojo/BaseGoodsTemplateParam.java
@@ -1,10 +1,13 @@
 package com.consum.base.pojo;
 
+import java.util.List;
+
 import com.consum.model.po.BaseGoodsModels;
 import com.walker.web.param.ParamRequest;
 
-import java.util.List;
+import lombok.Data;
 
+@Data
 public class BaseGoodsTemplateParam extends ParamRequest {
     private Long id;
     /**
@@ -36,67 +39,9 @@
      */
     private Long agencyId;
 
-    public Long getId() {
-        return id;
-    }
+    /**
+     * 鏈烘瀯鍚嶇О
+     */
+    private String agencyName;
 
-    public void setId(Long id) {
-        this.id = id;
-    }
-
-    public String getGoodsCode() {
-        return goodsCode;
-    }
-
-    public void setGoodsCode(String goodsCode) {
-        this.goodsCode = goodsCode;
-    }
-
-    public Long getCategoryId() {
-        return categoryId;
-    }
-
-    public void setCategoryId(Long categoryId) {
-        this.categoryId = categoryId;
-    }
-
-    public String getGoodsName() {
-        return goodsName;
-    }
-
-    public void setGoodsName(String goodsName) {
-        this.goodsName = goodsName;
-    }
-
-    public List<BaseGoodsModels> getModels() {
-        return models;
-    }
-
-    public void setModels(List<BaseGoodsModels> models) {
-        this.models = models;
-    }
-
-    public Integer getStates() {
-        return states;
-    }
-
-    public void setStates(Integer states) {
-        this.states = states;
-    }
-
-    public String getClassification() {
-        return classification;
-    }
-
-    public void setClassification(String classification) {
-        this.classification = classification;
-    }
-
-    public Long getAgencyId() {
-        return agencyId;
-    }
-
-    public void setAgencyId(Long agencyId) {
-        this.agencyId = agencyId;
-    }
 }

--
Gitblit v1.9.1