TISP_Record.cs 977 B

1234567891011121314151617181920212223242526272829
  1. using System;
  2. using System.Collections.Generic;
  3. using System.ComponentModel.DataAnnotations;
  4. #nullable disable
  5. namespace Ropin.Inspection.Model.Entities
  6. {
  7. public partial class TISP_Record
  8. {
  9. public TISP_Record()
  10. {
  11. TISP_RecordItems = new HashSet<TISP_RecordItem>();
  12. }
  13. [Key]
  14. public Guid C_ID { get; set; } = Guid.NewGuid();
  15. public Guid C_SpotCode { get; set; }
  16. public Guid C_CreateBy { get; set; }
  17. public DateTime D_CreateOn { get; set; }
  18. public Guid? C_LastUpdatedBy { get; set; }
  19. public DateTime? D_LastUpdatedOn { get; set; }
  20. public string C_Status { get; set; }
  21. public virtual TSYS_User C_CreateByNavigation { get; set; }
  22. public virtual TSYS_User C_LastUpdatedByNavigation { get; set; }
  23. public virtual TISP_Spot C_SpotCodeNavigation { get; set; }
  24. public virtual ICollection<TISP_RecordItem> TISP_RecordItems { get; set; }
  25. }
  26. }