using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace OpenAuth.App.ServiceApp.MiManager.Response { public class ViolateReportStatistics { public string Id { get; set; } /// /// Desc:监管点名称 /// Default: /// Nullable:True /// public string PointName { get; set; } /// /// Desc:县区名称 /// Default: /// Nullable:True /// public string CountyName { get; set; } /// /// Desc:街镇名称 /// Default: /// Nullable:True /// public string StreetName { get; set; } /// /// Desc:村名 /// Default: /// Nullable:True /// public string CommunityName { get; set; } /// /// Desc:处置时间 /// Default:DateTime.Now /// Nullable:True /// public DateTime? ReportTime { get; set; } /// /// Desc:人员 /// Default: /// Nullable:True /// public string ReporterName { get; set; } /// /// Desc:违法类型名称 /// Default: /// Nullable:True /// public string ViolationTypeName { get; set; } /// /// Desc:矿产种类 /// Default: /// Nullable:True /// public string MineralTypes { get; set; } /// /// Desc:当事人姓名 /// Default: /// Nullable:True /// public string PartyName { get; set; } /// /// 车辆及设备数量 /// public int VechileCount { get; set; } /// /// 现场照片数量 /// public int ImageCount { get; set; } /// /// 其他涉案人员数量 /// public int OtherPersonCount { get; set; } /// /// 当前状态 /// public string CurrentStatusName { get; set; } /// /// 违法上报状态 /// public short? Status { get; set; } } }