feat(flow): 添加业务类型和业务ID字段到流程动作记录
- 在HrmFlowAction实体中新增bizType和bizId字段 - 修改saveAction方法签名以接收业务类型和业务ID参数 - 更新审批、盖章、拒绝、撤回、转办等操作的调用以传递业务类型和业务ID - 在动作记录中保存业务类型和业务ID信息到数据库
This commit is contained in:
@@ -22,6 +22,8 @@ public class HrmFlowAction extends BaseEntity implements Serializable {
|
||||
private String action;
|
||||
private String remark;
|
||||
private Long actionUserId;
|
||||
private String bizType;
|
||||
private Long bizId;
|
||||
@TableLogic
|
||||
private Integer delFlag;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user