TMTN_AlarmShadowRecord.cs 621 B

123456789101112131415161718192021
  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. public class TMTN_AlarmShadowRecord
  10. {
  11. [Key]
  12. public string C_ID { get; set; }
  13. public string C_PushMsgResultCode { get; set; }
  14. public string C_RecordUrl { get; set; }
  15. public string C_Type { get; set; }
  16. public string C_CameraServiceType { get; set; }
  17. public string C_CameraCode { get; set; }
  18. public string C_DevStoreCode { get; set; }
  19. }
  20. }