lixiaojun
2024-07-23 a99a3974be061a99d11306e75d9820de59cdc374
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
namespace HStation.BLL
{
    /// <summary>
    /// 
    /// </summary>
    public class XhsPumpPhartMappingExtensionsStd : HStation.CAL.IXhsPumpPhartMappingExtensionsStd
    {
        private readonly HStation.CAL.IXhsPumpPhartMappingExtensionsStd _cal = CALCreateHelper.CreateCAL<HStation.CAL.IXhsPumpPhartMappingExtensionsStd>();
 
        /// <summary>
        /// 通过 PumpID 获取
        /// </summary> 
        public async Task<List<XhsPumpPhartMappingExtensionsStdDto>> GetByPumpID(long PumpID)
        {
            return await _cal.GetByPumpID(PumpID);
        }
 
        /// <summary>
        /// 通过 PumpID 获取默认
        /// </summary> 
        public async Task<XhsPumpPhartMappingExtensionsStdDto> GetDefaultByPumpID(long PumpID)
        {
            return await _cal.GetDefaultByPumpID(PumpID);
        }
 
 
    }
}