37 lines
898 B
C#
37 lines
898 B
C#
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
|
|
{
|
|
/// <summary>
|
|
/// 日期
|
|
/// </summary>
|
|
public string Date { get; set; }
|
|
/// <summary>
|
|
/// 合法数量
|
|
/// </summary>
|
|
public int HFCount { get; set; }
|
|
/// <summary>
|
|
/// 违法数量
|
|
/// </summary>
|
|
public int WFCount { get; set; }
|
|
/// <summary>
|
|
/// 其他数量
|
|
/// </summary>
|
|
public int QTCount { get; set; }
|
|
/// <summary>
|
|
/// 拆除数量
|
|
/// </summary>
|
|
public int CCCount { get; set; }
|
|
/// <summary>
|
|
/// 补办数量
|
|
/// </summary>
|
|
public int BNCount { get; set; }
|
|
}
|
|
}
|