24 lines
527 B
C#
24 lines
527 B
C#
namespace HL_FristAidPlatform_Help
|
|
{
|
|
/// <summary>
|
|
///
|
|
/// </summary>
|
|
public class UpdateDrvingpPersonnelModel
|
|
{
|
|
/// <summary>
|
|
/// 出警任务GUID
|
|
/// </summary>
|
|
public string GUID { get; set; }
|
|
|
|
/// <summary>
|
|
/// 出车人员GUID
|
|
/// </summary>
|
|
public string DrvingUserGUID { get; set; }
|
|
|
|
/// <summary>
|
|
/// 人员类型 0司机 1医生 2护士
|
|
/// </summary>
|
|
public int Type { get; set; } = -1;
|
|
}
|
|
}
|