VehicleViewModel.cs 1.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. using System;
  2. using System.ComponentModel.DataAnnotations;
  3. namespace Znaf.Application.ViewModels
  4. {
  5. /// <summary>
  6. /// 车辆ViewModel
  7. /// </summary>
  8. public class VehicleViewModel
  9. {
  10. [Key]
  11. [Required]
  12. [MaxLength(50)]
  13. public string Guid { get; set; }
  14. public string InfoNo { get; set; }
  15. public string LicensePlateNo { get; set; }
  16. public string Brand { get; set; }
  17. public string Model { get; set; }
  18. public string Type { get; set; }
  19. public string Color { get; set; }
  20. public DateTime? PurDate { get; set; }
  21. public string OtherInfo { get; set; }
  22. public string EmployeeNo { get; set; }
  23. public string EmployeeName { get; set; }
  24. public string DeptName { get; set; }
  25. public string FactoryArea { get; set; }
  26. public string PhoneNumber { get; set; }
  27. public string JobPositions { get; set; }
  28. public string ClassSystem { get; set; }
  29. public string ClassType { get; set; }
  30. public DateTime? DimissionDate { get; set; }
  31. public string ParkLocale { get; set; }
  32. public string ParkCertName { get; set; }
  33. public DateTime? SubmitDate { get; set; }
  34. public DateTime? GrantDate { get; set; }
  35. public string IsOftenDrive { get; set; }
  36. public string Note { get; set; }
  37. public string EditUser { get; set; }
  38. public DateTime EditTime { get; set; }
  39. }
  40. }