package com.changhong.epc.bean.tenant.log;
|
|
import com.changhong.epc.constter.base.BaseBean;
|
import lombok.Data;
|
import lombok.EqualsAndHashCode;
|
|
import javax.persistence.Column;
|
import javax.persistence.Table;
|
import java.io.Serializable;
|
|
/**
|
* 流程记录表
|
* @ClassName: ProcessLog
|
* @author [九鼎联合科技]
|
* @date 2017年07月20日 上午10:33:18
|
*/
|
@Table(name="test")
|
@Data
|
@EqualsAndHashCode(callSuper=true)
|
public class ProcessLog extends BaseBean implements Serializable {
|
|
private static final long serialVersionUID = 1L;
|
|
|
/**
|
* 流程定义id
|
* 表字段:process_def_id
|
*/
|
@Column(name="process_def_id")
|
private Long processDefId;
|
|
/**
|
* 流程实例id
|
* 表字段:process_inst_id
|
*/
|
@Column(name="process_inst_id")
|
private Long processInstId;
|
|
/**
|
* 活动实例id
|
* 表字段:activity_inst_id
|
*/
|
@Column(name="activity_inst_id")
|
private Long activityInstId;
|
|
/**
|
* 活动定义id
|
* 表字段:activity_def_id
|
*/
|
@Column(name="activity_def_id")
|
private String activityDefId;
|
|
/**
|
* 工作项id
|
* 表字段:work_item_id
|
*/
|
@Column(name="work_item_id")
|
private Long workItemId;
|
|
/**
|
* 活动定义名称
|
* 表字段:activity_def_name
|
*/
|
@Column(name="activity_def_name")
|
private String activityDefName;
|
|
/**
|
* 执行人id
|
* 表字段:participant_id
|
*/
|
@Column(name="participant_id")
|
private String participantId;
|
|
/**
|
* 执行人名称
|
* 表字段:participant_name
|
*/
|
@Column(name="participant_name")
|
private String participantName;
|
|
/**
|
* 超时时间
|
* 表字段:limit_num
|
*/
|
@Column(name="limit_num")
|
private Integer limitNum;
|
|
/**
|
* 审批语
|
* 表字段:data
|
*/
|
@Column(name="data")
|
private String data;
|
|
/**
|
* 记录级别
|
* 表字段:level
|
*/
|
@Column(name="level")
|
private Integer level;
|
|
|
/**
|
* 是否超时 1.超时 0 未超时
|
*/
|
@Column(name="time_out")
|
private Integer timeOut;
|
}
|