TispInspectionWorkOrder.cs 941 B

123456789101112131415161718192021222324252627
  1. using System;
  2. using System.Collections.Generic;
  3. #nullable disable
  4. namespace Ropin.Inspection.Model.Entities
  5. {
  6. public partial class TispInspectionWorkOrder
  7. {
  8. public string CId { get; set; }
  9. public string CName { get; set; }
  10. public string CNumber { get; set; }
  11. public string CDevOpsPlanCode { get; set; }
  12. public string CSpotCode { get; set; }
  13. public string CDevStoreCode { get; set; }
  14. public DateTime? DPlanStartDate { get; set; }
  15. public DateTime? DPlanEndDate { get; set; }
  16. public string CExamineBy { get; set; }
  17. public DateTime? DExamineOn { get; set; }
  18. public string CRemark { get; set; }
  19. public string CCreateBy { get; set; }
  20. public DateTime DCreateOn { get; set; }
  21. public Guid? CLastUpdatedBy { get; set; }
  22. public DateTime? DLastUpdatedOn { get; set; }
  23. public string CStatus { get; set; }
  24. }
  25. }