using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace OpenAuth.App.ServiceApp.Response
{
public class AiShpDataExpenseAccountingResp
{
///
/// 序号
///
public int Number { get; set; }
///
/// 日期
///
public string ShapDate { get; set; }
///
/// 面积
///
public decimal AreaNum { get; set; }
///
/// 数量
///
public int? ShpCount { get; set; }
///
/// 下发数量
///
public int IssuedCount { get; set; }
///
/// 文件夹
///
public string FolderPath { get; set; }
///
/// 影像生产
///
public int ShpProduction { get; set; }
///
/// 解译
///
public int ShpInterpretation { get; set; }
///
/// 研判分析
///
public int Judgment { get; set; }
///
/// 图斑推送
///
public int Push { get; set; }
///
/// 费用
///
public double Cost { get; set; }
///
/// 格式
///
public string Format { get; set; }
///
/// 备注
///
public string Remark { get; set; }
}
public class AiShpDataExpenseAccountingTableResp
{
public List RespData { get; set; }
public int TotalShpCount { get; set; }
public decimal TotalShpArea { get; set; }
public int TotalShpProduction { get; set; }
public int TotalShpInterpretation { get; set; }
public int TotalJudgment { get; set; }
public int TotalPush { get; set; }
public int TotalCost { get; set; }
public int TotalIssuedCount { get; set; }
}
}