Commit 59ef8fcb authored by zhoumaotao's avatar zhoumaotao

代码调整

parent 35a144eb
......@@ -2,7 +2,6 @@ package com.gavel.jingsu.dpgl.model;
import java.io.Serializable;
import java.util.ArrayList;
import java.util.List;
public class JDProduct implements Serializable {
......@@ -14,7 +13,7 @@ public class JDProduct implements Serializable {
private String brandName; //品牌名称
private String vendorCode; //供应商简码
private String vendorName; //供应商名称
List<JDProductDetail> vcItems = new ArrayList();//SKU列表
private ArrayList vcItems = new ArrayList();//SKU列表
public String getWareId() {
return wareId;
......@@ -80,11 +79,11 @@ public class JDProduct implements Serializable {
this.vendorName = vendorName;
}
public List<JDProductDetail> getVcItems() {
public ArrayList getVcItems() {
return vcItems;
}
public void setVcItems(List<JDProductDetail> vcItems) {
public void setVcItems(ArrayList vcItems) {
this.vcItems = vcItems;
}
}
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment