package com.dacrt.SBIABackend.dto;

import javax.validation.constraints.NotNull;

public class RtoRecordSupplierDto {
	
	
	private Integer qty;
	@NotNull
	private OperationlineDto period;
	
	
	public RtoRecordSupplierDto() {
		super();
		// TODO Auto-generated constructor stub
	}


	public RtoRecordSupplierDto(Integer qty, @NotNull OperationlineDto period) {
		super();
		this.qty = qty;
		this.period = period;
	}


	public Integer getQty() {
		return qty;
	}


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


	public OperationlineDto getPeriod() {
		return period;
	}


	public void setPeriod(OperationlineDto period) {
		this.period = period;
	}
	
}
