namespace MiaoYu.Repository.Admin.Entities.ApprovalFlow;
///
/// 工作流主表
///
[EntityDescription(FieldIgnored = true)]
public class Flow : DefaultEntity
{
///
/// 序号 => 备注:Number
///
public int? Number { get; set; }
///
/// 流程编码 => 备注:Code
///
///
public string? Code { get; set; }
///
/// 流程名称 => 备注:Name
///
public string? Name { get; set; }
///
/// 备注 => 备注:Name
///
public string? Remark { get; set; }
}