2026-03-06 17:58:48 +08:00
|
|
|
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; }
|
2026-03-23 14:33:54 +08:00
|
|
|
/// <summary>
|
|
|
|
|
/// 受检单位Id
|
|
|
|
|
/// </summary>
|
|
|
|
|
public string CheckUnitId { get; set; }
|
|
|
|
|
|
2026-03-06 17:58:48 +08:00
|
|
|
}
|
|
|
|
|
}
|