package com.mossle.humantask.persistence.domain; // Generated by Hibernate Tools 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; /** * TaskDefOperation 任务定义操作. * * @author Lingo */ @Entity @Table(name = "TASK_DEF_OPERATION") public class TaskDefOperation implements java.io.Serializable { private static final long serialVersionUID = 0L; /** 主键. */ private Long id; /** 外键,任务定义. */ private TaskDefBase taskDefBase; /** 值. */ private String value; /** 类型. */ private String type; /** 状态. */ private String status; /** 排序. */ private Integer priority; public TaskDefOperation() { } public TaskDefOperation(Long id) { this.id = id; } public TaskDefOperation(Long id, TaskDefBase taskDefBase, String value, String type, String status, Integer priority) { this.id = id; this.taskDefBase = taskDefBase; this.value = value; this.type = type; this.status = status; this.priority = priority; } /** @return 主键. */ @Id @Column(name = "ID", unique = true, nullable = false) public Long getId() { return this.id; } /** * @param id * 主键. */ public void setId(Long id) { this.id = id; } /** @return 外键,任务定义. */ @ManyToOne(fetch = FetchType.LAZY) @JoinColumn(name = "BASE_ID") public TaskDefBase getTaskDefBase() { return this.taskDefBase; } /** * @param taskDefBase * 外键,任务定义. */ public void setTaskDefBase(TaskDefBase taskDefBase) { this.taskDefBase = taskDefBase; } /** @return 值. */ @Column(name = "VALUE", length = 200) public String getValue() { return this.value; } /** * @param value * 值. */ public void setValue(String value) { this.value = value; } /** @return 类型. */ @Column(name = "TYPE", length = 50) public String getType() { return this.type; } /** * @param type * 类型. */ public void setType(String type) { this.type = type; } /** @return 状态. */ @Column(name = "STATUS", length = 50) public String getStatus() { return this.status; } /** * @param status * 状态. */ public void setStatus(String status) { this.status = status; } /** @return 排序. */ @Column(name = "PRIORITY") public Integer getPriority() { return this.priority; } /** * @param priority * 排序. */ public void setPriority(Integer priority) { this.priority = priority; } }