TISP_SpotUser.cs 718 B

1234567891011121314151617181920212223
  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_SpotUser
  8. {
  9. [Key]
  10. public Guid C_ID { get; set; } = Guid.NewGuid();
  11. public Guid C_UserCode { get; set; }
  12. public Guid C_SpotCode { get; set; }
  13. public string C_Remark { get; set; }
  14. public Guid C_CreateBy { get; set; }
  15. public DateTime D_CreateOn { get; set; }
  16. public virtual TSYS_User C_CreateByNavigation { get; set; }
  17. public virtual TISP_Spot C_SpotCodeNavigation { get; set; }
  18. public virtual TSYS_User C_UserCodeNavigation { get; set; }
  19. }
  20. }