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.
19 lines
459 B
C#
19 lines
459 B
C#
namespace DS.WMS.Core.CarModule.Dtos;
|
|
|
|
public class InternalCarInput
|
|
{
|
|
public string Id { get; set; }
|
|
public string Owner { get; set; } = "";
|
|
|
|
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; } = "";
|
|
} |