CNCEC_SUBQHSE_WUHUAN/SGGL/Model/ZHGL/UnitHazardRegisterInput.cs

31 lines
672 B
C#
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

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; }
}
}