SupplychainRoomFindRequest.java 3.64 KB
/**
 * @(#)SupplychainRoomFindRequest.java Copyright (c) 2014-2014  苏州犀牛网络科技有限公司 版权所有
 * xiniunet. All rights reserved.
 * <p>
 * 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.BaseFindRequest;
import com.xiniunet.lecunstomization.domain.SupplychainRoomFindParams;

import java.util.List;

/**
 * Created by 沈振家 on 2016-10-10 21:51:52.
 *
 * @author 沈振家
 */
public class SupplychainRoomFindRequest extends BaseFindRequest {


    /**
     * 供应链Id,
     */
    private Long supplychainNetworkId;


    /**
     * 店铺Id,
     */
    private Long storeId;


    /**
     * 经营单元Id,
     */
    private Long operatingUnitId;


    /**
     * 库房id,
     */
    private Long storeHouseId;


    /**
     * 库房Id,
     */
    private Long storeRoomId;


    private List<Long> storeRoomIdList;


    /**
     * 库房类型,
     */
    private String type;


    /**
     * 货物所属类型,
     */
    private String ownerType;

    /**
     * 是否生效,
     */
    private Boolean isActive;

    /**
     * 供应链 IDs
     *
     * @return
     */
    private List<Long> supplychainNetworkIds;

    private List<SupplychainRoomFindParams> supplychainRoomFindParamsList;

    public Long getSupplychainNetworkId() {
        return this.supplychainNetworkId;
    }

    public void setSupplychainNetworkId(Long supplychainNetworkId) {
        this.supplychainNetworkId = supplychainNetworkId;
    }


    public Long getStoreId() {
        return this.storeId;
    }

    public void setStoreId(Long storeId) {
        this.storeId = storeId;
    }


    public Long getOperatingUnitId() {
        return this.operatingUnitId;
    }

    public void setOperatingUnitId(Long operatingUnitId) {
        this.operatingUnitId = operatingUnitId;
    }


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

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


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

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

    public List<Long> getStoreRoomIdList() {
        return storeRoomIdList;
    }

    public void setStoreRoomIdList(List<Long> storeRoomIdList) {
        this.storeRoomIdList = storeRoomIdList;
    }

    public String getType() {
        return this.type;
    }

    public void setType(String type) {
        this.type = type;
    }


    public String getOwnerType() {
        return this.ownerType;
    }

    public void setOwnerType(String ownerType) {
        this.ownerType = ownerType;
    }

    public Boolean getIsActive() {
        return isActive;
    }

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


    public List<Long> getSupplychainNetworkIds() {
        return supplychainNetworkIds;
    }

    public void setSupplychainNetworkIds(List<Long> supplychainNetworkIds) {
        this.supplychainNetworkIds = supplychainNetworkIds;
    }

    public List<SupplychainRoomFindParams> getSupplychainRoomFindParamsList() {
        return supplychainRoomFindParamsList;
    }

    public void setSupplychainRoomFindParamsList(List<SupplychainRoomFindParams> supplychainRoomFindParamsList) {
        this.supplychainRoomFindParamsList = supplychainRoomFindParamsList;
    }
}