using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace WorkFlowApi.ViewModels.Input { public class CreateFlowReq { /// /// 流程模板编码 /// public string Code { get; set; } /// /// 流程进程主键 /// public string ProcessId { get; set; } public string BranchnodeCode { get; set; } public bool IsNew { get; set; } } }