SGGL_JT/SUBQHSE/Model/APIItem/HSSE/Check_CheckSpecialDetailDto.cs

72 lines
1.7 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;
using System.Collections.Generic;
using System.ComponentModel.DataAnnotations;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Model
{
/// <summary>
/// 专项检查子表
/// </summary>
public class Check_CheckSpecialDetailDto
{
/// <summary>
/// 单位工程名称
/// </summary>
public string CheckArea { get; set; }
/// <summary>
/// 受检单位名称
/// </summary>
public string UnitId { get; set; }
/// <summary>
/// HSE经理身份证号码
/// </summary>
public string HSEManage { get; set; }
/// <summary>
/// 问题描述
/// </summary>
public string Unqualified { get; set; }
/// <summary>
/// 问题类型全称
/// </summary>
public string CheckContent { get; set; }
/// <summary>
/// 风险级别0-低1-一般2-较高3-高)
/// </summary>
public string RiskLevel { get; set; }
/// <summary>
/// 处理结果true 已整改 false未整改
/// </summary>
public bool? CompleteStatus { get; set; }
/// <summary>
/// 处理方式0-当场纠正1-口头警告)
/// </summary>
public string RectifyOpinion { get; set; }
/// <summary>
/// 限时日期
/// </summary>
public DateTime? LimitedDate { get; set; }
/// <summary>
/// 整改要求
/// </summary>
public string Suggestions { get; set; }
/// <summary>
/// 问题图片base64
/// </summary>
public string ImgUrl { get; set; }
}
}