修改返回值类型
parent
43660eb950
commit
94b4e2a8c7
|
|
@ -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>
|
||||
|
|
|
|||
|
|
@ -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>();
|
||||
|
|
|
|||
Loading…
Reference in New Issue