TISP_RecordAlarm.cs 608 B

123456789101112131415161718192021222324
  1. using System;
  2. using System.Collections.Generic;
  3. using System.ComponentModel.DataAnnotations;
  4. using System.Linq;
  5. using System.Text;
  6. using System.Threading.Tasks;
  7. namespace Ropin.Inspection.Model.Entities
  8. {
  9. /// <summary>
  10. /// 巡检记录报警
  11. /// </summary>
  12. public class TISP_RecordAlarm
  13. {
  14. [Key]
  15. public Guid C_ID { get; set; } = Guid.NewGuid();
  16. [Required]
  17. public Guid C_InspectionRecordCode { get; set; }
  18. [Required]
  19. public Guid C_SpotContentCode { get; set; }
  20. [Required]
  21. public char C_Status { get; set; } = '1';
  22. }
  23. }