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.
 
 
 
 
 

91 lines
2.6 KiB

using System;
using System.ComponentModel.DataAnnotations;
namespace CK.SCP.Models.UniApiEntity
{
public partial class xxqad_vp_mstr
{
//public int xxqad_vp_uid { get; set; }
//public string xxqad_vp_seq { get; set; }
//public string xxqad_vp_addr { get; set; }
//public string xxqad_vp_part { get; set; }
//public string xxqad_vp_domain { get; set; }
//public string xxqad_vp_vend_part { get; set; }
//public string xxqad_vp_site { get; set; }
//public decimal xxqad_vp_comment { get; set; }
//public string xxqad_vp_qadread { get; set; }
//public string xxqad_vp_wmsread { get; set; }
//public string xxqad_vp_scmread { get; set; }
//public string xxqad_vp_mesread { get; set; }
//public string xxqad_vp_rmks { get; set; }
//public Nullable<System.DateTime> xxqad_vp_createdt { get; set; }
//public string xxqad_vp_createur { get; set; }
//public Nullable<System.DateTime> xxqad_vp_updatedt { get; set; }
//public string xxqad_vp_updateur { get; set; }
[Key]
public int xxqad_vp_uid { get; set; }
[Required(AllowEmptyStrings = true)]
[StringLength(50)]
public string xxqad_vp_seq { get; set; }
[Required(AllowEmptyStrings = true)]
[StringLength(8)]
public string xxqad_vp_addr { get; set; }
[Required(AllowEmptyStrings = true)]
[StringLength(18)]
public string xxqad_vp_part { get; set; }
[Required(AllowEmptyStrings = true)]
[StringLength(8)]
public string xxqad_vp_domain { get; set; }
[Required(AllowEmptyStrings = true)]
[StringLength(36)]
public string xxqad_vp_vend_part { get; set; }
[StringLength(8)]
public string xxqad_vp_site { get; set; }
public decimal xxqad_vp_comment { get; set; }
[StringLength(1)]
public string xxqad_vp_qadread { get; set; }
[StringLength(1)]
public string xxqad_vp_wmsread { get; set; }
[StringLength(1)]
public string xxqad_vp_scmread { get; set; }
[StringLength(1)]
public string xxqad_vp_mesread { get; set; }
public string xxqad_vp_rmks { get; set; }
public DateTime? xxqad_vp_createdt { get; set; }
[StringLength(8)]
public string xxqad_vp_createur { get; set; }
public DateTime? xxqad_vp_updatedt { get; set; }
[StringLength(8)]
public string xxqad_vp_updateur { get; set; }
public int? xxqad_vp_vend_lead { get; set; }
}
}