You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

29 lines
643 B

1 year ago
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; }
}
}