package com.best.javaSdk.kdCreateWaybillOrderNotify.request;
|
|
|
|
public class Item {
|
private long itemCount;
|
private long itemWeight;
|
private long itemLength;
|
private long itemWidth;
|
private long itemHeight;
|
private String itemName;
|
|
public long getItemCount()
|
{
|
return this.itemCount;
|
}
|
|
public void setItemCount(long value)
|
{
|
this.itemCount = value;
|
}
|
|
public long getItemWeight()
|
{
|
return this.itemWeight;
|
}
|
|
public void setItemWeight(long value)
|
{
|
this.itemWeight = value;
|
}
|
|
public long getItemLength()
|
{
|
return this.itemLength;
|
}
|
|
public void setItemLength(long value)
|
{
|
this.itemLength = value;
|
}
|
|
public long getItemWidth()
|
{
|
return this.itemWidth;
|
}
|
|
public void setItemWidth(long value)
|
{
|
this.itemWidth = value;
|
}
|
|
public long getItemHeight()
|
{
|
return this.itemHeight;
|
}
|
|
public void setItemHeight(long value)
|
{
|
this.itemHeight = value;
|
}
|
|
public String getItemName()
|
{
|
return this.itemName;
|
}
|
|
public void setItemName(String value)
|
{
|
this.itemName = value;
|
}
|
|
|
}
|