TVMC_Camera.cs 1.3 KB

123456789101112131415161718192021222324252627282930313233343536
  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 TVMC_Camera
  10. {
  11. [Key]
  12. public string C_ID { get; set; }
  13. public string C_Name { get; set; }
  14. public string C_CameraNo { get; set; }
  15. public string C_QRCode { get; set; }
  16. public string C_MachineCode { get; set; }
  17. public DateTime? D_ProdDate { get; set; }
  18. public string C_CameraTempCode { get; set; }
  19. public string C_StoreCode { get; set; }
  20. public string C_Type { get; set; }
  21. public string C_SnapURL { get; set; }
  22. public string C_VideoURL { get; set; }
  23. public string C_M3u8URL { get; set; }
  24. public string C_Serial { get; set; }
  25. public string C_CameraCode { get; set; }
  26. public int? I_Sort { get; set; }
  27. public string C_Remark { get; set; }
  28. public string C_CreateBy { get; set; }
  29. public DateTime D_CreateOn { get; set; }
  30. public string C_LastUpdatedBy { get; set; }
  31. public DateTime? D_LastUpdatedOn { get; set; }
  32. public string C_RunStatus { get; set; }
  33. public string C_Status { get; set; }
  34. }
  35. }