namespace HL_FristAidPlatform_DTO
{
///
///
///
public class T_Service_FistAid_PersonnelDTO
{
///
///
///
public string GUID { get; set; }
///
///
///
public string Name { get; set; }
///
/// 人员状态 0空闲 1休息 2出车
///
public int CurrentState { get; set; }
///
///
///
public int Gender { get; set; }
///
///
///
public int Role { get; set; }
///
///
///
public long CreationID { get; set; }
///
/// 医院GUID
///
public string HospitalGuid { get; set; }
}
}