package com.dacrt.SBIABackend.dto;

import java.math.BigInteger;

public class StatusDto5 {
	private BigInteger notassigned;
	private BigInteger assigned;
	private BigInteger inprocess;
	private BigInteger forreview;
	private BigInteger closed;
	public StatusDto5() {
		super();
	}
	public StatusDto5(BigInteger notassigned, BigInteger assigned, BigInteger inprocess, BigInteger forreview,
			BigInteger closed) {
		super();
		this.notassigned = notassigned;
		this.assigned = assigned;
		this.inprocess = inprocess;
		this.forreview = forreview;
		this.closed = closed;
	}
	public BigInteger getNotassigned() {
		return notassigned;
	}
	public void setNotassigned(BigInteger notassigned) {
		this.notassigned = notassigned;
	}
	public BigInteger getAssigned() {
		return assigned;
	}
	public void setAssigned(BigInteger assigned) {
		this.assigned = assigned;
	}
	public BigInteger getInprocess() {
		return inprocess;
	}
	public void setInprocess(BigInteger inprocess) {
		this.inprocess = inprocess;
	}
	public BigInteger getForreview() {
		return forreview;
	}
	public void setForreview(BigInteger forreview) {
		this.forreview = forreview;
	}
	public BigInteger getClosed() {
		return closed;
	}
	public void setClosed(BigInteger closed) {
		this.closed = closed;
	}
	
	
	
	
	
}
