using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace OpenAuth.App.ServiceApp.DroneScreenDisplay.Response
{
public class ThematicStatisticsResp
{
///
/// 日期
///
public string Date { get; set; }
///
/// 合法数量
///
public int HFCount { get; set; }
///
/// 违法数量
///
public int WFCount { get; set; }
///
/// 其他数量
///
public int QTCount { get; set; }
///
/// 拆除数量
///
public int CCCount { get; set; }
///
/// 补办数量
///
public int BNCount { get; set; }
}
}