From 7079cbb505471a8d3251cac4e27c7a3841f8e656 Mon Sep 17 00:00:00 2001 From: duheng <2784771470@qq.com> Date: 星期三, 04 十二月 2024 22:51:37 +0800 Subject: [PATCH] 修改单独匹配界面 --- BLL/HStation.BLL.Assets.Core/04-bll/12-Comressor/06-CompressorCoefficient/AssetsCompressorCoefficient.cs | 11 ++++++++++- 1 files changed, 10 insertions(+), 1 deletions(-) diff --git a/BLL/HStation.BLL.Assets.Core/04-bll/12-Comressor/06-CompressorCoefficient/AssetsCompressorCoefficient.cs b/BLL/HStation.BLL.Assets.Core/04-bll/12-Comressor/06-CompressorCoefficient/AssetsCompressorCoefficient.cs index 2f75823..b910465 100644 --- a/BLL/HStation.BLL.Assets.Core/04-bll/12-Comressor/06-CompressorCoefficient/AssetsCompressorCoefficient.cs +++ b/BLL/HStation.BLL.Assets.Core/04-bll/12-Comressor/06-CompressorCoefficient/AssetsCompressorCoefficient.cs @@ -1,4 +1,6 @@ -锘縩amespace HStation.BLL +锘縰sing AutoMapper; + +namespace HStation.BLL { /// <summary> /// @@ -39,6 +41,13 @@ return vmoList; } + public async Task<List<Vmo.AssetsCompressorCoefficientVmo>> GetByMainID(long ID) + { + var DtoList = await _cal.GetByMainID(ID); + var vmoList = Dto2Vmos(DtoList); + return vmoList; + } + #endregion Query #region Insert -- Gitblit v1.9.3