package com.dacrt.SBIABackend.dto;

import javax.validation.constraints.NotNull;

public class RtoRecordSupplierDto2 {
	private Integer qty;
	@NotNull
	private PeriodParResponseDto2 periodpar;
	public RtoRecordSupplierDto2() {
		super();
	}
	public RtoRecordSupplierDto2(Integer qty, @NotNull PeriodParResponseDto2 periodpar) {
		super();
		this.qty = qty;
		this.periodpar = periodpar;
	}
	public Integer getQty() {
		return qty;
	}
	public void setQty(Integer qty) {
		this.qty = qty;
	}
	public PeriodParResponseDto2 getPeriodpar() {
		return periodpar;
	}
	public void setPeriodpar(PeriodParResponseDto2 periodpar) {
		this.periodpar = periodpar;
	}
	
	
}
