仓库管理修改

liweidong
wusiyu 1 week ago
parent 450af50f38
commit 633eeb2587
  1. 19
      blade-service-api/blade-desk-api/src/main/java/org/springblade/desk/common/pojo/entity/MesApprovalRecordEntity.java

@ -67,20 +67,39 @@ public class MesApprovalRecordEntity extends BaseEntity {
*/ */
@Schema(description = "当前角色ID") @Schema(description = "当前角色ID")
private Long currentRoleId; private Long currentRoleId;
/**
* 当前用户ID
*/
@Schema(description = "当前用户ID")
private Long currentUserId;
/** /**
* 当前角色名称 * 当前角色名称
*/ */
private String currentRoleName; private String currentRoleName;
/**
* 当前用户名称
*/
private String currentUserName;
/** /**
* 下一个流程节点角色ID * 下一个流程节点角色ID
*/ */
@Schema(description = "下一个流程节点角色ID") @Schema(description = "下一个流程节点角色ID")
private Long nextRoleId; private Long nextRoleId;
/**
* 下一个流程节点用户ID
*/
@Schema(description = "下一个流程节点用户ID")
private Long nextUserId;
/** /**
* 下一个流程节点角色ID * 下一个流程节点角色ID
*/ */
@Schema(description = "下一个流程节点角色名称") @Schema(description = "下一个流程节点角色名称")
private String nextRoleName; private String nextRoleName;
/**
* 下一个流程节点用户名称
*/
@Schema(description = "下一个流程节点用户名称")
private String nextUserName;
/** /**
* 审批意见 * 审批意见
*/ */

Loading…
Cancel
Save