SupplychainOpenRoomByRoomIdUpdateRequest.java 2.09 KB
/**
 * @(#)SupplychainOpenRoomUpdateRequest.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.request;

import com.xiniunet.framework.base.BaseUpdateRequest;


/**
 * Created by 沈振家 on 2016-10-08 11:35:03.
 *
 * @author 沈振家
 */
public class SupplychainOpenRoomByRoomIdUpdateRequest extends BaseUpdateRequest {

    /**
     * 主键
     */
    private Long id;

    /**
     * 库房Id
     */

    private Long storeRoomId;

    /**
     * 库房名称
     */
    private String storeRoomName;

    /**
     * 仓库Id
     */

    private Long storeHouseId;

    /**
     * 仓库名称
     */

    private String storeHouseName;

    /**
     * 是否生效
     */

    private Boolean isActive;


    public Long getId() {
        return this.id;
    }

    public void setId(Long id) {
        this.id = id;
    }

    public Long getStoreRoomId() {
        return this.storeRoomId;
    }

    public void setStoreRoomId(Long storeRoomId) {
        this.storeRoomId = storeRoomId;
    }

    public String getStoreRoomName() {
        return this.storeRoomName;
    }

    public void setStoreRoomName(String storeRoomName) {
        this.storeRoomName = storeRoomName;
    }

    public Long getStoreHouseId() {
        return this.storeHouseId;
    }

    public void setStoreHouseId(Long storeHouseId) {
        this.storeHouseId = storeHouseId;
    }

    public String getStoreHouseName() {
        return this.storeHouseName;
    }

    public void setStoreHouseName(String storeHouseName) {
        this.storeHouseName = storeHouseName;
    }

    public Boolean getIsActive() {
        return this.isActive;
    }

    public void setIsActive(Boolean isActive) {
        this.isActive = isActive;
    }


}