TISP_Report.cs 809 B

1234567891011121314151617181920212223242526
  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_Report
  8. {
  9. [Key]
  10. public Guid G_ID { get; set; } = Guid.NewGuid();
  11. public string C_StoreCode { get; set; }
  12. public string C_Name { get; set; }
  13. public int I_Type { get; set; }
  14. public string C_GroupName { get; set; }
  15. public DateTime? D_Start { get; set; }
  16. public DateTime? D_End { get; set; }
  17. public DateTime? D_CreateTime { get; set; }
  18. public string C_Data { get; set; }
  19. public string C_Remark { get; set; }
  20. public string C_Status { get; set; }
  21. public virtual TPNT_Store C_StoreCodeNavigation { get; set; }
  22. }
  23. }