对比新文件 |
| | |
| | | 锘縰sing 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 class ProjectInputs |
| | | { |
| | | public AddXhsProjectInput ProjectInput { get; set; } |
| | | public AddXhsProjectItemInput ItemInput { get; set; } |
| | | public AddXhsProjectItemModelInput ModelInput { get; set; } |
| | | public AddXhsProjectItemModelMapInput MapInput { get; set; } |
| | | } |
| | | |
| | | public async Task<long> InsertEx(AddXhsProjectInput projectInput, AddXhsProjectItemInput itemInput, AddXhsProjectItemModelInput modelInput, AddXhsProjectItemModelMapInput MapInput) |
| | | { |
| | | var posttext = new ProjectInputs |
| | | { |
| | | ItemInput = itemInput, |
| | | ModelInput = modelInput, |
| | | MapInput = MapInput, |
| | | ProjectInput = projectInput, |
| | | }; |
| | | return await GetUrl("InsertEx@V1.0").Post<long>(posttext); |
| | | } |
| | | |
| | | public Task<bool> UpdateEx(UpdateXhsProjectInput projectInput, UpdateXhsProjectItemInput itemInput) |
| | | { |
| | | throw new NotImplementedException(); |
| | | } |
| | | } |
| | | } |