diff --git a/Myshipping.Application/Entity/TaskManagePlat/TaskBCInfo.cs b/Myshipping.Application/Entity/TaskManagePlat/TaskBCInfo.cs index c4d4e354..99502c51 100644 --- a/Myshipping.Application/Entity/TaskManagePlat/TaskBCInfo.cs +++ b/Myshipping.Application/Entity/TaskManagePlat/TaskBCInfo.cs @@ -26,6 +26,11 @@ namespace Myshipping.Application /// public string BOOKING_PARTY { get; set; } + /// + /// 业务类型 BookingConfirmation(订舱);BookingAmendment(订舱变更);BookingCancellation(订舱取消) + /// + public string BUSI_TYPE { get; set; } + /// /// 发货人 /// diff --git a/Myshipping.Application/Service/TaskManagePlat/Dtos/BC/TaskBCShowBaseDto.cs b/Myshipping.Application/Service/TaskManagePlat/Dtos/BC/TaskBCShowBaseDto.cs index 36363a98..0335e680 100644 --- a/Myshipping.Application/Service/TaskManagePlat/Dtos/BC/TaskBCShowBaseDto.cs +++ b/Myshipping.Application/Service/TaskManagePlat/Dtos/BC/TaskBCShowBaseDto.cs @@ -21,6 +21,11 @@ namespace Myshipping.Application /// public string TaskId { get; set; } + /// + /// 业务类型 BookingConfirmation(订舱);BookingAmendment(订舱变更);BookingCancellation(订舱取消) + /// + public string BusiType { get; set; } + /// /// 订舱单位 /// diff --git a/Myshipping.Application/Service/TaskManagePlat/Dtos/TaskBCInfoDto.cs b/Myshipping.Application/Service/TaskManagePlat/Dtos/TaskBCInfoDto.cs index b8e8d242..d9b002a9 100644 --- a/Myshipping.Application/Service/TaskManagePlat/Dtos/TaskBCInfoDto.cs +++ b/Myshipping.Application/Service/TaskManagePlat/Dtos/TaskBCInfoDto.cs @@ -21,6 +21,11 @@ namespace Myshipping.Application /// public string TaskId { get; set; } + /// + /// 业务类型 BookingConfirmation(订舱);BookingAmendment(订舱变更);BookingCancellation(订舱取消) + /// + public string BusiType { get; set; } + /// /// 订舱单位 /// diff --git a/Myshipping.Application/Service/TaskManagePlat/Dtos/TaskManageMapper.cs b/Myshipping.Application/Service/TaskManagePlat/Dtos/TaskManageMapper.cs index 5961ac0a..15a9dc40 100644 --- a/Myshipping.Application/Service/TaskManagePlat/Dtos/TaskManageMapper.cs +++ b/Myshipping.Application/Service/TaskManagePlat/Dtos/TaskManageMapper.cs @@ -618,6 +618,7 @@ namespace Myshipping.Application config.ForType() .Map(dest => dest.PKId, src => src.PK_ID) .Map(dest => dest.TaskId, src => src.TASK_ID) + .Map(dest => dest.BusiType, src => src.BUSI_TYPE) .Map(dest => dest.BookingParty, src => src.BOOKING_PARTY) .Map(dest => dest.Shipper, src => src.SHIPPER) .Map(dest => dest.Consignee, src => src.CONSIGNEE) @@ -688,6 +689,7 @@ namespace Myshipping.Application config.ForType() .Map(dest => dest.PKId, src => src.PK_ID) .Map(dest => dest.TaskId, src => src.TASK_ID) + .Map(dest => dest.BusiType, src => src.BUSI_TYPE) .Map(dest => dest.BookingParty, src => src.BOOKING_PARTY) .Map(dest => dest.Shipper, src => src.SHIPPER) .Map(dest => dest.Consignee, src => src.CONSIGNEE) @@ -755,6 +757,7 @@ namespace Myshipping.Application .Map(dest => dest.BookingConfirmDate, src => src.BOOKING_COMFIRM_DATE); config.ForType() + .Map(dest => dest.BUSI_TYPE, src => src.BusiType) .Map(dest => dest.BOOKING_PARTY, src => src.BookingParty) .Map(dest => dest.SHIPPER, src => src.Shipper) .Map(dest => dest.CONSIGNEE, src => src.Consignee) diff --git a/Myshipping.Application/Service/TaskManagePlat/Dtos/TaskManageOrderBCInfo.cs b/Myshipping.Application/Service/TaskManagePlat/Dtos/TaskManageOrderBCInfo.cs index bf1a40cf..7c97e8a1 100644 --- a/Myshipping.Application/Service/TaskManagePlat/Dtos/TaskManageOrderBCInfo.cs +++ b/Myshipping.Application/Service/TaskManagePlat/Dtos/TaskManageOrderBCInfo.cs @@ -11,6 +11,11 @@ namespace Myshipping.Application /// public class TaskManageOrderBCInfo { + /// + /// 业务类型 BookingConfirmation(订舱);BookingAmendment(订舱变更);BookingCancellation(订舱取消) + /// + public string BusiType { get; set; } + /// /// 订舱单位 ///