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 { /// /// 巡检记录报警 /// 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'; } }