临时用电方案、企业大检查

This commit is contained in:
2026-03-06 12:58:28 +08:00
parent 170f26497c
commit 26122b9376
43 changed files with 6692 additions and 12 deletions
@@ -0,0 +1,30 @@
using System;
namespace Model
{
/// <summary>
/// 企业级检查查询条件
/// </summary>
public class UnitHazardRegisterInput
{
/// <summary>
/// 检查大类(0=安全,1=质量)
/// </summary>
public string CheckMainType { get; set; }
/// <summary>
/// 搜索文本
/// </summary>
public string SearchText { get; set; }
/// <summary>
/// 检查类别
/// </summary>
public string CheckType { get; set; }
/// <summary>
/// 项目ID(权限过滤)
/// </summary>
public string ProjectId { get; set; }
}
}