using System;
using System.Collections.Generic;
using System.ComponentModel.DataAnnotations;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Xml.Linq;

namespace Ropin.Inspection.Model.Entities
{
    public class TDEV_DevBoxMigrate
    {
        [Key]
        [MaxLength(50)]
        public string C_ID { get; set; }
        [MaxLength(100)]
        [Required]
        public string C_Name { get; set; }
        [MaxLength(50)]
        [Required]
        public string C_DevBoxCode { get; set; }

        [MaxLength(50)]
        [Required]
        public string C_LastStoreCode { get; set; }

        [MaxLength(50)]
        [Required]
        public string C_CurrentStoreCode { get; set; }

        [Display(Name = "备注")]
        [MaxLength(1024)]
        public string C_Remark { get; set; }
        [Display(Name = "创建人")]
        [Required]
        public Guid C_CreateBy { get; set; }
        [Display(Name = "创建时间")]
        [Required]
        public DateTime D_CreateOn { get; set; }
    }
}