package com.dacrt.SBIABackend.dto;

import java.util.List;

public class EntrySupplierDto {
	private EntrySupplierDto2 entry;
	
	private String sessionvalidthru;

	private List<PeriodsResponseDto> periods;
	
	private List<ScaleResponseDto> scale;
	
	private List<AppTypeRespDto> apptype;
	
	private List<RequiredRespDto> required;
	
	public EntrySupplierDto() {
		super();
	}

	public EntrySupplierDto(EntrySupplierDto2 entry, String sessionvalidthru, List<PeriodsResponseDto> periods,
			List<ScaleResponseDto> scale, List<AppTypeRespDto> apptype, List<RequiredRespDto> required) {
		super();
		this.entry = entry;
		this.sessionvalidthru = sessionvalidthru;
		this.periods = periods;
		this.scale = scale;
		this.apptype = apptype;
		this.required = required;
	}

	public EntrySupplierDto2 getEntry() {
		return entry;
	}

	public void setEntry(EntrySupplierDto2 entry) {
		this.entry = entry;
	}

	public String getSessionvalidthru() {
		return sessionvalidthru;
	}

	public void setSessionvalidthru(String sessionvalidthru) {
		this.sessionvalidthru = sessionvalidthru;
	}

	public List<PeriodsResponseDto> getPeriods() {
		return periods;
	}

	public void setPeriods(List<PeriodsResponseDto> periods) {
		this.periods = periods;
	}

	public List<ScaleResponseDto> getScale() {
		return scale;
	}

	public void setScale(List<ScaleResponseDto> scale) {
		this.scale = scale;
	}

	public List<AppTypeRespDto> getApptype() {
		return apptype;
	}

	public void setApptype(List<AppTypeRespDto> apptype) {
		this.apptype = apptype;
	}

	public List<RequiredRespDto> getRequired() {
		return required;
	}

	public void setRequired(List<RequiredRespDto> required) {
		this.required = required;
	}

	
}
