This commit is contained in:
2026-03-06 17:58:48 +08:00
parent 393e451064
commit adedb7e83d
102 changed files with 13691 additions and 271 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; }
}
}