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_AIBoxMigrate")] public partial class TaicAiboxMigrate { [Key] [Column("C_ID", TypeName = "varchar(50)")] public string CId { get; set; } [Required] [Column("C_Name", TypeName = "varchar(100)")] public string CName { get; set; } [Required] [Column("C_AIBoxCode", TypeName = "varchar(50)")] public string CAiboxCode { get; set; } [Required] [Column("C_LastStoreCode", TypeName = "varchar(50)")] public string CLastStoreCode { get; set; } [Required] [Column("C_CurrentStoreCode", TypeName = "varchar(50)")] public string CCurrentStoreCode { get; set; } [Column("C_Remark", TypeName = "varchar(1024)")] public string CRemark { get; set; } [Required] [Column("C_CreateBy", TypeName = "varchar(50)")] public string CCreateBy { get; set; } [Required] [Column("D_CreateOn", TypeName = "varchar(100)")] public string DCreateOn { get; set; } } }