SupplychainItemFindRequest.java 4.04 KB
/**
 * @(#)SupplychainItemFindRequest.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.BaseFindRequest;
import com.xiniunet.lecunstomization.domain.SupplychainItem;


import java.util.List;

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

    /**
     * 供应链物料映射ID
     */
    private Long id;

    /**
     * 排除供应链物料映射ID
     */
    private Long exitId;


    /**
     * 供应方承租人ID,
     */
    private Long supplyTenantId;


    /**
     * 供应方物料Id,
     */
    private Long supplyItemId;

    private List<Long> supplyItemIdList;


    /**
     * 需求方承租人ID,
     */
    private Long demandTenantId;


    /**
     * 需求方物料Id,
     */
    private Long demandItemId;

    private List<Long> demandItemIdList;


    /**
     * 需求方商品Id,
     */
    private Long demandCommodityId;


    /**
     * 供应方是否开放,
     */
    private Boolean supplyIsActive;


    /**
     * 需求方是否开放,
     */
    private Boolean demandIsActive;

    /**
     * 物料映射关系导入对象List
     */
    private List<SupplychainItem> supplychainItemList;

    private String keyword;

    public Long getId() {
        return id;
    }

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

    public Long getSupplyTenantId() {
        return this.supplyTenantId;
    }

    public void setSupplyTenantId(Long supplyTenantId) {
        this.supplyTenantId = supplyTenantId;
    }


    public Long getSupplyItemId() {
        return this.supplyItemId;
    }

    public void setSupplyItemId(Long supplyItemId) {
        this.supplyItemId = supplyItemId;
    }

    public List<Long> getSupplyItemIdList() {
        return supplyItemIdList;
    }

    public void setSupplyItemIdList(List<Long> supplyItemIdList) {
        this.supplyItemIdList = supplyItemIdList;
    }

    public Long getDemandTenantId() {
        return this.demandTenantId;
    }

    public void setDemandTenantId(Long demandTenantId) {
        this.demandTenantId = demandTenantId;
    }


    public Long getDemandItemId() {
        return this.demandItemId;
    }

    public void setDemandItemId(Long demandItemId) {
        this.demandItemId = demandItemId;
    }


    public List<Long> getDemandItemIdList() {
        return demandItemIdList;
    }

    public void setDemandItemIdList(List<Long> demandItemIdList) {
        this.demandItemIdList = demandItemIdList;
    }

    public Long getDemandCommodityId() {
        return this.demandCommodityId;
    }

    public void setDemandCommodityId(Long demandCommodityId) {
        this.demandCommodityId = demandCommodityId;
    }


    public Boolean getSupplyIsActive() {
        return this.supplyIsActive;
    }

    public void setSupplyIsActive(Boolean supplyIsActive) {
        this.supplyIsActive = supplyIsActive;
    }


    public Boolean getDemandIsActive() {
        return this.demandIsActive;
    }

    public void setDemandIsActive(Boolean demandIsActive) {
        this.demandIsActive = demandIsActive;
    }

    public List<SupplychainItem> getSupplychainItemList() {
        return supplychainItemList;
    }

    public void setSupplychainItemList(List<SupplychainItem> supplychainItemList) {
        this.supplychainItemList = supplychainItemList;
    }

    public Long getExitId() {
        return exitId;
    }

    public void setExitId(Long exitId) {
        this.exitId = exitId;
    }

    public String getKeyword() {
        return keyword;
    }

    public void setKeyword(String keyword) {
        this.keyword = keyword;
    }
}