package com.dacrt.SBIABackend.dto;

import javax.validation.constraints.NotNull;

public class RtoRecordSupplier2Dto {
	
	private Integer qty;
	@NotNull
	private OperationlineSinStatusDto periodpar;
	
	public RtoRecordSupplier2Dto(Integer qty, @NotNull OperationlineSinStatusDto periodpar) {
		super();
		this.qty = qty;
		this.periodpar = periodpar;
	}

	public RtoRecordSupplier2Dto() {
		super();
		// TODO Auto-generated constructor stub
	}

	public Integer getQty() {
		return qty;
	}

	public void setQty(Integer qty) {
		this.qty = qty;
	}

	public OperationlineSinStatusDto getPeriodpar() {
		return periodpar;
	}

	public void setPeriodpar(OperationlineSinStatusDto periodpar) {
		this.periodpar = periodpar;
	}
	
	

}
