using System; using System.ComponentModel.DataAnnotations; namespace CK.SCP.Models.ScpEntity { public partial class xxqad_vd_mstr { [Key] public int xxqad_vd_uid { get; set; } [Required(AllowEmptyStrings = true)] [StringLength(50)] public string xxqad_vd_seq { get; set; } [Required(AllowEmptyStrings = true)] [StringLength(8)] public string xxqad_vd_addr { get; set; } [Required(AllowEmptyStrings = true)] [StringLength(8)] public string xxqad_vd_domain { get; set; } [Required(AllowEmptyStrings = true)] [StringLength(100)] public string xxqad_vd_name { get; set; } [Required(AllowEmptyStrings = true)] [StringLength(100)] public string xxqad_vd_line1 { get; set; } [StringLength(100)] public string xxqad_vd_line2 { get; set; } [StringLength(100)] public string xxqad_vd_line3 { get; set; } [Required(AllowEmptyStrings = true)] [StringLength(50)] public string xxqad_vd_country { get; set; } [StringLength(50)] public string xxqad_vd_city { get; set; } [StringLength(50)] public string xxqad_vd_phone { get; set; } [StringLength(50)] public string xxqad_vd_fax { get; set; } [StringLength(15)] public string xxqad_vd_pst_id { get; set; } [StringLength(50)] public string xxqad_vd_attn { get; set; } [Required(AllowEmptyStrings = true)] [StringLength(15)] public string xxqad_vd_curr { get; set; } public decimal xxqad_vd_tax { get; set; } [StringLength(2)] public string xxqad_vd_promo { get; set; } [Required(AllowEmptyStrings = true)] [StringLength(8)] public string xxqad_vd_type { get; set; } [StringLength(1)] public string xxqad_vd_qadread { get; set; } [StringLength(1)] public string xxqad_vd_wmsread { get; set; } [StringLength(1)] public string xxqad_vd_scmread { get; set; } [StringLength(1)] public string xxqad_vd_mesread { get; set; } public string xxqad_vd_rmks { get; set; } public DateTime? xxqad_vd_createdt { get; set; } [StringLength(8)] public string xxqad_vd_createur { get; set; } public DateTime? xxqad_vd_updatedt { get; set; } [StringLength(8)] public string xxqad_vd_updateur { get; set; } } }