StableVersion4.3/HL_FristAidPlatform_DTO/Service/GroupInjuryDTO.cs

49 lines
1.1 KiB
C#
Raw Blame History

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace HL_FristAidPlatform_DTO
{
public class GroupInjuryDTO
{
/// <summary>
///
/// </summary>
public string HospitalGuid { get; set; }
/// <summary>
/// 发病地址
/// </summary>
public string AttackAddress { get; set; }
/// <summary>
/// 人数
/// </summary>
public int count { get; set; }
/// <summary>
/// 群伤事件
/// </summary>
public string EventID { get; set; }
/// <summary>
/// 事件名称
/// </summary>
public string EventName { get; set; }
/// <summary>
/// 创建人编号
/// 对应卒中接口文档人口学信息表ArchivesaLocalUser
/// </summary>
public long CreatorID { get; set; }
/// <summary>
/// 所属模块ID
/// </summary>
public long SystemModuleID { get; set; }
}
}