Matthew Hudson

Director Of Operations at Data Research Group

Matthew Hudson began their career in 2010 as a Pianist for Moving Meadows Music. In 2011, they became the Marketing Coordinator for Moving Meadows Farm. In 2012, they worked as a Sales Associate for Taste Oil Vinegar Spice. In 2013, they were the Store Manager for Moving Meadows Farm, LLC. Lastly, from 2014 to present, they have held the roles of Director Of Operations, Customer Support Manager, and Operations Administrator for Data Research Group.

package com.example.demo.model;

import javax.persistence.*;

import java.util.Date;

@Entity

public class Comment {

@Id

@GeneratedValue(strategy = GenerationType.IDENTITY)

private int id;

private String content;

@ManyToOne

@JoinColumn(name = "user_id")

private User user;

private Date date;

public Comment() {

}

public Comment(String content, User user, Date date) {

this.content = content;

this.user = user;

this.date = date;

}

public int getId() {

return id;

}

public void setId(int id) {

this.id = id;

}

public String getContent() {

return content;

}

public void setContent(String content) {

this.content = content;

}

public User getUser() {

return user;

}

public void setUser(User user) {

this.user = user;

}

public Date getDate() {

return date;

}

public void setDate(Date date) {

this.date = date;

}

}

Links

Timeline

  • Director Of Operations

    June, 2020 - present

  • Customer Support Manager

    September, 2016

  • Operations Administrator

    August, 2014