feixian_weifajianguan/OpenAuth.App/ServiceApp/DroneScreenDisplay/Response/CaseStatDataPerTown.cs

32 lines
658 B
C#
Raw Permalink Normal View History

2026-02-03 16:00:02 +08:00
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace OpenAuth.App.Response
{
public class CaseStatDataPerTown
{
public CaseStatDataPerTown()
{
ProofreadCount = 0;
HandleCount = 0;
AuditCount = 0;
ArchiveCount = 0;
}
public string TownId { get; set; }
public string TownName { get; set; }
public int ProofreadCount { get; set; }
public int HandleCount { get; set; }
public int AuditCount { get; set; }
public int ArchiveCount { get; set; }
}
}