Shuxia Ning
2025-02-26 04355e18d030ab55832639a58ccb87fbbfe2ef80
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
using Yw.CAL;
 
namespace PBS.CAL.WE
{
    /// <summary>
    /// 用水器具映射
    ///</summary>
    public interface IUtensilMapping : IBaseCAL<AddUtensilMappingInput, UpdateUtensilMappingInput, UtensilMappingDto>, IUpdateSorter
    {
        /// <summary>
        /// 通过  ItemID 获取所有
        /// </summary>
        public Task<List<UtensilMappingDto>> GetByItemID(long ItemID);
 
        /// <summary>
        /// 通过  ItemID 删除所有
        /// </summary>
        public Task<bool> DeleteAllByItemID(long ItemID);
    }
}