初始化仓库

This commit is contained in:
2025-02-12 09:27:47 +08:00
commit 4c82d32543
12386 changed files with 3017395 additions and 0 deletions
@@ -0,0 +1,70 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace Model
{
/// <summary>
/// 赛鼎月报信息项 --9、项目HSE检查统计-停工令
/// </summary>
public class SeDinMonthReport9ItemStoppage
{
/// <summary>
/// ID
/// </summary>
public string MonthReport9ItemId
{
get;
set;
}
/// <summary>
/// 月报ID
/// </summary>
public string MonthReportId
{
get;
set;
}
/// <summary>
/// 单位名称
/// </summary>
public string UnitName
{
get;
set;
}
/// <summary>
/// 下发数量(本月)
/// </summary>
public int? IssuedMonth
{
get;
set;
}
/// <summary>
/// 停工天数(本月)
/// </summary>
public int? StoppageMonth
{
get;
set;
}
/// <summary>
/// 下发数量(累计)
/// </summary>
public int? IssuedTotal
{
get;
set;
}
/// <summary>
/// 停工天数(累计)
/// </summary>
public int? StoppageTotal
{
get;
set;
}
}
}