package com.dacrt.SBIABackend.dto.requestDto;

import java.math.BigDecimal;
import java.util.List;

public class FactorDto {
	private Integer id;
    private BigDecimal weight;
    private String category;
    private String name;
    private String dsc;
    private List<ElementDto> elements;
    
	public FactorDto() {
		super();
		// TODO Auto-generated constructor stub
	}

	public FactorDto(Integer id, BigDecimal weight,String category, List<ElementDto> elements,String name,String dsc) {
		super();
		this.id = id;
		this.weight = weight;
		this.category = category;
		this.elements = elements;
		this.dsc = dsc;
		this.name = name;
	}

	public Integer getId() {
		return id;
	}

	public void setId(Integer id) {
		this.id = id;
	}

	public BigDecimal getWeight() {
		return weight;
	}

	public void setWeight(BigDecimal weight) {
		this.weight = weight;
	}

	public List<ElementDto> getElements() {
		return elements;
	}

	public void setElements(List<ElementDto> elements) {
		this.elements = elements;
	}

	public String getName() {
		return name;
	}

	public void setName(String name) {
		this.name = name;
	}

	public String getDsc() {
		return dsc;
	}

	public void setDsc(String dsc) {
		this.dsc = dsc;
	}

	public String getCategory() {
		return category;
	}

	public void setCategory(String category) {
		this.category = category;
	}
    
}
