|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.Linq;
|
|
|
|
|
using System.Text;
|
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
|
|
|
|
|
|
namespace Myshipping.Application
|
|
|
|
|
{
|
|
|
|
|
/// <summary>
|
|
|
|
|
///
|
|
|
|
|
/// </summary>
|
|
|
|
|
public class ServiceWorkFlowBaseShowDto
|
|
|
|
|
{
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 主键
|
|
|
|
|
/// </summary>
|
|
|
|
|
public string PKId { get; set; }
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 服务流程代码
|
|
|
|
|
/// </summary>
|
|
|
|
|
public string ServiceWorkflowCode { get; set; }
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 服务流程名称
|
|
|
|
|
/// </summary>
|
|
|
|
|
public string ServiceWorkflowName { get; set; }
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 服务流程说明
|
|
|
|
|
/// </summary>
|
|
|
|
|
public string ServiceWorkflowNote { get; set; }
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 所属租户ID
|
|
|
|
|
/// </summary>
|
|
|
|
|
public long BelongTenantId { get; set; }
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 所属租户名称
|
|
|
|
|
/// </summary>
|
|
|
|
|
public string BelongTenantName { get; set; }
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 创建时间
|
|
|
|
|
/// </summary>
|
|
|
|
|
public DateTime CreatedTime { get; set; }
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 修改时间
|
|
|
|
|
/// </summary>
|
|
|
|
|
public Nullable<DateTime> UpdatedTime { get; set; }
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 创建人ID
|
|
|
|
|
/// </summary>
|
|
|
|
|
public long CreatedUserId { get; set; }
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 创建人名称
|
|
|
|
|
/// </summary>
|
|
|
|
|
public string CreatedUserName { get; set; }
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 修改人ID
|
|
|
|
|
/// </summary>
|
|
|
|
|
public long UpdatedUserId { get; set; }
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 修改人名称
|
|
|
|
|
/// </summary>
|
|
|
|
|
public string UpdatedUserName { get; set; }
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 是否启用 1-启用 0-未启用
|
|
|
|
|
/// </summary>
|
|
|
|
|
public int IsEnable { get; set;}
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 状态数量
|
|
|
|
|
/// </summary>
|
|
|
|
|
public int StatusNum { get; set;}
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 发布版本
|
|
|
|
|
/// </summary>
|
|
|
|
|
public string ReleaseVersion { get; set; }
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 当前编辑版本
|
|
|
|
|
/// </summary>
|
|
|
|
|
public string DevelopVersion { get; set; }
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 发布人
|
|
|
|
|
/// </summary>
|
|
|
|
|
public long PublishEr { get; set; }
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 发布人名称
|
|
|
|
|
/// </summary>
|
|
|
|
|
public string PublishName { get; set; }
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 发布日期
|
|
|
|
|
/// </summary>
|
|
|
|
|
public Nullable<DateTime> PublishDate { get; set; }
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 是否锁止 1-锁止(不允许修改,只能取消锁止后才能修改) 0-未锁止
|
|
|
|
|
/// </summary>
|
|
|
|
|
public int IsLock { get; set; }
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 服务项目
|
|
|
|
|
/// </summary>
|
|
|
|
|
public ServiceProjectBaseDto ServiceProject { get; set; }
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 状态列表
|
|
|
|
|
/// </summary>
|
|
|
|
|
public List<ServiceWorkFlowActivitiesShowDto> StatusSkuList { get; set; }
|
|
|
|
|
}
|
|
|
|
|
}
|