123456789101112131415161718192021222324252627282930313233343536 |
- using System;
- using System.Collections.Generic;
- using System.ComponentModel.DataAnnotations;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- namespace Ropin.Inspection.Model.Entities
- {
- public class TVMC_Camera
- {
- [Key]
- public string C_ID { get; set; }
- public string C_Name { get; set; }
- public string C_CameraNo { get; set; }
- public string C_QRCode { get; set; }
- public string C_MachineCode { get; set; }
- public DateTime? D_ProdDate { get; set; }
- public string C_CameraTempCode { get; set; }
- public string C_StoreCode { get; set; }
- public string C_Type { get; set; }
- public string C_SnapURL { get; set; }
- public string C_VideoURL { get; set; }
- public string C_M3u8URL { get; set; }
- public string C_Serial { get; set; }
- public string C_CameraCode { get; set; }
- public int? I_Sort { get; set; }
- public string C_Remark { get; set; }
- public string C_CreateBy { get; set; }
- public DateTime D_CreateOn { get; set; }
- public string C_LastUpdatedBy { get; set; }
- public DateTime? D_LastUpdatedOn { get; set; }
- public string C_RunStatus { get; set; }
- public string C_Status { get; set; }
- }
- }
|