33 lines
1.2 KiB
C#
33 lines
1.2 KiB
C#
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; }
|
|
};
|
|
}
|