package com.tejia.lijin.app.entity;
|
|
import com.google.gson.annotations.Expose;
|
|
import java.io.Serializable;
|
|
public class SelectionStoreHouse implements Serializable {
|
|
@Expose
|
String storageId;
|
@Expose
|
TaoBaoGoodsBrief goods;
|
|
public String getStorageId() {
|
return storageId;
|
}
|
|
public void setStorageId(String storageId) {
|
this.storageId = storageId;
|
}
|
|
public TaoBaoGoodsBrief getGoods() {
|
return goods;
|
}
|
|
public void setGoods(TaoBaoGoodsBrief goods) {
|
this.goods = goods;
|
}
|
}
|