duheng
2024-12-24 a5770e3760d8e966efcc6076c37fdaec72a04bc0
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);
    }
}