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.
58 lines
1.5 KiB
C#
58 lines
1.5 KiB
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Myshipping.Application
|
|
{
|
|
/// <summary>
|
|
/// 查询服务项目和状态
|
|
/// </summary>
|
|
public class QueryServiceProjectWithStatus
|
|
{
|
|
/// <summary>
|
|
/// 订舱ID(可为空,不为空时需要查询已触发的记录和未触发的记录,为空时只查询已启用的)
|
|
/// </summary>
|
|
public long? BookingId { 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; }
|
|
}
|
|
|
|
public class QueryServiceProjectWithStatusBatch
|
|
{
|
|
/// <summary>
|
|
/// 订舱ID数组
|
|
/// </summary>
|
|
public long[] BookingIds { 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; }
|
|
}
|
|
}
|