123456789101112131415161718192021222324252627282930313233343536 |
- using System;
- using System.ComponentModel.DataAnnotations;
- namespace Znaf.Application.ViewModels
- {
- public class VehicleSaveViewModel
- {
- [Key]
- public string Guid { get; set; }
- public string InfoNo { get; set; }
- public string LicensePlateNo { get; set; }
- public string Brand { get; set; }
- public string Model { get; set; }
- public string Type { get; set; }
- public string Color { get; set; }
- public DateTime? PurDate { get; set; }
- public string OtherInfo { get; set; }
- public string EmployeeNo { get; set; }
- public string EmployeeName { get; set; }
- public string DeptName { get; set; }
- public string FactoryArea { get; set; }
- public string PhoneNumber { get; set; }
- public string JobPositions { get; set; }
- public string ClassSystem { get; set; }
- public string ClassType { get; set; }
- public DateTime? DimissionDate { get; set; }
- public string ParkLocale { get; set; }
- public string ParkCertName { get; set; }
- public DateTime? SubmitDate { get; set; }
- public DateTime? GrantDate { get; set; }
- public string IsOftenDrive { get; set; }
- public string Note { get; set; }
- public string EditUser { get; set; }
- public DateTime EditTime { get; set; }
- }
- }
|