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.
54 lines
1.2 KiB
C#
54 lines
1.2 KiB
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Myshipping.Application.Service.BookingOrder.Dto
|
|
{
|
|
public class BookingServiceItemDto
|
|
{
|
|
/// <summary>
|
|
/// 订舱id
|
|
/// </summary>
|
|
public long BookingId { get; set; }
|
|
/// <summary>
|
|
/// 状态代码
|
|
/// </summary>
|
|
public string Code { get; set; }
|
|
/// <summary>
|
|
/// 状态名称
|
|
/// </summary>
|
|
public string Value { get; set; }
|
|
|
|
/// <summary>
|
|
/// 未确认
|
|
/// </summary>
|
|
public bool UnConfirm { get; set; }
|
|
|
|
}
|
|
|
|
public class BookingServiceItemList
|
|
{
|
|
|
|
public long? BookingId { get; set; }
|
|
public List<BookingServiceItemDto> item { get; set; }
|
|
}
|
|
|
|
/// <summary>
|
|
/// 修改服务项目dto
|
|
/// </summary>
|
|
public class BookingServiceChangeDto : BookingServiceItemDto
|
|
{
|
|
/// <summary>
|
|
/// 是否取消
|
|
/// </summary>
|
|
public bool IsCancel { get; set; }
|
|
|
|
/// <summary>
|
|
/// 运营端人员修改服务项目时的备注
|
|
/// </summary>
|
|
public string Remark { get; set; }
|
|
}
|
|
}
|