package com.dacrt.SBIABackend.security.dto;

import java.util.Date;

public class AccessDto2 {
	
	
	private String content;
	private Integer userid;
	private Integer id;
	
	
	public AccessDto2() {
		super();
		// TODO Auto-generated constructor stub
	}


	public AccessDto2(String content, Integer userid, Integer id) {
		super();
		this.content = content;
		this.userid = userid;
		this.id = id;
	}


	public String getContent() {
		return content;
	}


	public void setContent(String content) {
		this.content = content;
	}


	public Integer getUserid() {
		return userid;
	}


	public void setUserid(Integer userid) {
		this.userid = userid;
	}


	public Integer getId() {
		return id;
	}


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

}
