Initial_commit_SecMPS_v2
This commit is contained in:
30
api_sqlsugar/VolPro.Entity/DomainModels/Core/AntiData.cs
Normal file
30
api_sqlsugar/VolPro.Entity/DomainModels/Core/AntiData.cs
Normal 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; }
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user