package com.artfess.bpm.persistence.model;

import java.time.LocalDateTime;

import org.apache.commons.lang.builder.ToStringBuilder;

import com.baomidou.mybatisplus.annotation.TableField;
import com.baomidou.mybatisplus.annotation.TableId;
import com.baomidou.mybatisplus.annotation.TableName;
import com.artfess.base.entity.BaseModel;


 /**
 * 
 * <pre> 
 * 描述：restful接口事件日志 实体对象
 * 构建组：x5-bpmx-platform
 * 作者:zhangxw
 * 邮箱:zhangxw@jee-soft.cn
 * 日期:2017-10-26 11:40:50
 * 版权：广州宏天软件有限公司
 * </pre>
 */
@TableName("bpm_call_log")
public class BpmCallLog extends BaseModel<BpmCallLog>{
	
	private static final long serialVersionUID = 1L;

	 // 是否发送成功
	 public final static Integer SUCCESS_YES = 1;
	 public final static Integer SUCCESS_NO = 0;

	/**
	* ID_
	*/
	@TableId("id_")
	protected String id; 
	
	/**
	*  流程标题
	*/
	@TableField("subject_")
	protected String subject; 
	
	/**
	*  流程定义ID
	*/
	@TableField("proc_def_id_")
	protected String procDefId; 
	
	/**
	* 流程定义Key
	*/
	@TableField("proc_def_key_")
	protected String procDefKey; 
	
	/**
	* 任务ID
	*/
	@TableField("task_id_")
	protected String taskId; 
	
	/**
	* 父流程实例ID
	*/
	@TableField("sup_inst_id_")
	protected String supInstId; 
	
	/**
	* 流程实例ID
	*/
	@TableField("proc_inst_id_")
	protected String procInstId; 
	
	/**
	* 任务定义Key
	*/
	@TableField("task_key_")
	protected String taskKey; 
	
	/**
	* 任务名称
	*/
	@TableField("task_name_")
	protected String taskName; 
	
	/**
	* 调用人员ID
	*/
	@TableField("user_id_")
	protected String userId; 
	
	/**
	* 事件类型
	*/
	@TableField("event_type_")
	protected String eventType; 
	
	/**
	* 调用地址
	*/
	@TableField("url_")
	protected String url; 
	
	/**
	* 接口描述
	*/
	@TableField("desc_")
	protected String desc; 
	
	/**
	* 接口调用模式:0:同步，1:异步
	*/
	@TableField("invoke_mode_")
	protected Integer invokeMode; 
	
	/**
	* 是否调用成功
	*/
	@TableField("is_success_")
	protected Integer isSuccess;
	
	/**
	* 调用结果
	*/
	@TableField("response_")
	protected String response; 
	
	/**
	* 调用时间
	*/
	@TableField("call_time_")
	protected LocalDateTime callTime; 
	
	/**
	* 请求参数
	*/
	@TableField("params_")
	protected String params;
	
	/**
	* 请求头
	*/
	@TableField("header_")
	protected String header;
	
	/**
	* 重试次数
	*/
	@TableField("retry_count_")
	protected Integer retryCount;
	
	public void setId(String id) {
		this.id = id;
	}
	
	/**
	 * 返回 ID_
	 * @return
	 */
	public String getId() {
		return this.id;
	}
	
	public String getSubject() {
		return subject;
	}

	public void setSubject(String subject) {
		this.subject = subject;
	}

	public void setProcDefId(String procDefId) {
		this.procDefId = procDefId;
	}
	
	/**
	 * 返回  流程定义ID
	 * @return
	 */
	public String getProcDefId() {
		return this.procDefId;
	}
	
	public void setProcDefKey(String procDefKey) {
		this.procDefKey = procDefKey;
	}
	
	/**
	 * 返回 流程定义Key
	 * @return
	 */
	public String getProcDefKey() {
		return this.procDefKey;
	}
	
	public void setTaskId(String taskId) {
		this.taskId = taskId;
	}
	
