using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Myshipping.Application
{
///
/// 服务流程运行活动表
///
public class ServiceWorkFlowActivitiesRunDto
{
///
/// 主键
///
public string PKId { get; set; }
///
/// 主键
///
public string RunId { get; set; }
///
///
///
public int ExecSortNo { get; set; }
///
/// 是否起始 1-是 0-否
///
public int IsStart { get; set;}
///
/// 是否结束 1-是 0-否
///
public int IsEnd { get; set; }
///
/// 活动主键
///
public string ActId { get; set; }
///
/// 活动值
///
public string ActVal { get; set; }
///
/// 是否已产生 1-已产生 0-未产生
///
public int IsYield { get; set; }
///
/// 活动发生时间
///
public Nullable ActDate { get; set; }
///
/// 状态主键
///
public string StatusSKUId { get; set; }
///
/// 状态代码
///
public string StatusSKUCode { get; set; }
///
/// 状态显示名称
///
public string ShowName { get; set; }
///
/// 来源类型 AUTO-自动 MANUAL-人工
///
public string SourceType { get; set; }
///
/// 子活动列表
///
public List SubList { get; set; }
}
public class ServiceWorkFlowActivitiesRunSubDto
{
///
/// 主键
///
public string PKId { get; set; }
///
/// 主键
///
public string RunId { get; set; }
///
///
///
public int ExecSortNo { get; set; }
///
/// 是否起始 1-是 0-否
///
public int IsStart { get; set; }
///
/// 是否结束 1-是 0-否
///
public int IsEnd { get; set; }
///
/// 活动主键
///
public string ActId { get; set; }
///
/// 活动值
///
public string ActVal { get; set; }
///
/// 是否已产生 1-已产生 0-未产生
///
public int IsYield { get; set; }
///
/// 活动发生时间
///
public Nullable ActDate { get; set; }
///
/// 状态主键
///
public string StatusSKUId { get; set; }
///
/// 状态代码
///
public string StatusSKUCode { get; set; }
///
/// 状态显示名称
///
public string ShowName { get; set; }
///
/// 来源类型 AUTO-自动 MANUAL-人工
///
public string SourceType { get; set; }
}
}