Shuxia Ning
2024-07-22 952cb084d1f31a1c2634b91d4d03374c359b52da
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
namespace HStation.CAL
{
    /// <summary>
    /// 
    /// </summary>
    public interface IXhsPumpPhartMappingExtensionsStd : IBaseCAL
    {
        /// <summary>
        /// 通过 PumpID 获取
        /// </summary> 
        Task<List<XhsPumpPhartMappingExtensionsStdDto>> GetByPumpID(long PumpID);
 
        /// <summary>
        /// 通过 PumpID 获取默认
        /// </summary> 
        Task<XhsPumpPhartMappingExtensionsStdDto> GetDefaultByPumpID(long PumpID);
 
    }
}