This commit is contained in:
parent
a060b732c0
commit
055037885d
|
|
@ -0,0 +1,54 @@
|
|||
package com.bonus.material.work.domain;
|
||||
|
||||
|
||||
import com.fasterxml.jackson.annotation.JsonFormat;
|
||||
import lombok.Data;
|
||||
import lombok.ToString;
|
||||
|
||||
import java.util.Date;
|
||||
|
||||
@Data
|
||||
@ToString
|
||||
public class SysWorkflowRecordHistory {
|
||||
|
||||
/**
|
||||
* 主键
|
||||
*/
|
||||
private Integer id;
|
||||
|
||||
/**
|
||||
* 所属记录
|
||||
*/
|
||||
private Integer recordId;
|
||||
|
||||
/**
|
||||
* 执行流程节点id
|
||||
*/
|
||||
private Integer nodeId;
|
||||
|
||||
/**
|
||||
* 下个流程节点id
|
||||
*/
|
||||
private String nextNodeId;
|
||||
|
||||
/**
|
||||
* 审批结果,0拒绝 1通过
|
||||
*/
|
||||
private Integer isAccept;
|
||||
|
||||
/**
|
||||
* 操作人名称
|
||||
*/
|
||||
private String createBy;
|
||||
|
||||
/**
|
||||
* 执行时间
|
||||
*/
|
||||
@JsonFormat(pattern = "yyyy-MM-dd")
|
||||
private Date createTime;
|
||||
|
||||
/**
|
||||
* 备注 意见 驳回原因
|
||||
*/
|
||||
private String remark;
|
||||
}
|
||||
Loading…
Reference in New Issue