123456789101112131415161718192021222324 |
- using System;
- using System.Collections.Generic;
- using System.ComponentModel.DataAnnotations;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- namespace Ropin.Inspection.Model.Entities
- {
- /// <summary>
- /// 巡检记录报警
- /// </summary>
- public class TISP_RecordAlarm
- {
- [Key]
- public Guid C_ID { get; set; } = Guid.NewGuid();
- [Required]
- public Guid C_InspectionRecordCode { get; set; }
- [Required]
- public Guid C_SpotContentCode { get; set; }
- [Required]
- public char C_Status { get; set; } = '1';
- }
- }
|