1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
| using HStation.Dto;
| using Yw.CAL;
|
| namespace HStation.CAL
| {
| /// <summary>
| ///
| ///</summary>
| public interface IAssetsPackagePartMain : IBaseCAL<AddAssetsPackagePartMainInput, UpdateAssetsPackagePartMainInput, AssetsPackagePartMainDto>, IUpdateCode, IUpdateSorter
| {
| /// <summary>
| /// 通过型号ID 获取
| /// </summary>
| public Task<List<AssetsPackagePartMainDto>> GetByPackageMainID(long ID);
|
| public Task<long> InsertEx(AddAssetsPackagePartMainInput part, List<AddAssetsPackagePropContentInput> propcontents, AddAssetsPackageMainAndPartMappingInput partmap);
|
| public Task<bool> UpdateEx(UpdateAssetsPackagePartMainInput Packagepart, List<UpdateAssetsPackagePropContentInput> updateAssetsPackagePropContentDtos);
|
| public Task<bool> DeleteEx(long ID);
| }
| }
|
|