123456789101112131415161718192021222324252627282930313233 |
- using System;
- using System.Collections.Generic;
- using System.ComponentModel.DataAnnotations;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- using System.Xml.Linq;
- namespace Ropin.Inspection.Model.Entities
- {
- public class TMTN_AlarmOrder
- {
- [Key]
- [MaxLength(50)]
- public string C_ID { get; set; }
- [Required]
- public string C_Name { get; set; }
- public string C_PushMsgResultCode { get; set; }
- public string C_MessageCode { get; set; }
- public string C_ExamineBy { get; set; }
- public DateTime? D_ExamineOn { get; set; }
- public string C_Remark { get; set; }
- [Required]
- public string C_CreateBy { get; set; }
- [Required]
- public DateTime D_CreateOn { get; set; }
- public string C_LastUpdatedBy { get; set; }
- public DateTime? D_LastUpdatedOn { get; set; }
- [Required]
- [MaxLength(1)]
- public string C_Status { get; set; } = "1";
- }
- }
|