You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

29 lines
535 B
C#

namespace DS.WMS.Core.CarModule.Dtos;
public class InternalCarViewModel
{
public string Id { get; set; }
/// <summary>
///
/// </summary>
public string Owner { get; set; }
/// <summary>
///
/// </summary>
public string PlateNo { get; set; }
public string PhoneNo { get; set; }
public DateTime? StartTime { get; set; }
public DateTime? EndTime { get; set; }
public int? Status { get; set; }
public string Note { get; set; }
public DateTime AddTime { get; set; }
}