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