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.
69 lines
1.7 KiB
C#
69 lines
1.7 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 ModifyServiceProjectDto
|
|
{
|
|
/// <summary>
|
|
/// 订舱主键
|
|
/// </summary>
|
|
public long BookingId { get; set; }
|
|
|
|
/// <summary>
|
|
/// 服务项目代码
|
|
/// </summary>
|
|
public string[] ProjectCodes { get; set; }
|
|
}
|
|
|
|
/// <summary>
|
|
/// 修改服务项目状态
|
|
/// </summary>
|
|
public class ModifyServiceProjectStatusDto
|
|
{
|
|
/// <summary>
|
|
/// 订舱主键
|
|
/// </summary>
|
|
public long BookingId { get; set; }
|
|
|
|
/// <summary>
|
|
/// 来源类型
|
|
/// </summary>
|
|
public TrackingSourceTypeEnum SourceType { get; set; } = TrackingSourceTypeEnum.MANUAL;
|
|
|
|
/// <summary>
|
|
/// 服务项目状态明细
|
|
/// </summary>
|
|
public List<ModifyServiceProjectStatusDetailDto> StatusCodes { get; set; }
|
|
}
|
|
|
|
public class ModifyServiceProjectStatusDetailDto
|
|
{
|
|
/// <summary>
|
|
/// 状态代码
|
|
/// </summary>
|
|
public string StatusCode { get; set; }
|
|
|
|
/// <summary>
|
|
/// 人工设定状态完成时间
|
|
/// </summary>
|
|
public Nullable<DateTime> SetActDate { get; set; }
|
|
|
|
/// <summary>
|
|
/// 人工设定状态值(可传箱使天数)
|
|
/// </summary>
|
|
public string SetActVal { get; set; }
|
|
|
|
/// <summary>
|
|
/// 状态备注
|
|
/// </summary>
|
|
public string ActRemark { get; set; }
|
|
}
|
|
}
|