feixian_weifajianguan/OpenAuth.App/ServiceApp/DroneCaseInfo/Response/CaseProcessStatData.cs

33 lines
1.2 KiB
C#
Raw 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 CaseProcessStatData
{
public int proofread_confirm_new { get; set; }
public int proofread_confirm_drawback { get; set; }
//public int proofread_confirm_sum { get; set; }
public int handle_demolish { get; set; }
public int handle_detain { get; set; }
public int handle_perfection { get; set; }
public int handle_legal { get; set; }
//public int handle_sum { get; set; }
public int audit_demolish { get; set; }
public int audit_detain { get; set; }
public int audit_perfection { get; set; }
public int audit_legal { get; set; }
public int audit_fakeChange { get; set; }
//public int audit_sum { get; set; }
public int archive_demolish { get; set; }
public int archive_detain { get; set; }
public int archive_perfection { get; set; }
public int archive_legal { get; set; }
public int archive_fakeChange { get; set; }
//public int archive_sum { get; set; }
};
}