TaicTemplateModel.cs 3.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889
  1. using System;
  2. using System.Collections.Generic;
  3. using System.ComponentModel.DataAnnotations.Schema;
  4. using System.ComponentModel.DataAnnotations;
  5. using System.Linq;
  6. using System.Text;
  7. using System.Threading.Tasks;
  8. namespace Ropin.Inspection.Model
  9. {
  10. public class TaicTemplateModel //: BaseViewModel
  11. {
  12. public string CId { get; set; }
  13. public string CName { get; set; }
  14. public string CQrcode { get; set; }
  15. public string CMarker { get; set; }
  16. public string CProdArea { get; set; }
  17. public string CManufacturer { get; set; }
  18. public string CImagePath { get; set; }
  19. public string CIconPath { get; set; }
  20. public string CThreeDpath { get; set; }
  21. public string CParameter { get; set; }
  22. public string CContacts { get; set; }
  23. public string CContactPhone { get; set; }
  24. public string COfficialWebsiteUrl { get; set; }
  25. public int? IValiDays { get; set; }
  26. public int? I_Sort { get; set; }
  27. public string CRemark { get; set; }
  28. public string CCreateBy { get; set; }
  29. public DateTime? DCreateOn { get; set; }
  30. public string CLastUpdatedBy { get; set; }
  31. public DateTime? DLastUpdatedOn { get; set; }
  32. public int CStatus { get; set; }
  33. }
  34. public class TaicTemplateSearchModel : BaseSearchModel
  35. {
  36. public string Name { get; set; }
  37. }
  38. public class AiBoxModel //: BaseViewModel
  39. {
  40. public string CId { get; set; }
  41. public string CName { get; set; }
  42. public string CAiboxNo { get; set; }
  43. public string CQrcode { get; set; }
  44. public string CMachineCode { get; set; }
  45. public DateTime DProdDate { get; set; }
  46. public string CAiboxTemplateCode { get; set; }
  47. public string CStoreCode { get; set; }
  48. public string CCfgUrl { get; set; }
  49. public int? I_Sort { get; set; }
  50. public string CRemark { get; set; }
  51. public string CCreateBy { get; set; }
  52. public DateTime DCreateOn { get; set; }
  53. public string CLastUpdatedBy { get; set; }
  54. public DateTime? DLastUpdatedOn { get; set; }
  55. public int CRunStatus { get; set; }
  56. public int CStatus { get; set; }
  57. }
  58. public class AiBoxSearchModel : BaseSearchModel
  59. {
  60. [Required]
  61. public string CStoreCode { get; set; }
  62. public int? CStatus { get; set; }
  63. public string Name { get; set; }
  64. }
  65. public class DevAiboxModel
  66. {
  67. public string CAiboxCode { get; set; }
  68. public List<string> CCameraCode { get; set; }
  69. }
  70. public class AlarmDataModel
  71. {
  72. public string? deviceNo { get; set; }
  73. public string? panoramaId { get; set; }
  74. public string? panoramaUrl { get; set; }
  75. public string? alarmType { get; set; }
  76. public string? captureTime { get; set; }
  77. public string? panoramaDataId { get; set; }
  78. public string? snapshotDataId { get; set; }
  79. public string? relatedSnapshotDataId { get; set; }
  80. }
  81. }