CopySupplyItemRequest.java 1.17 KB
package com.xiniunet.lecunstomization.request;

import com.xiniunet.framework.base.BaseRequest;

import javax.validation.constraints.NotNull;

/**
 * Created by Administrator on 2016/12/28 0028.
 */
public class CopySupplyItemRequest extends BaseRequest{

    @NotNull(message = "物料映射主键不能为空")
    private Long id;

    @NotNull(message = "供应链主键不能为空")
    private Long supplychainId;

    @NotNull(message = "是否同步下一条不能为空")
    private Boolean autoNext;

    private Integer syncPageNumber;

    public Long getId() {
        return id;
    }

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

    public Long getSupplychainId() {
        return supplychainId;
    }

    public void setSupplychainId(Long supplychainId) {
        this.supplychainId = supplychainId;
    }

    public Boolean getAutoNext() {
        return autoNext;
    }

    public void setAutoNext(Boolean autoNext) {
        this.autoNext = autoNext;
    }

    public Integer getSyncPageNumber() {
        return syncPageNumber;
    }

    public void setSyncPageNumber(Integer syncPageNumber) {
        this.syncPageNumber = syncPageNumber;
    }
}