16 lines
313 B
C#
16 lines
313 B
C#
|
namespace HL_FristAidPlatform_DTO
|
|||
|
{
|
|||
|
public class DriverHandoverDTO
|
|||
|
{
|
|||
|
/// <summary>
|
|||
|
/// 任务GUID
|
|||
|
/// </summary>
|
|||
|
public string TaskGUID { get; set; }
|
|||
|
|
|||
|
/// <summary>
|
|||
|
/// 登陆用户
|
|||
|
/// </summary>
|
|||
|
public long UserId { get; set; }
|
|||
|
}
|
|||
|
}
|