diff --git a/Myshipping.Core/Myshipping.Core.xml b/Myshipping.Core/Myshipping.Core.xml index 5080a8f3..8ea43033 100644 --- a/Myshipping.Core/Myshipping.Core.xml +++ b/Myshipping.Core/Myshipping.Core.xml @@ -9311,6 +9311,19 @@ + + + 重置秘钥 + + + + + + + 生成新秘钥 + + + 接口授权输出参数 diff --git a/Myshipping.Core/Service/DjyVesselInfo/DjyVesselInfoService.cs b/Myshipping.Core/Service/DjyVesselInfo/DjyVesselInfoService.cs index 1983ec90..83f46acf 100644 --- a/Myshipping.Core/Service/DjyVesselInfo/DjyVesselInfoService.cs +++ b/Myshipping.Core/Service/DjyVesselInfo/DjyVesselInfoService.cs @@ -103,8 +103,8 @@ namespace Myshipping.Core.Service Voyno = x.Voyno, VoynoInside = x.VoynoInside, Vessel = x.Vessel, - ETD = x.ETD, - ATD = x.ATD, + ETD = x.ETD==null?"":Convert.ToDateTime(x.ETD).ToString("yyyy-MM-dd"), + ATD = x.ATD == null ? "" : Convert.ToDateTime(x.ATD).ToString("yyyy-MM-dd"), }).Take(20). ToListAsync();