using System;
using System.ComponentModel;
using System.ComponentModel.DataAnnotations;
using System.ComponentModel.DataAnnotations.Schema;
using CK.SCP.Models.Base;
using CK.SCP.Models.Enums;

namespace CK.SCP.Models.ExchangeCenterTables
{
    [Description("깃硫관陋깊")]
    public class TES_PACK : TED_BASE,ITaskTable
    {
        [Description("뒈듐")]
        [StringLength(50)]
        public string Site { get; set; }

        [Description("膠죕뵀")]
        [StringLength(50)]
        public string PartCode { get; set; }

        [Description("데貫")]
        [StringLength(50)]
        public string Um { get; set; }

        [Description("구痰셕좆데貫")]
        [StringLength(50)]
        public string AlternateUm { get; set; }

        [Description("데貫뻣炬凜綾")]
        public int UmConversion { get; set; }


        [Key]
        public Guid GUID { get; set; } = Guid.NewGuid();

        [DatabaseGenerated(DatabaseGeneratedOption.Identity)]
        public int UID { get; set; }

        [Description("눼쉔훙")]
        [StringLength(50)]
        public string CreateUser { get; set; }

        [Description("눼쉔珂쇌")]
        public DateTime CreateTime { get; set; }


        [Description("구鬧")]
        public string Remark { get; set; }

        [Description("훨蛟긍뵀")]
        public Guid TaskID { get; set; }

        [Description("츱즈잚謹")]
        [StringLength(50)]
        public string CommandType { get; set; }

        public Guid DataID { get; set; }

        [Description("堵")]
        [StringLength(50)]
        public string Domain { get; set; }
    }
}