20220315 代码初始化上传

This commit is contained in:
2022-03-15 17:36:38 +08:00
commit 9dc8a7e05d
9501 changed files with 2066431 additions and 0 deletions
+56
View File
@@ -0,0 +1,56 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Model
{
public class CheckItem
{
/// <summary>
/// 部门
/// </summary>
public string Depart
{
get;
set;
}
/// <summary>
/// 本月发出整改项
/// </summary>
public string ThisRectifyNum
{
get;
set;
}
/// <summary>
/// 本月关闭整改项
/// </summary>
public string ThisOKRectifyNum
{
get;
set;
}
/// <summary>
/// 累计发出整改项
/// </summary>
public string TotalRectifyNum
{
get;
set;
}
/// <summary>
/// 累计关闭整改项
/// </summary>
public string TotalOKRectifyNum
{
get;
set;
}
}
}