	/**
	 * 返回 任务ID
	 * @return
	 */
	public String getTaskId() {
		return this.taskId;
	}
	
	public void setSupInstId(String supInstId) {
		this.supInstId = supInstId;
	}
	
	/**
	 * 返回 父流程实例ID
	 * @return
	 */
	public String getSupInstId() {
		return this.supInstId;
	}
	
	public void setProcInstId(String procInstId) {
		this.procInstId = procInstId;
	}
	
	/**
	 * 返回 流程实例ID
	 * @return
	 */
	public String getProcInstId() {
		return this.procInstId;
	}
	
	public void setTaskKey(String taskKey) {
		this.taskKey = taskKey;
	}
	
	/**
	 * 返回 任务定义Key
	 * @return
	 */
	public String getTaskKey() {
		return this.taskKey;
	}
	
	public void setTaskName(String taskName) {
		this.taskName = taskName;
	}
	
	/**
	 * 返回 任务名称
	 * @return
	 */
	public String getTaskName() {
		return this.taskName;
	}
	
	public void setUserId(String userId) {
		this.userId = userId;
	}
	
	/**
	 * 返回 调用人员ID
	 * @return
	 */
	public String getUserId() {
		return this.userId;
	}
	
	public void setEventType(String eventType) {
		this.eventType = eventType;
	}
	
	/**
	 * 返回 事件类型
	 * @return
	 */
	public String getEventType() {
		return this.eventType;
	}
	
	public void setUrl(String url) {
		this.url = url;
	}
	
	/**
	 * 返回 调用地址
	 * @return
	 */
	public String getUrl() {
		return this.url;
	}
	
	public void setDesc(String desc) {
		this.desc = desc;
	}
	
	/**
	 * 返回 接口描述
	 * @return
	 */
	public String getDesc() {
		return this.desc;
	}
	
	public void setInvokeMode(Integer invokeMode) {
		this.invokeMode = invokeMode;
	}
	
	/**
	 * 返回 接口调用模式:0:同步，1:异步
	 * @return
	 */
	public Integer getInvokeMode() {
		return this.invokeMode;
	}
	
	
	
	public Integer getIsSuccess() {
		return isSuccess;
	}

	public void setIsSuccess(Integer isSuccess) {
		this.isSuccess = isSuccess;
	}

	public void setResponse(String response) {
		this.response = response;
	}
	
	/**
	 * 返回 调用结果
	 * @return
	 */
	public String getResponse() {
		return this.response;
	}
	
	public void setCallTime(LocalDateTime callTime) {
		this.callTime = callTime;
	}
	
	/**
	 * 返回 调用时间
	 * @return
	 */
	public LocalDateTime getCallTime() {
		return this.callTime;
	}
	public String getParams() {
		return params;
	}

	public void setParams(String params) {
		this.params = params;
	}

	public String getHeader() {
		return header;
	}

	public void setHeader(String header) {
		this.header = header;
	}

	public Integer getRetryCount() {
		return retryCount;
	}

	public void setRetryCount(Integer retryCount) {
		this.retryCount = retryCount;
	}

	/**
	 * @see java.lang.Object#toString()
	 */
	public String toString() {
		return new ToStringBuilder(this)
		.append("id", this.id) 
		.append("subject", this.subject) 
		.append("procDefId", this.procDefId) 
		.append("procDefKey", this.procDefKey) 
		.append("taskId", this.taskId) 
		.append("supInstId", this.supInstId) 
		.append("procInstId", this.procInstId) 
		.append("taskKey", this.taskKey) 
		.append("taskName", this.taskName) 
		.append("userId", this.userId) 
		.append("eventType", this.eventType) 
		.append("url", this.url) 
		.append("desc", this.desc) 
		.append("invokeMode", this.invokeMode) 
		.append("isSuccess", this.isSuccess) 
		.append("response", this.response) 
		.append("callTime", this.callTime) 
		.append("params", this.params) 
		.append("header", this.header) 
		.append("retryCount", this.retryCount) 
		.toString();
	}
}