修改返回值类型

Insight
zhangbin 2024-11-19 10:14:46 +08:00
parent 43660eb950
commit 94b4e2a8c7
2 changed files with 5 additions and 6 deletions

View File

@ -35,23 +35,23 @@ namespace OpenAuth.App.ServiceApp.Response
/// <summary>
/// 影像生产
/// </summary>
public string ShpProduction { get; set; }
public int ShpProduction { get; set; }
/// <summary>
/// 解译
/// </summary>
public string ShpInterpretation { get; set; }
public int ShpInterpretation { get; set; }
/// <summary>
/// 研判分析
/// </summary>
public string Judgment { get; set; }
public int Judgment { get; set; }
/// <summary>
/// 图斑推送
/// </summary>
public string Push { get; set; }
public int Push { get; set; }
/// <summary>
/// 费用
/// </summary>
public string Cost { get; set; }
public double Cost { get; set; }
/// <summary>
/// 格式
/// </summary>

View File

@ -47,7 +47,6 @@ namespace OpenAuth.WebApi.Controllers.ServiceControllers
/// <param name="endTime"></param>
/// <returns></returns>
[HttpGet]
[AllowAnonymous]
public async Task<Response<AiShpDataExpenseAccountingTableResp>> GetAiShpDataExpenseAccountingTable(DateTime beginTime, DateTime endTime)
{
Response<AiShpDataExpenseAccountingTableResp> response = new Response<AiShpDataExpenseAccountingTableResp>();