com.quamto.jira.data.time.entity.TeamIssuesEntity Maven / Gradle / Ivy
The newest version!
package com.quamto.jira.data.time.entity;
import java.sql.Timestamp;
import com.quamto.entity.BaseEntity;
public class TeamIssuesEntity extends BaseEntity {
private Long idTeam = null;
private String idUser = null;
private Integer idIssue = null;
private Timestamp startDate = null;
/**
* @return the idTeam
*/
public Long getIdTeam() {
return idTeam;
}
/**
* @param idTeam the idTeam to set
*/
public void setIdTeam(Long idTeam) {
this.idTeam = idTeam;
}
/**
* @return the idUser
*/
public String getIdUser() {
return idUser;
}
/**
* @param idUser the idUser to set
*/
public void setIdUser(String idUser) {
this.idUser = idUser;
}
/**
* @return the idIssue
*/
public Integer getIdIssue() {
return idIssue;
}
/**
* @param idIssue the idIssue to set
*/
public void setIdIssue(Integer idIssue) {
this.idIssue = idIssue;
}
/**
* @return the startDate
*/
public Timestamp getStartDate() {
return startDate;
}
/**
* @param startDate the startDate to set
*/
public void setStartDate(Timestamp startDate) {
this.startDate = startDate;
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy