package com.dacrt.SBIABackend.dto;

import java.math.BigInteger;

public class QtyDto {
	private java.math.BigInteger active;
	private java.math.BigInteger inactive;
	private java.math.BigInteger total;
	public QtyDto() {
		super();
	}
	public QtyDto(BigInteger active, BigInteger inactive, BigInteger total) {
		super();
		this.active = active;
		this.inactive = inactive;
		this.total = total;
	}
	public java.math.BigInteger getActive() {
		return active;
	}
	public void setActive(java.math.BigInteger active) {
		this.active = active;
	}
	public java.math.BigInteger getInactive() {
		return inactive;
	}
	public void setInactive(java.math.BigInteger inactive) {
		this.inactive = inactive;
	}
	public java.math.BigInteger getTotal() {
		return total;
	}
	public void setTotal(java.math.BigInteger total) {
		this.total = total;
	}
	
}
