duheng
2024-12-04 7079cbb505471a8d3251cac4e27c7a3841f8e656
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
using Yw.CAL;
 
namespace HStation.CAL
{
    /// <summary>
    /// 报警等级
    /// </summary>
    public interface IAssetsExchangerPartMain : IBaseCAL<AddAssetsExchangerPartMainInput, UpdateAssetsExchangerPartMainInput, AssetsExchangerPartMainDto>, IUpdateSorter
    {
        /// <summary>
        /// 通过型号ID 获取
        /// </summary>
        public Task<List<AssetsExchangerPartMainDto>> GetByExchangerMainID(long ID);
 
        public Task<long> InsertEx(AddAssetsExchangerPartMainInput part, List<AddAssetsExchangerPropContentInput> propcontents, AddAssetsExchangerMainAndPartMapInput partmap);
 
        public Task<bool> UpdateEx(UpdateAssetsExchangerPartMainInput Exchangerpart, List<UpdateAssetsExchangerPropContentInput> updateAssetsExchangerPropContentDtos);
 
        public Task<bool> DeleteEx(long ID);
    }
}