package com.dacrt.SBIABackend.security.dto;

import java.util.Date;

import javax.persistence.Column;
import javax.validation.constraints.NotNull;

import org.springframework.lang.NonNull;

public class AuditRequestDto {

	private int id;
	private Date createdat;
	private String module;
	private String dsc;
	private String ipaddr;
	private String userref;
	
	
	public AuditRequestDto() {
		super();
	}
	
	
	public AuditRequestDto(int id, Date createdat, String module, String dsc, String ipaddr, String userref) {
		super();
		this.id = id;
		this.createdat = createdat;
		this.module = module;
		this.dsc = dsc;
		this.ipaddr = ipaddr;
		this.userref = userref;
	}


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

	public Date getCreatedat() {
		return createdat;
	}
	public void setCreatedat(Date createdat) {
		this.createdat = createdat;
	}
	
	public String getModule() {
		return module;
	}
	public void setModule(String module) {
		this.module = module;
	}
	
	public String getIpaddr() {
		return ipaddr;
	}
	public void setIpaddr(String ipaddr) {
		this.ipaddr = ipaddr;
	}
	
	public String getDesc() {
		return dsc;
	}
	public void setDesc(String dsc) {
		this.dsc = dsc;
	}
	
	public String getUserref() {
		return userref;
	}
	public void setUserref(String userref) {
		this.userref = userref;
	}
	
}