package toptoy.broker.PDAinStoreService; import java.io.Serializable; public class StoreLabel implements Serializable { private long shopid; private long paperno; private long layoutno; private long itemno; /** * @return the shopid */ public long getShopid() { return shopid; } /** * @param shopid * the shopid to set */ public void setShopid(long shopid) { this.shopid = shopid; } /** * @return the paperno */ public long getPaperno() { return paperno; } /** * @param paperno * the paperno to set */ public void setPaperno(long paperno) { this.paperno = paperno; } /** * @return the layoutno */ public long getLayoutno() { return layoutno; } /** * @param layoutno * the layoutno to set */ public void setLayoutno(long layoutno) { this.layoutno = layoutno; } /** * @return the itemno */ public long getItemno() { return itemno; } /** * @param itemno * the itemno to set */ public void setItemno(long itemno) { this.itemno = itemno; } }