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.
28 lines
643 B
28 lines
643 B
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; }
|
|
}
|
|
}
|
|
|