2023-03-08 实业增加

This commit is contained in:
2023-03-08 11:45:40 +08:00
parent f3ad764dc8
commit 278225fac4
40 changed files with 5249 additions and 31 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;
}
}
}