123456789101112131415161718192021222324252627 |
- using System;
- using System.Collections.Generic;
- #nullable disable
- namespace Ropin.Inspection.Model.Entities
- {
- public partial class TispInspectionWorkOrder
- {
- public string CId { get; set; }
- public string CName { get; set; }
- public string CNumber { get; set; }
- public string CDevOpsPlanCode { get; set; }
- public string CSpotCode { get; set; }
- public string CDevStoreCode { get; set; }
- public DateTime? DPlanStartDate { get; set; }
- public DateTime? DPlanEndDate { get; set; }
- public string CExamineBy { get; set; }
- public DateTime? DExamineOn { get; set; }
- public string CRemark { get; set; }
- public string CCreateBy { get; set; }
- public DateTime DCreateOn { get; set; }
- public Guid? CLastUpdatedBy { get; set; }
- public DateTime? DLastUpdatedOn { get; set; }
- public string CStatus { get; set; }
- }
- }
|