using System;
using System.Collections.Generic;
using System.ComponentModel.DataAnnotations;
using System.ComponentModel.DataAnnotations.Schema;
using Microsoft.EntityFrameworkCore;

#nullable disable

namespace Ropin.Inspection.Model.Entities
{
    [Table("TAIC_DevAIBox")]
    public partial class TaicDevAibox
    {
        [Key]
        [Column("C_ID", TypeName = "varchar(50)")]
        public string CId { get; set; }
        [Required]
        [Column("C_AIBoxCode", TypeName = "varchar(50)")]
        public string CAiboxCode { get; set; }
        [Required]
        [Column("C_CameraCode", TypeName = "varchar(50)")]
        public string CCameraCode { get; set; }
        [Required]
        [Column("C_CreateBy", TypeName = "varchar(50)")]
        public string CCreateBy { get; set; }
        [Column("D_CreateOn", TypeName = "datetime")]
        public DateTime DCreateOn { get; set; }
        [Required]
        [Column("C_Creator", TypeName = "varchar(50)")]
        public string CCreator { get; set; }
    }
}