namespace Myshipping.FlowCenter.Entity; /// /// 流程审核类 /// public class Verification:NodeDesignate { /// /// 流程实例Id /// public long FlowInstanceId { get; set; } /// /// 1:同意;2:不同意;3:驳回 /// public string VerificationFinally { get; set; } /// /// 审核意见 /// public string VerificationOpinion { get; set; } /// /// 驳回的步骤,即驳回到的节点ID /// public string NodeRejectStep { get; set; } /// /// 驳回类型。null:使用节点配置的驳回类型/0:前一步/1:第一步/2:指定节点,使用NodeRejectStep /// public string NodeRejectType { get; set; } }