客户订舱账密

master
wanghaomei 8 months ago
parent 35a584cc7f
commit bc12a3edea

@ -283,6 +283,11 @@ namespace Myshipping.Application.Entity
/// 目的地
/// </summary>
public string DESTINATION { get; set; }
/// <summary>
/// 附加数据
/// </summary>
public string ExtendData { get; set; }
}
/// <summary>

@ -385,6 +385,7 @@ namespace Myshipping.Application
outModel.Files = dicFile;
outModel.LogList = _repStatuslog.AsQueryable().Where(x => x.BookingId == entity.Id && x.Category == StaLogCateAudit).OrderByDescending(x => x.OpTime).ToList().Adapt<List<BookingCustomerLogDto>>();
outModel.ServiceItemList = _repServiceItem.AsQueryable().Where(x => x.BookingId == entity.Id).ToList().Adapt<List<BookingServiceItemCustomerDto>>();
return outModel;
}

@ -397,6 +397,11 @@ namespace Myshipping.Application
/// </summary>
public string UpdatedTime { get; set; }
/// <summary>
/// 附加数据
/// </summary>
public string ExtendData { get; set; }
/// <summary>
/// 文件列表
/// </summary>
@ -553,6 +558,11 @@ namespace Myshipping.Application
/// 回推接口秘钥
/// </summary>
public string FeedbackSecret { get; set; }
/// <summary>
/// 附加数据
/// </summary>
public string ExtendData { get; set; }
}
@ -889,13 +899,10 @@ namespace Myshipping.Application
/// 服务项目
/// </summary>
public List<BookingServiceItemCustomerDto> ServiceItemList { get; set; }
///// <summary>
///// 订舱账号
///// </summary>
//public string BOOKINGACCOUNT { get; set; }
///// <summary>
///// 订舱密码
///// </summary>
//public string BOOKINGPASSWORD { get; set; }
/// <summary>
/// 附加数据
/// </summary>
public string ExtendData { get; set; }
}
}

Loading…
Cancel
Save