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.
35 lines
931 B
C#
35 lines
931 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Myshipping.Application.Service.TrackingSystem.Dtos
|
|
{
|
|
/// <summary>
|
|
///
|
|
/// </summary>
|
|
public class QueryServiceProjectWithStatusCommon
|
|
{
|
|
/// <summary>
|
|
/// 业务主键(可为空,不为空时需要查询已触发的记录和未触发的记录,为空时只查询已启用的)
|
|
/// </summary>
|
|
public string businessId { get; set; }
|
|
|
|
/// <summary>
|
|
/// 0-查服务项目 1-查服务项目下的状态
|
|
/// </summary>
|
|
public TrackingQueryTypeEnum QueryType { get; set; }
|
|
|
|
/// <summary>
|
|
/// 服务项目代码组
|
|
/// </summary>
|
|
public string[] ProjectCodes { get; set; }
|
|
|
|
/// <summary>
|
|
/// 租户ID
|
|
/// </summary>
|
|
public long TenantId { get; set; }
|
|
}
|
|
}
|