using System;
using Myshipping.Core;
namespace Myshipping.FlowCenter.Service;
///
/// 工作流输出参数
///
public class FlcFlowinstanceDto
{
///
/// Id
///
public long Id { get; set; }
///
/// InstanceSchemeId
///
public long InstanceSchemeId { get; set; }
///
/// Code
///
public string Code { get; set; }
///
/// CustomName
///
public string CustomName { get; set; }
///
/// ActivityId
///
public string ActivityId { get; set; }
///
/// ActivityType
///
public long ActivityType { get; set; }
///
/// ActivityName
///
public string ActivityName { get; set; }
///
/// PreviousId
///
public string PreviousId { get; set; }
///
/// SchemeContent
///
public string SchemeContent { get; set; }
///
/// SchemeId
///
public long SchemeId { get; set; }
///
/// DbName
///
public string DbName { get; set; }
///
/// FrmData
///
public string FrmData { get; set; }
///
/// FrmType
///
public FormType FrmType { get; set; } = FormType.CUSTOMFORM;
///
/// FrmContentData
///
public string FrmContentData { get; set; }
///
/// FrmContentParse
///
public string FrmContentParse { get; set; }
///
/// FrmId
///
public long FrmId { get; set; }
///
/// SchemeType
///
public string SchemeType { get; set; }
///
/// FlowLevel
///
public long FlowLevel { get; set; }
///
/// IsFinish
///
public bool IsFinish { get; set; }
///
/// FrmContent
///
public string FrmContent { get; set; }
///
/// MakerList
///
public string MakerList { get; set; }
///
/// OrgId
///
public long OrgId { get; set; }
///
/// Active
///
public string Active { get; set; }
///
/// Remark
///
public string Remark { get; set; }
public CommonStatus Status { get; set; } = CommonStatus.ENABLE;
}