package com.dacrt.SBIABackend.dto;

public class TechnologyRecordDto {

	  private int id;
	  private String ref;
	  private String name;
	  private String lastact;
	  private StatusDto2 layer;
	  private StatusDto2 type;
	  private StatusDto2 status;
	  private String dsc;
	  
      public TechnologyRecordDto(int id, String ref, String name, String lastact, StatusDto2 layer, StatusDto2 type,
			StatusDto2 status, String dsc) {
		super();
		this.id = id;
		this.ref = ref;
		this.name = name;
		this.lastact = lastact;
		this.layer = layer;
		this.type = type;
		this.status = status;
		this.dsc = dsc;
	   }

	  public TechnologyRecordDto() {
		super();
		// TODO Auto-generated constructor stub
    	}

	public int getId() {
		return id;
	}

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

	public String getRef() {
		return ref;
	}

	public void setRef(String ref) {
		this.ref = ref;
	}

	public String getName() {
		return name;
	}

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

	public String getLastact() {
		return lastact;
	}

	public void setLastact(String lastact) {
		this.lastact = lastact;
	}

	public StatusDto2 getLayer() {
		return layer;
	}

	public void setLayer(StatusDto2 layer) {
		this.layer = layer;
	}

	public StatusDto2 getType() {
		return type;
	}

	public void setType(StatusDto2 type) {
		this.type = type;
	}

	public StatusDto2 getStatus() {
		return status;
	}

	public void setStatus(StatusDto2 status) {
		this.status = status;
	}

	public String getDsc() {
		return dsc;
	}

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