1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
| using Yw.CAL.HttpClient;
|
| namespace HStation.CAL.HttpClient
| {
| /// <summary>
| ///
| /// </summary>
| public class XhsProject : BaseCAL_Paras_Flags_TagName_Sorter_UseStatus<AddXhsProjectInput, UpdateXhsProjectInput, XhsProjectDto>, IXhsProject
| {
| protected override string Prefix
| {
| get { return $"{HStation.BLL.Xhs.ConfigHelper.HttpUrl}/Xhs/Project"; }
| }
|
| public Task<bool> DeleteEx(long ID)
| {
| return default;
| }
|
| public async Task<long> InsertEx(AddXhsProjectInput projectInput, AddXhsProjectItemInput itemInput, AddXhsProjectItemModelInput modelInput, AddXhsProjectItemModelMapInput MapInput)
| {
| // return await GetUrl("InsertEx@V1.0").Post<long>(projectInput, itemInput, modelInput, MapInput);
| return default;
| }
|
| public Task<bool> UpdateEx(UpdateXhsProjectInput projectInput, UpdateXhsProjectItemInput itemInput)
| {
| throw new NotImplementedException();
| }
| }
| }
|
|