Initial_commit_SecMPS_v2

This commit is contained in:
2026-05-15 23:22:48 +08:00
commit 23ea4fe05f
13830 changed files with 298675 additions and 0 deletions

View File

@@ -0,0 +1,30 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace VolPro.Entity.DomainModels
{
public class AntiData
{
/// <summary>
/// 审批的主键
/// </summary>
public object Key { get; set; }
/// <summary>
/// 审批意见
/// </summary>
public string AuditReason { get; set; }
/// <summary>
/// 是否审批流程
/// </summary>
public bool IsFlow { get; set; }
/// <summary>
/// 退回节点
/// </summary>
public string StepId { get; set; }
}
}