2023-03-07 增加实业数据编辑

This commit is contained in:
2023-03-07 23:01:04 +08:00
parent 79c311a870
commit 3f158f1a70
38 changed files with 5390 additions and 4 deletions
@@ -0,0 +1,47 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Model
{
public class NewSYHSEDataHiddenDangerCheckItem
{
/// <summary>
/// ID
/// </summary>
public string Id
{
get;
set;
}
/// <summary>
/// 隐患名称
/// </summary>
public string HiddenDangerName
{
get;
set;
}
/// <summary>
/// 当日总数
/// </summary>
public int TotalNum
{
get;
set;
}
/// <summary>
/// 当日整改数
/// </summary>
public int OKNum
{
get;
set;
}
}
}