123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657 |
- using MySqlX.XDevAPI.Relational;
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- using static System.Formats.Asn1.AsnWriter;
- namespace Ropin.Inspection.Model.SearchModel.VMC
- {
- public class VmcCameraSearch : BaseSearchModel
- {
- public string C_ID { get; set; }
- public string C_Name { get; set; }
- public string C_CameraNo { get; set; }
- public string C_CameraTempCode { get; set; }
- public string C_StoreCode { get; set; }
- public string C_OrgCode { get; set; }
- public string C_DevCode { get; set; }
- public string C_Type { get; set; }
- public string C_RunStatus { get; set; }
- public string C_Status { get; set; }
- public string VideoStartData { get; set; }
- public string VideoEndData { get; set; }
- }
- public class VmcCameraMigrateSearch : BaseSearchModel
- {
- public string C_CameraCode { get; set; }
- public string C_Name { get; set; }
- }
- public class VmcDevSearch : BaseSearchModel
- {
- public string C_Status { get; set; }
- public string C_CameraCode { get; set; }
- public string C_DevStoreCode { get; set; }
- }
- public class LiveFBSSearch
- {
- public string C_Serial { get; set; }
- public string C_CameraCode { get; set; }
- public bool Download { get; set; }=false;
- public int DownloadSpeed { get; set; } = 4;
- public string VideoStartData { get; set; }
- public string VideoEndData { get; set; }
- public string StreamId { get; set; }
- }
- public class LiveGBSPlayControl
- {
- public string StreamId { get; set; }
- public string Command { get; set; }
-
- public string Range { get; set; } = "now";
-
- public int Scale { get; set; } = 2;
- }
- }
|