| package com.matrix.system.hive.bean; | 
|   | 
| import com.matrix.system.hive.plugin.util.NumberUtils; | 
|   | 
| import java.io.Serializable; | 
|   | 
|   | 
| /** | 
|  * | 
|  *  | 
|  * @date 2016-07-25 09:31 | 
|  */ | 
|   | 
| public class SysOutStoreItem implements Serializable { | 
|   | 
|   | 
|     private Long id; | 
|   | 
|     /** | 
|      * 项目绑定的消耗明细id | 
|      */ | 
|     private Long skuId; | 
|   | 
|     /** | 
|      * 门店出库单id | 
|      */ | 
|     private Long outStoreId; | 
|   | 
|     /** | 
|      * 备注 | 
|      */ | 
|     private String remark; | 
|   | 
|   | 
|     private Double amount = new Double(0); | 
|   | 
|     /** | 
|      * 出库库存id | 
|      */ | 
|     private Long storeId; | 
|   | 
|     /** | 
|      * 扩展属性 | 
|      */ | 
|   | 
|     private ShoppingGoods goods; | 
|   | 
|     private SysStoreInfo store; | 
|   | 
|   | 
|     public SysStoreInfo getStore() { | 
|         return store; | 
|     } | 
|   | 
|     public void setStore(SysStoreInfo store) { | 
|         this.store = store; | 
|     } | 
|   | 
|     public Long getStoreId() { | 
|         return storeId; | 
|     } | 
|   | 
|     public void setStoreId(Long storeId) { | 
|         this.storeId = storeId; | 
|     } | 
|   | 
|   | 
|     public Double getAmount() { | 
|         return amount; | 
|     } | 
|   | 
|     public void setAmount(Double amount) { | 
|         if (amount == null) { | 
|             this.amount = 0D; | 
|         } else { | 
|             this.amount = NumberUtils.getDoubleNum(amount, 3); | 
|         } | 
|     } | 
|   | 
|     public Long getId() { | 
|         return id; | 
|     } | 
|   | 
|     public void setId(Long id) { | 
|         this.id = id; | 
|     } | 
|   | 
|     public Long getSkuId() { | 
|         return skuId; | 
|     } | 
|   | 
|     public void setSkuId(Long skuId) { | 
|         this.skuId = skuId; | 
|     } | 
|   | 
|     public Long getOutStoreId() { | 
|         return outStoreId; | 
|     } | 
|   | 
|     public void setOutStoreId(Long outStoreId) { | 
|         this.outStoreId = outStoreId; | 
|     } | 
|   | 
|     public String getRemark() { | 
|         return remark; | 
|     } | 
|   | 
|     public void setRemark(String remark) { | 
|         this.remark = remark; | 
|     } | 
|   | 
|     public ShoppingGoods getGoods() { | 
|         return goods; | 
|     } | 
|   | 
|     public void setGoods(ShoppingGoods goods) { | 
|         this.goods = goods; | 
|     } | 
| } |