package com.mossle.pim.persistence.domain;
// Generated by Hibernate Tools
import java.util.Date;
import javax.persistence.Column;
import javax.persistence.Entity;
import javax.persistence.Id;
import javax.persistence.Table;
import javax.persistence.Temporal;
import javax.persistence.TemporalType;
/**
* PimPlan .
*
* @author Lingo
*/
@Entity
@Table(name = "PIM_PLAN")
public class PimPlan implements java.io.Serializable {
private static final long serialVersionUID = 0L;
/** null. */
private Long id;
/** null. */
private String name;
/** null. */
private String content;
/** null. */
private Date startTime;
/** null. */
private Date endTime;
/** null. */
private String catalog;
/** null. */
private Integer priority;
/** null. */
private String assignee;
/** null. */
private String status;
/** null. */
private Date createTime;
/** null. */
private String userId;
/** null. */
private String tenantId;
public PimPlan() {
}
public PimPlan(Long id) {
this.id = id;
}
public PimPlan(Long id, String name, String content, Date startTime,
Date endTime, String catalog, Integer priority, String assignee,
String status, Date createTime, String userId, String tenantId) {
this.id = id;
this.name = name;
this.content = content;
this.startTime = startTime;
this.endTime = endTime;
this.catalog = catalog;
this.priority = priority;
this.assignee = assignee;
this.status = status;
this.createTime = createTime;
this.userId = userId;
this.tenantId = tenantId;
}
/** @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. */
@Column(name = "NAME", length = 200)
public String getName() {
return this.name;
}
/**
* @param name
* null.
*/
public void setName(String name) {
this.name = name;
}
/** @return null. */
@Column(name = "CONTENT", length = 200)
public String getContent() {
return this.content;
}
/**
* @param content
* null.
*/
public void setContent(String content) {
this.content = content;
}
/** @return null. */
@Temporal(TemporalType.TIMESTAMP)
@Column(name = "START_TIME", length = 26)
public Date getStartTime() {
return this.startTime;
}
/**
* @param startTime
* null.
*/
public void setStartTime(Date startTime) {
this.startTime = startTime;
}
/** @return null. */
@Temporal(TemporalType.TIMESTAMP)
@Column(name = "END_TIME", length = 26)
public Date getEndTime() {
return this.endTime;
}
/**
* @param endTime
* null.
*/
public void setEndTime(Date endTime) {
this.endTime = endTime;
}
/** @return null. */
@Column(name = "CATALOG", length = 50)
public String getCatalog() {
return this.catalog;
}
/**
* @param catalog
* null.
*/
public void setCatalog(String catalog) {
this.catalog = catalog;
}
/** @return null. */
@Column(name = "PRIORITY")
public Integer getPriority() {
return this.priority;
}
/**
* @param priority
* null.
*/
public void setPriority(Integer priority) {
this.priority = priority;
}
/** @return null. */
@Column(name = "ASSIGNEE", length = 64)
public String getAssignee() {
return this.assignee;
}
/**
* @param assignee
* null.
*/
public void setAssignee(String assignee) {
this.assignee = assignee;
}
/** @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;
}
/** @return null. */
@Column(name = "USER_ID", length = 64)
public String getUserId() {
return this.userId;
}
/**
* @param userId
* null.
*/
public void setUserId(String userId) {
this.userId = userId;
}
/** @return null. */
@Column(name = "TENANT_ID", length = 50)
public String getTenantId() {
return this.tenantId;
}
/**
* @param tenantId
* null.
*/
public void setTenantId(String tenantId) {
this.tenantId = tenantId;
}
}