Europe.java 4.29 KB
/**
 * @(#)SupplychainItem.java
 *
 * Copyright (c) 2014-2014  苏州犀牛网络科技有限公司 版权所有
 * xiniunet. All rights reserved.
 *
 * This software is the confidential and proprietary
 * information of  xiniunet.
 * ("Confidential Information"). You shall not disclose
 * such Confidential Information and shall use it only
 * in accordance with the terms of the contract agreement
 * you entered into with xiniunet.
 */
package com.xiniunet.lecunstomization.domain;

import com.xiniunet.framework.base.BaseDomain;

/**
 * Created by 沈振家 on 2016-10-10 11:11:43.
 * @author 沈振家
 */
public class Europe extends  BaseDomain {

    /**
     * 仓库名称
     */
    private String storeroomName;

    /**
     * 品牌
     */
    private String brandName;

    /**
     * 类目
     */
    private String categoryName;

    /**
     * 物料货号
     */
    private String  itemNumber;

    /**
     * 物料名称
     */
    private String itemName;

    /**
     * 规格代码
     */
    private String itemSpecCode;

    /**
     * 规格名称
     */
    private String itemSpecName;

    /**
     * 可用数量
     */
    private Double canUseQuantity;

    /**
     * 分配数量
     */
    private  Double allocationQuantity;

    /**
     * 库存数
     */
    private Double balanceQuantity;

    /**
     * 安全库存
     */
    private Long safeQuantity;

    /**
     * 商品状态
     */
    private ItemStateEnum  states;

    /**
     * 长
     */
    private Double length;

    /**
     * 宽
     */
    private Double width;

    /**
     * 高
     */
    private Double height;

    /**
     * 净重
     */
    private Double weight;

    public String getStoreroomName() {
        return storeroomName;
    }

    public void setStoreroomName(String storeroomName) {
        this.storeroomName = storeroomName;
    }

    public String getBrandName() {
        return brandName;
    }

    public void setBrandName(String brandName) {
        this.brandName = brandName;
    }

    public String getCategoryName() {
        return categoryName;
    }

    public void setCategoryName(String categoryName) {
        this.categoryName = categoryName;
    }

    public String getItemNumber() {
        return itemNumber;
    }

    public void setItemNumber(String itemNumber) {
        this.itemNumber = itemNumber;
    }

    public String getItemName() {
        return itemName;
    }

    public void setItemName(String itemName) {
        this.itemName = itemName;
    }

    public String getItemSpecCode() {
        return itemSpecCode;
    }

    public void setItemSpecCode(String itemSpecCode) {
        this.itemSpecCode = itemSpecCode;
    }

    public String getItemSpecName() {
        return itemSpecName;
    }

    public void setItemSpecName(String itemSpecName) {
        this.itemSpecName = itemSpecName;
    }

    public Double getCanUseQuantity() {
        return canUseQuantity;
    }

    public void setCanUseQuantity(Double canUseQuantity) {
        this.canUseQuantity = canUseQuantity;
    }

    public Double getAllocationQuantity() {
        return allocationQuantity;
    }

    public void setAllocationQuantity(Double allocationQuantity) {
        this.allocationQuantity = allocationQuantity;
    }

    public Double getBalanceQuantity() {
        return balanceQuantity;
    }

    public void setBalanceQuantity(Double balanceQuantity) {
        this.balanceQuantity = balanceQuantity;
    }

    public Long getSafeQuantity() {
        return safeQuantity;
    }

    public void setSafeQuantity(Long safeQuantity) {
        this.safeQuantity = safeQuantity;
    }

    public ItemStateEnum getStates() {
        return states;
    }

    public void setStates(ItemStateEnum states) {
        this.states = states;
    }

    public Double getLength() {
        return length;
    }

    public void setLength(Double length) {
        this.length = length;
    }

    public Double getWidth() {
        return width;
    }

    public void setWidth(Double width) {
        this.width = width;
    }

    public Double getHeight() {
        return height;
    }

    public void setHeight(Double height) {
        this.height = height;
    }

    public Double getWeight() {
        return weight;
    }

    public void setWeight(Double weight) {
        this.weight = weight;
    }
}