CNCEC_SUBQHSE_WUHUAN/SGGL/Model/ZHGL/UnitHazardRegisterItemInput.cs

64 lines
1.5 KiB
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 UnitHazardRegisterItemInput
{
/// <summary>
/// 检查大类0=安全1=质量)
/// </summary>
public string CheckMainType { get; set; }
/// <summary>
/// 检查组/人
/// </summary>
public string CheckTeam { get; set; }
/// <summary>
/// 检查类别
/// </summary>
public string CheckType { get; set; }
/// <summary>
/// 问题描述
/// </summary>
public string Problem { get; set; }
/// <summary>
/// 开始时间
/// </summary>
public DateTime? StartTime { get; set; }
/// <summary>
/// 结束时间
/// </summary>
public DateTime? EndTime { get; set; }
/// <summary>
/// 风险级别
/// </summary>
public string RiskLevel { get; set; }
/// <summary>
/// 状态
/// </summary>
public int? States { get; set; }
/// <summary>
/// 问题整改状态
/// </summary>
public int? ProblemStates { get; set; }
/// <summary>
/// 单位ID权限过滤
/// </summary>
public string UnitId { get; set; }
/// <summary>
/// 项目id
/// </summary>
public string ProjectId { get; set; }
}
}