using System.ComponentModel;
using System.ComponentModel.DataAnnotations;
using System.ComponentModel.DataAnnotations.Schema;

namespace CK.SCP.Models.ScpEntity
{
    public class V_TA_VENDER
    {
        [Key]
        [StringLength(50)]
        public string VendId { get; set; }
        
        [StringLength(50)]
        public string VendName { get; set; }

        [StringLength(50)]
        public string Site { get; set; }

        [NotMapped]
        public string ShippedQty { get; set; }

        [NotMapped]
        public string ArriveQty { get; set; }

        [NotMapped]
        public string Promptness { get; set; }
    }
}