33 lines
653 B
C#
33 lines
653 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace HL_FristAidPlatform_DTO
|
|
{
|
|
public class HazardClassificationDTO
|
|
{
|
|
/// <summary>
|
|
/// 时间
|
|
/// </summary>
|
|
public string TimeDate { get; set; }
|
|
|
|
/// <summary>
|
|
/// 低危数
|
|
/// </summary>
|
|
public int HighRisk0 { get; set; }
|
|
|
|
|
|
/// <summary>
|
|
/// 高危数
|
|
/// </summary>
|
|
public int HighRisk1 { get; set; }
|
|
|
|
/// <summary>
|
|
/// 中危数
|
|
/// </summary>
|
|
public int HighRisk2 { get; set; }
|
|
}
|
|
}
|