init commit
This commit is contained in:
@@ -0,0 +1,42 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Text;
|
||||
|
||||
namespace RoadFlow.Model.FlowRunModel
|
||||
{
|
||||
/// <summary>
|
||||
/// 步骤抄送实体
|
||||
/// </summary>
|
||||
public class StepCopyFor
|
||||
{
|
||||
/// <summary>
|
||||
/// 抄送组织机构人员
|
||||
/// </summary>
|
||||
public string MemberId { get; set; }
|
||||
/// <summary>
|
||||
/// 处理者类型
|
||||
/// </summary>
|
||||
public string HandlerType { get; set; }
|
||||
/// <summary>
|
||||
/// 处理者步骤
|
||||
/// </summary>
|
||||
public string Steps { get; set; }
|
||||
/// <summary>
|
||||
/// 方法或SQL
|
||||
/// </summary>
|
||||
public string MethodOrSql { get; set; }
|
||||
/// <summary>
|
||||
/// 抄送时间 0步骤接收时 1步骤完成时
|
||||
/// </summary>
|
||||
public int CopyforTime { get; set; }
|
||||
/// <summary>
|
||||
/// 发送待办消息方式 0站内短信 1手机短信 2微信 3公众号 4邮件
|
||||
/// </summary>
|
||||
public string SendMessageType { get; set; }
|
||||
|
||||
public override string ToString()
|
||||
{
|
||||
return Newtonsoft.Json.JsonConvert.SerializeObject(this);
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user