|
@@ -145,6 +145,16 @@ namespace XdCxRhDW.TaskServer.Task
|
|
|
XdSnr = xd.Snr,
|
|
|
SxDfo = sx.Df,
|
|
|
SxSnr = sx.Snr,
|
|
|
+ CheckRes = new CheckResDto()
|
|
|
+ {
|
|
|
+ FileName = deitem.File1,
|
|
|
+ ModRate = deitem.ModRate,
|
|
|
+ ModType = deitem.ModType,
|
|
|
+ SmpCount = deitem.Length,
|
|
|
+ SmpStart = deitem.Start,
|
|
|
+ UserName = deitem.UserName,
|
|
|
+ PosCheckType = deitem.DmcType.GetEnumByDisplayName<EnumPosCheckTypeDto>(),
|
|
|
+ }
|
|
|
};
|
|
|
|
|
|
await X2D1NoXlAsync(x2D1);
|
|
@@ -195,7 +205,7 @@ namespace XdCxRhDW.TaskServer.Task
|
|
|
LogHelper.Error($"历史任务获取天线信息失败");
|
|
|
return infos;
|
|
|
}
|
|
|
- infos.Add(result.data.recTx==null? new TxInfo() { TxType = EnumTxType.Rec }: result.data.recTx);
|
|
|
+ infos.Add(result.data.recTx == null ? new TxInfo() { TxType = EnumTxType.Rec } : result.data.recTx);
|
|
|
infos.Add(result.data.cdbTx == null ? new TxInfo() { TxType = EnumTxType.Cdb } : result.data.cdbTx);
|
|
|
infos.Add(result.data.cxTx == null ? new TxInfo() { TxType = EnumTxType.Cx } : result.data.cxTx);
|
|
|
infos.Add(result.data.refLoc == null ? new TxInfo() { TxType = EnumTxType.Ref } : result.data.refLoc);
|