package com.dacrt.SBIABackend.dto;

import java.util.Date;

public class DrptestDto2 {
	private Integer tested;
	private Date date;
	private Integer type;
	private Integer result;
	public DrptestDto2() {
		super();
	}
	public DrptestDto2(Integer tested, Date date, Integer type, Integer result) {
		super();
		this.tested = tested;
		this.date = date;
		this.type = type;
		this.result = result;
	}
	public Integer getTested() {
		return tested;
	}
	public void setTested(Integer tested) {
		this.tested = tested;
	}
	public Date getDate() {
		return date;
	}
	public void setDate(Date date) {
		this.date = date;
	}
	public Integer getType() {
		return type;
	}
	public void setType(Integer type) {
		this.type = type;
	}
	public Integer getResult() {
		return result;
	}
	public void setResult(Integer result) {
		this.result = result;
	}
	
	
}
