package com.mossle.ticket.persistence.domain;
// Generated by Hibernate Tools
import java.util.Date;
import javax.persistence.Column;
import javax.persistence.Entity;
import javax.persistence.FetchType;
import javax.persistence.Id;
import javax.persistence.JoinColumn;
import javax.persistence.ManyToOne;
import javax.persistence.Table;
import javax.persistence.Temporal;
import javax.persistence.TemporalType;
/**
* TicketComment .
*
* @author Lingo
*/
@Entity
@Table(name = "TICKET_COMMENT")
public class TicketComment implements java.io.Serializable {
private static final long serialVersionUID = 0L;
/** null. */
private Long id;
/** null. */
private TicketInfo ticketInfo;
/** null. */
private String content;
/** null. */
private String creator;
/** null. */
private String status;
/** null. */
private Date createTime;
public TicketComment() {
}
public TicketComment(Long id) {
this.id = id;
}
public TicketComment(Long id, TicketInfo ticketInfo, String content,
String creator, String status, Date createTime) {
this.id = id;
this.ticketInfo = ticketInfo;
this.content = content;
this.creator = creator;
this.status = status;
this.createTime = createTime;
}
/** @return null. */
@Id
@Column(name = "ID", unique = true, nullable = false)
public Long getId() {
return this.id;
}
/**
* @param id
* null.
*/
public void setId(Long id) {
this.id = id;
}
/** @return null. */
@ManyToOne(fetch = FetchType.LAZY)
@JoinColumn(name = "INFO_ID")
public TicketInfo getTicketInfo() {
return this.ticketInfo;
}
/**
* @param ticketInfo
* null.
*/
public void setTicketInfo(TicketInfo ticketInfo) {
this.ticketInfo = ticketInfo;
}
/** @return null. */
@Column(name = "CONTENT", length = 65535)
public String getContent() {
return this.content;
}
/**
* @param content
* null.
*/
public void setContent(String content) {
this.content = content;
}
/** @return null. */
@Column(name = "CREATOR", length = 64)
public String getCreator() {
return this.creator;
}
/**
* @param creator
* null.
*/
public void setCreator(String creator) {
this.creator = creator;
}
/** @return null. */
@Column(name = "STATUS", length = 50)
public String getStatus() {
return this.status;
}
/**
* @param status
* null.
*/
public void setStatus(String status) {
this.status = status;
}
/** @return null. */
@Temporal(TemporalType.TIMESTAMP)
@Column(name = "CREATE_TIME", length = 26)
public Date getCreateTime() {
return this.createTime;
}
/**
* @param createTime
* null.
*/
public void setCreateTime(Date createTime) {
this.createTime = createTime;
}
}