You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
BookingHeChuan/Myshipping.Application/Service/TrackingSystem/Dtos/QueryServiceWorkFlowBaseDto.cs

79 lines
1.9 KiB
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Myshipping.Application
{
public class QueryServiceWorkFlowBaseDto : QueryTaskManageBaseDto
{
/// <summary>
/// 创建日期起始
/// </summary>
/// <example></example>
public string CreateBegin { get; set; }
/// <summary>
/// 创建日期结束
/// </summary>
/// <example></example>
public string CreateEnd { get; set; }
/// <summary>
/// 更新日期起始
/// </summary>
/// <example></example>
public string UpdateBegin { get; set; }
/// <summary>
/// 更新日期结束
/// </summary>
/// <example></example>
public string UpdateEnd { get; set; }
/// <summary>
/// 发布日期起始
/// </summary>
/// <example></example>
public string PublishBegin { get; set; }
/// <summary>
/// 发布日期结束
/// </summary>
/// <example></example>
public string PublishEnd { get; set; }
/// <summary>
/// 创建人
/// </summary>
public string CreateUser { get; set; }
/// <summary>
/// 更新人
/// </summary>
public string UpdateUser { get; set; }
/// <summary>
/// 是否启用 1-已启用 2-未启用
/// </summary>
/// <example></example>
public string IsEnable { get; set; }
/// <summary>
/// 流程名称
/// </summary>
public string ServiceWorkflowName { get; set; }
/// <summary>
/// 流程说明
/// </summary>
public string ServiceWorkflowNote { get; set; }
/// <summary>
/// 所属租户
/// </summary>
public string BelongTenantName { get; set; }
}
}