package com.dacrt.SBIABackend.dto.requestDto;

import java.math.BigDecimal;

public class RiskFactorElementDto {

	private Integer id;
    private String name;
    private BigDecimal weight;
    
	public RiskFactorElementDto() {
		super();
		// TODO Auto-generated constructor stub
	}

	public RiskFactorElementDto(Integer id, String name, BigDecimal weight) {
		super();
		this.id = id;
		this.name = name;
		this.weight = weight;
	}

	public Integer getId() {
		return id;
	}

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

	public String getName() {
		return name;
	}

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

	public BigDecimal getWeight() {
		return weight;
	}

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